context-map
द्वारा github
कोडबेस का विश्लेषण करें और बदलाव लागू करने से पहले कार्य-प्रासंगिक फाइलों का मानचित्रण करें। संबंधित फाइलों, निर्भरताओं, परीक्षणों और समान कोड पैटर्न की स्वचालित रूप से खोज करके पूर्ण संदर्भ स्थापित करता है। संशोधित करने के लिए फाइलों, निर्भरता संबंधों, परीक्षण कवरेज और संदर्भ पैटर्न के साथ संरचित मार्कडाउन आउटपुट उत्पन्न करता है। ब्रेकिंग चेंजेस, माइग्रेशन और कॉन्फ़िगरेशन अपडे
npx skills add https://github.com/github/awesome-copilot --skill context-mapContext 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.