Claude-skill-registry aboutme-index

Index-based file discovery using ABOUTME headers. Use INSTEAD of grep or Explore agent when searching for files by purpose or feature. Faster and more accurate than scanning code. Invoke this skill when user asks "which files handle X", "where is Y implemented", or when you need to find files related to a feature or task.

install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/aboutme-index" ~/.claude/skills/majiayu000-claude-skill-registry-aboutme-index && rm -rf "$T"
manifest: skills/data/aboutme-index/SKILL.md
source content

ABOUTME Index

Read

.claude/aboutme-index.json
to find files by purpose instead of grep-searching.

Usage

  1. Read the index:
cat .claude/aboutme-index.json
  1. Filter by keyword using jq:
cat .claude/aboutme-index.json | jq 'to_entries[] | select(.value | test("auth|jwt"; "i"))'
  1. Read the relevant files.

Commands

CommandDescription
/aboutme-check
Find files missing ABOUTME headers
/aboutme-rebuild
Rebuild the entire index
/aboutme-stale
Check for stale headers
cat .claude/aboutme-index.json
Read the index directly

Index Format

{
  "app/src/auth.py": "JWT authentication module for AWS Cognito access tokens...",
  "app/src/config.py": "Centralized configuration using Pydantic settings..."
}

The index is auto-rebuilt on session start and updated incrementally on file edits.