context-map

$npx mdskill add github/awesome-copilot/context-map

Analyze codebases to map relevant files and dependencies before implementing changes.

  • Helps developers avoid errors by identifying all files and dependencies related to a task upfront.
  • Integrates with codebase search tools to locate files, imports, exports, and test suites.
  • Recommends files based on task descriptions, direct dependencies, and existing code patterns.
  • Presents results in a structured markdown table format for easy review and approval.
SKILL.md
.github/skills/context-mapView on GitHub ↗
---
name: context-map
description: '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 task
2. Identify direct dependencies (imports/exports)
3. Find related tests
4. 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.
More from github/awesome-copilot