Claude-skill-registry discover-source
Guidelines for exploring source code to understand context.
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/discover-source" ~/.claude/skills/majiayu000-claude-skill-registry-discover-source && rm -rf "$T"
manifest:
skills/data/discover-source/SKILL.mdsource content
Discover Source
Guidelines for finding and analyzing source code related to a ticket.
Search Strategy
- File patterns: Search for files matching keywords from the request
- Code patterns: Grep for function names, class names, imports
- Dependencies: Trace imports to understand relationships
Analysis Focus
- Entry points and main flows
- Data structures and types
- Integration points
- Existing patterns to follow
Output Format
Provide structured JSON with:
: High-level synthesissummary
: List of relevant files with purpose and relevancefiles
: How components interactcode_flow