Back to Skills

docs-management

verified

Single source of truth and librarian for ALL Claude official documentation. Manages local documentation storage, scraping, discovery, and resolution. Use when finding, locating, searching, or resolving Claude documentation; discovering docs by keywords, category, tags, or natural language queries; scraping from sitemaps or docs maps; managing index metadata (keywords, tags, aliases); or rebuilding index from filesystem. Run scripts to scrape, find, and resolve documentation. Handles doc_id resolution, keyword search, natural language queries, category/tag filtering, alias resolution, sitemap.xml parsing, docs map processing, markdown subsection extraction for internal use, hash-based drift detection, and comprehensive index maintenance.

View on GitHub

Marketplace

melodic-software

melodic-software/claude-code-plugins

Plugin

claude-ecosystem

Repository
Verified Org

melodic-software/claude-code-plugins
13stars

plugins/claude-ecosystem/skills/docs-management/SKILL.md

Last Verified

January 21, 2026

Install Skill

Select agents to install to:

Scope:
npx add-skill https://github.com/melodic-software/claude-code-plugins/blob/main/plugins/claude-ecosystem/skills/docs-management/SKILL.md -a claude-code --skill docs-management

Installation paths:

Claude
.claude/skills/docs-management/
Powered by add-skill CLI

Instructions

# Claude Docs Management

## ๐Ÿšจ๐Ÿšจ๐Ÿšจ MANDATORY: Hybrid Parallel Pattern ๐Ÿšจ๐Ÿšจ๐Ÿšจ

> **STOP - Before using this skill for ANY Claude Code documentation query:**
>
> **IF YOU ARE THE MAIN AGENT**, you MUST invoke BOTH sources **in the same message**:
>
> 1. **This skill** (`docs-management`) - local cache, token-efficient
> 2. **`claude-code-guide` subagent** - live web search
>
> ```text
> [Skill tool: docs-management]
> "Find documentation about {topic}"
>
> [Task tool: claude-code-guide] (SAME MESSAGE - USE THIS EXACT PROMPT)
> "First WebFetch https://code.claude.com/docs/en/claude_code_docs_map.md to find
> relevant doc pages about {topic}. Then WebFetch those specific pages. Use WebSearch
> only if needed for additional context. Do NOT use Skill tool (not available).
> Return key findings with source URLs."
> ```
>
> **โš ๏ธ CRITICAL:** claude-code-guide does NOT have Skill tool access. Always prompt it
> to use **WebSearch/WebFetch explicitly**. If you see "No such tool: Skill" error,
> you prompted it wrong.
>
> **This is AUTOMATIC. Do NOT wait for user to ask for it.**
>
> **IF YOU ARE A SUBAGENT**: Note in your response that main agent should also query `claude-code-guide`.

---

## ๐Ÿšจ CRITICAL: Path Doubling Prevention - MANDATORY

**ABSOLUTE PROHIBITION: NEVER use `cd` with `&&` in PowerShell when running scripts from this skill.**

**The Problem:** If your current working directory is already inside the skill directory, using relative paths causes PowerShell to resolve paths relative to the current directory instead of the repository root, resulting in path doubling.

**REQUIRED Solutions (choose one):**

1. **โœ… ALWAYS use helper scripts** (recommended - they handle path resolution automatically)
2. **โœ… Use absolute path resolution** (if not using helper script)
3. **โœ… Use separate commands** (never `cd` with `&&`)

**NEVER DO THIS:**

- โŒ Chain `cd` with `&&`: `cd <relative-path> && python <script>` causes path doubling
- โŒ Assume current directory
- โŒ Use rela

Validation Details

Front Matter
Required Fields
Valid Name Format
Valid Description
Has Sections
Allowed Tools
Instruction Length:
33225 chars