スキル一覧に戻る
Roger-Parkinson-EHP

index-docs

by Roger-Parkinson-EHP

Developer tools: WhisperFlow speech-to-text, Claude Code skills, conversation services

0🍴 0📅 2026年1月2日
GitHubで見るManusで実行

SKILL.md


Markdown Documentation Indexer

Extract structure from markdown files without loading full content.

Quick Start

Headings (Most Common)

# H1/H2 headings
find . -name "*.md" -type f -not -path "*/.git/*" | xargs grep -n "^##\? " 2>/dev/null | head -100

# H1/H2/H3 headings
find . -name "*.md" -type f -not -path "*/.git/*" | xargs grep -n "^###\?\? " 2>/dev/null | head -150

Mermaid Diagrams

# Find files with mermaid diagrams
grep -rln 'mermaid' --include="*.md" . 2>/dev/null

# Show mermaid diagram types
grep -rn 'mermaid' --include="*.md" -A1 . 2>/dev/null | grep -E "(flowchart|graph|sequenceDiagram|classDiagram|erDiagram|gantt)"

Code Blocks

# Find all code blocks with language
grep -rn '^```[a-z]' --include="*.md" . 2>/dev/null | head -50

# Count code blocks by language
grep -roh '^```[a-z]*' --include="*.md" . 2>/dev/null | sort | uniq -c | sort -rn

Tables

# Find markdown tables (header lines)
grep -rn "^|.*|.*|$" --include="*.md" . 2>/dev/null | grep -E "\-\-\-" | head -30
# Find all links
grep -ron "\[.*\](.*)" --include="*.md" . 2>/dev/null | head -50

# Find cross-references (relative links)
grep -ron "\[.*\](\.\./.*)" --include="*.md" . 2>/dev/null | head -30

# Find external links
grep -ron "\[.*\](https://.*)" --include="*.md" . 2>/dev/null | head -30

Images

# Find all images
grep -ron "!\[.*\](.*)" --include="*.md" . 2>/dev/null | head -30

YAML Frontmatter

# Find files with frontmatter
grep -rln "^---$" --include="*.md" . 2>/dev/null | head -20

TODOs and FIXMEs

# Find action items in docs
grep -rn "TODO\|FIXME\|XXX\|\[ \]" --include="*.md" . 2>/dev/null | head -30

Filtered Searches

# Specific folder only
find ./4-The-Plan -name "*.md" | xargs grep -n "^##\? " 2>/dev/null

# Exclude archives
find . -name "*.md" -type f -not -path "*/archive/*" -not -path "*/z-*" | xargs grep -n "^##\? " 2>/dev/null | head -100

# Topic-specific (pipe to grep)
find . -name "*.md" | xargs grep -n "^##\? " 2>/dev/null | grep -i "security\|auth"

Pattern Reference

WhatCommand
H1 onlygrep -rn "^# " --include="*.md"
H2 onlygrep -rn "^## " --include="*.md"
Mermaidgrep -rln "mermaid" --include="*.md"
Code blocksgrep -rn '^```[a-z]' --include="*.md"
Tables`grep -rn "^
Linksgrep -ron "\[.*\](.*)" --include="*.md"
TODOsgrep -rn "TODO|FIXME" --include="*.md"

Token Efficiency

All commands return summaries, not full files. A complete doc index typically uses <200 tokens while giving you the map to know what to read next.

  • startup: Full session bootstrap
  • codebase-index: Code architecture discovery
  • search-history: Conversation context

スコア

総合スコア

60/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です