chromium-docs

Build a searchable index of Chromium docs and return ranked full-text results.

31|6|Updated Jan 29, 2026
One-click install
npx skills add https://github.com/openharmonyinsight/openharmony-skills --skill chromium-docs-openharmonyinsight
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: chromium-docs
Source: https://github.com/openharmonyinsight/openharmony-skills/tree/main/workflows/arkweb/.aceharness/skills/chromium-docs
Command: npx skills add https://github.com/openharmonyinsight/openharmony-skills --skill chromium-docs-openharmonyinsight

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

The Skill eliminates the time-consuming manual browsing of Chromium documentation by providing fast, query-based retrieval of relevant docs content across the Chromium repository.

Core Features & Use Cases

  • Document indexing for Chromium MD sources: Builds a searchable index from Chromium docs/**/*.md and module README.md files, including extracted titles, summaries, keywords, and categories.
  • Keyword and category-aware search: Returns ranked results with excerpts to help you quickly find material about topics like Mojo, Blink, GPU/WebGL/Vulkan, threading models, networking, and security.
  • Agent-friendly integration: Designed to be called from AI tasks by injecting search results to support deeper analysis or implementation decisions (e.g., after identifying a relevant subsystem).

Quick Start

Run the Chromium documentation index build by executing python skills/chromium-docs/scripts/chromium_docs.py --build-index in the Chromium source tree (or set the src root) so the Skill can answer your subsequent doc queries.

Frequently Asked Questions about chromium-docs

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I search Chromium documentation to learn subsystem architectures?

To search Chromium documentation, you must first build an offline index from docs/**/*.md and module README files using a Python script, then query it to retrieve titles, summaries, keywords, and excerpts for relevant subsystem architectures.

Can I find specific implementation guidance for Blink and GPU architectures in the Chromium docs?

Yes, you can find implementation guidance for Blink and GPU architectures by executing a full-text search against the built index, which returns ranked results with excerpts to quickly locate relevant architectural material.

How does category-aware search help me locate Chromium threading model and networking docs?

Category-aware search helps locate Chromium threading model and networking docs by filtering the indexed markdown sources, returning ranked architectural and implementation guidance based on extracted categories and keywords.

Does searching Chromium docs require any special environment setup?

Yes, searching Chromium docs requires an offline index build step executed via python scripts/chromium_docs.py --build-index in the Chromium source tree to prepare the searchable index for subsequent queries.

Can I integrate Chromium documentation search results into AI agent tasks?

Yes, you can integrate Chromium documentation search results into AI agent tasks by injecting the returned titles, summaries, and excerpts to support deeper analysis and implementation decisions for core subsystems.

What is the best way to quickly locate Mojo and Mojom interface documentation in the source tree?

The best way to locate Mojo and Mojom interface documentation is using the query-based retrieval system, which eliminates manual browsing by indexing module README files and docs to return ranked relevant content.