with one click
ln-160-docs-skill-extractor
// Extracts procedural content from project docs into slash commands. Use when docs contain deploy, test, or troubleshoot procedures.
// Extracts procedural content from project docs into slash commands. Use when docs contain deploy, test, or troubleshoot procedures.
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | ln-160-docs-skill-extractor |
| description | Extracts procedural content from project docs into slash commands. Use when docs contain deploy, test, or troubleshoot procedures. |
| license | MIT |
Paths: File paths (
references/,../ln-*) are relative to this skill directory.
Type: L2 Coordinator Category: 1XX Documentation Pipeline Workers: ln-161-skill-creator, ln-162-skill-reviewer
Scans project documentation, identifies procedural content, and extracts it into executable slash command files under .claude/commands/*.md. Declarative documentation stays in markdown; this skill only routes procedural sections into command form.
| Aspect | Details |
|---|---|
| Input | Project docs, test docs, and optional doc registry |
| Output | .claude/commands/*.md files in target project |
| Workers | ln-161 creates commands, ln-162 reviews them |
| Source policy | Docs-first extraction; AGENTS.md and CLAUDE.md are routing-only |
Phase 1: Discovery (route docs, build inventory)
|
Phase 2: Classification (procedural vs declarative scoring)
|
Phase 3: Extraction Plan (user approval)
|
Phase 4: Delegate -> ln-161 (create commands)
|
Phase 5: Delegate -> ln-162 (review commands)
|
Phase 6: Report (aggregate results)
MANDATORY READ: Load references/procedural_extraction_rules.md, references/markdown_read_protocol.md, and references/docs_quality_contract.md
Build a docs-first inventory before extracting anything.
Use these files only to route discovery and prioritize reading:
AGENTS.mdCLAUDE.mddocs/project/.context/doc_registry.json if presentDo not extract commands from routing sources.
Scan only these sources for procedural content:
docs/**/*.mdtests/README.mdtests/manual/**/*README.mdCONTRIBUTING.mdAlso scan:
.claude/commands/*.md to avoid duplicate command creationdocs/project/.context/doc_registry.json exists, prioritize:
DOC_KIND=how-to before referencereference before index and explanationQuick NavigationAgent EntryMaintenanceSCOPE, DOC_KIND, DOC_ROLE, READ_WHEN, SKIP_WHEN, PRIMARY_SOURCEScontextStorecontextStore:
project_root: {CWD}
routing_sources:
agents_md: true
claude_md: true
doc_registry: true
existing_commands: [list of .claude/commands/*.md filenames]
doc_inventory:
- file: docs/project/runbook.md
doc_kind: how-to
doc_role: canonical
sections:
- header: "Deployment"
line_range: [45, 92]
signals: { code_blocks: 3, numbered_steps: 5, imperative_verbs: 8 }
Score each candidate section with the shared procedural extraction rules.
| Classification | Condition | Action |
|---|---|---|
| PROCEDURAL | proc >= 4 and proc > decl * 2 | Extract to command |
| DECLARATIVE | decl >= 4 and decl > proc * 2 | Keep as documentation |
| MIXED | Both >= 3 | Extract procedural subsection only |
| THIN | Both < 3 | Skip |
Filter:
.claude/commands/*.mdDOC_KIND=how-to when multiple sections overlap semanticallyPresent the classified result set to the user before creating files.
Found {N} procedural sections in {M} files:
| # | Source | DOC_KIND | Section | Score | Proposed Command |
|---|--------|----------|---------|-------|------------------|
| 1 | runbook.md | how-to | Deployment | P:8/D:1 | deploy.md |
| 2 | tests/README.md | index | Running Tests | P:7/D:2 | run-tests.md |
Existing .claude/commands/ (will skip): refresh_context.md, build-and-test.md
Include? (e.g., "1,2" or "all" or "all skip 2")
If the user approves nothing, stop with No skills to create.
Pass only approved sections to ln-161-skill-creator.
Agent(
description: "Create commands from procedural docs",
prompt: "Execute skill creator.\nStep 1: Invoke:\n Skill(skill: \"ln-161-skill-creator\")\nCONTEXT:\n{approved_sections}",
subagent_type: "general-purpose"
)
Normalized payload:
{
"approved_sections": [
{
"source_file": "docs/project/runbook.md",
"section_header": "Deployment",
"line_range": [45, 92],
"command_name": "deploy.md",
"doc_kind": "how-to",
"doc_role": "canonical"
}
]
}
Collect:
Pass created command paths to ln-162-skill-reviewer in COMMAND mode.
Agent(
description: "Review created commands",
prompt: "Execute skill reviewer in COMMAND mode.\nStep 1: Invoke:\n Skill(skill: \"ln-162-skill-reviewer\", args: \"commands\")\nFILES: {list of created paths}",
subagent_type: "general-purpose"
)
Collect:
Aggregate the create and review results.
## Docs Skill Extractor -- Complete
| Metric | Count |
|--------|-------|
| Documents scanned | {N} |
| Sections analyzed | {N} |
| Procedural found | {N} |
| Commands created | {N} |
| Commands skipped (existing) | {N} |
| Review PASS | {N} |
| Review FIXED | {N} |
| Review WARN | {N} |
Created commands:
- .claude/commands/deploy.md (from runbook.md#Deployment)
- .claude/commands/run-tests.md (from tests/README.md#Running Tests)
AGENTS.md and CLAUDE.md route discovery but never become command sources..claude/commands/*.md.TodoWrite format (mandatory):
- Build docs inventory (in_progress)
- Invoke ln-161-skill-creator (pending)
- Invoke ln-162-skill-reviewer (pending)
- Aggregate report (pending)
Host Skill Invocation: Skill(skill: "...", args: "...") is mandatory delegation.
SKILL.md, treat args as $ARGUMENTS, execute that skill workflow, then return here with its result/artifact.| Phase | Worker | Context |
|---|---|---|
| 4 | ln-161-skill-creator | Approved procedural sections with source metadata |
| 5 | ln-162-skill-reviewer | Created command file paths in COMMAND mode |
All workers: Invoke via Skill tool. Workers consume only the context they need.
AGENTS.md, CLAUDE.md, doc registry if present)Optional reference: load references/meta_analysis_protocol.md only when the user asks for post-run meta-analysis or protocol-formatted run reflection.
Skill type: planning-coordinator. When requested, run after Phase 6 completes. Output to chat using the planning-coordinator format.
Version: 1.0.0 Last Updated: 2026-03-26