Claude Agent Skill · by Github

Context Map

Before you start coding, this generates a structured map of every file that might be affected by your changes. It searches for direct dependencies, related test

Install
Terminal · npx
$npx skills add https://github.com/github/awesome-copilot --skill context-map
Works with Paperclip

How Context Map fits into a Paperclip company.

Context Map drops into any Paperclip agent that handles this kind of work. Assign it to a specialist inside a pre-configured PaperclipOrg company and the skill becomes available on every heartbeat — no prompt engineering, no tool wiring.

S
SaaS FactoryPaired

Pre-configured AI company — 18 agents, 18 skills, one-time purchase.

$27$59
Explore pack
Source file
SKILL.md52 lines
Expand
---name: context-mapdescription: 'Generate a map of all files relevant to a task before making changes'--- # Context Map Before implementing any changes, analyze the codebase and create a context map. ## Task {{task_description}} ## Instructions 1. Search the codebase for files related to this task2. Identify direct dependencies (imports/exports)3. Find related tests4. Look for similar patterns in existing code ## Output Format ```markdown## 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.