|
| 1 | +{ |
| 2 | + "description": "Defines Copilot customization file patterns to scan in workspaces", |
| 3 | + "lastUpdated": "2026-02-11", |
| 4 | + "stalenessThresholdDays": 90, |
| 5 | + "excludeDirs": ["node_modules", ".git", "dist", "build", "out", "__pycache__", ".venv", ".next", "coverage"], |
| 6 | + "patterns": [ |
| 7 | + { |
| 8 | + "id": "copilot-instructions", |
| 9 | + "type": "instructions", |
| 10 | + "icon": "📋", |
| 11 | + "label": "Instructions", |
| 12 | + "path": ".github/copilot-instructions.md", |
| 13 | + "scanMode": "exact" |
| 14 | + }, |
| 15 | + { |
| 16 | + "id": "copilot-setup", |
| 17 | + "type": "coding-agent", |
| 18 | + "icon": "⚙️", |
| 19 | + "label": "Coding Agent Setup", |
| 20 | + "path": ".github/copilot-setup.md", |
| 21 | + "scanMode": "exact" |
| 22 | + }, |
| 23 | + { |
| 24 | + "id": "mcp-config", |
| 25 | + "type": "mcp-config", |
| 26 | + "icon": "🔌", |
| 27 | + "label": "MCP Server Config", |
| 28 | + "path": ".vscode/mcp.json", |
| 29 | + "scanMode": "exact" |
| 30 | + }, |
| 31 | + { |
| 32 | + "id": "skills", |
| 33 | + "type": "skill", |
| 34 | + "icon": "🧠", |
| 35 | + "label": "Skill Files", |
| 36 | + "path": ".github/skills/*/SKILL.md", |
| 37 | + "scanMode": "oneLevel" |
| 38 | + }, |
| 39 | + { |
| 40 | + "id": "agents-dir", |
| 41 | + "type": "agent", |
| 42 | + "icon": "🤖", |
| 43 | + "label": "Custom agents", |
| 44 | + "path": ".github/agents/*.md", |
| 45 | + "scanMode": "recursive", |
| 46 | + "maxDepth": 3 |
| 47 | + }, |
| 48 | + { |
| 49 | + "id": "scoped-instructions", |
| 50 | + "type": "instructions", |
| 51 | + "icon": "📋", |
| 52 | + "label": "Scoped Instructions", |
| 53 | + "path": "**/*.instructions.md", |
| 54 | + "scanMode": "recursive", |
| 55 | + "maxDepth": 5 |
| 56 | + }, |
| 57 | + { |
| 58 | + "id": "agents-md", |
| 59 | + "type": "agent", |
| 60 | + "icon": "🤖", |
| 61 | + "label": "AGENTS.md", |
| 62 | + "path": "**/AGENTS.md", |
| 63 | + "scanMode": "recursive", |
| 64 | + "maxDepth": 5, |
| 65 | + "caseInsensitive": true |
| 66 | + } |
| 67 | + ] |
| 68 | +} |
0 commit comments