Skillshub context-map
Generate a map of all files relevant to a task before making changes
install
source · Clone the upstream repo
git clone https://github.com/ComeOnOliver/skillshub
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/ComeOnOliver/skillshub "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/github/awesome-copilot/context-map" ~/.claude/skills/comeonoliver-skillshub-context-map && rm -rf "$T"
manifest:
skills/github/awesome-copilot/context-map/SKILL.mdsource content
Context Map
Before implementing any changes, analyze the codebase and create a context map.
Task
{{task_description}}
Instructions
- Search the codebase for files related to this task
- Identify direct dependencies (imports/exports)
- Find related tests
- Look for similar patterns in existing code
Output Format
## Context Map ### Files to Modify | File | Purpose | Changes Needed | |------|---------|----------------| | path/to/file | description | what changes | ### Dependencies (may need updates) | File | Relationship | |------|--------------| | path/to/dep | imports X from modified file | ### Test Files | Test | Coverage | |------|----------| | path/to/test | tests affected functionality | ### Reference Patterns | File | Pattern | |------|---------| | path/to/similar | example to follow | ### Risk Assessment - [ ] Breaking changes to public API - [ ] Database migrations needed - [ ] Configuration changes required
Do not proceed with implementation until this map is reviewed.