Agent skill
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 this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/development/aboutme-index
SKILL.md
ABOUTME Index
Read .claude/aboutme-index.json to find files by purpose instead of grep-searching.
Usage
- Read the index:
cat .claude/aboutme-index.json
- Filter by keyword using jq:
cat .claude/aboutme-index.json | jq 'to_entries[] | select(.value | test("auth|jwt"; "i"))'
- Read the relevant files.
Commands
| Command | Description |
|---|---|
/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.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?