-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
73 lines (72 loc) · 2.92 KB
/
Copy pathsettings.json
File metadata and controls
73 lines (72 loc) · 2.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
// ── GitHub Copilot & Vision ─────────────────────────────────────────────────
"github.copilot.enable": true,
"github.copilot.chat.agent.thinkingTool": true,
"github.copilot.chat.codeGeneration.useInstructionFiles": true,
"github.copilot.chat.codeGeneration.instructions": [
{
"text": "- @azure instruction - Use Azure Best Practices: When generating code for Azure, running terminal commands for Azure, or performing operations related to Azure, invoke your `azure_development-get_best_practices` tool if available."
},
{
"path": ".github/instructions/instructions/**/*.md"
},
{
"path": ".github/instructions/custom_modes/**/*.md"
}
],
"chat.instructionsFilesLocations": {
".github/memory-bank/isolation_instructions": true,
".github/memory-bank/isolation_instructions/Core": true,
".github/memory-bank/isolation_instructions/Level1": true,
".github/memory-bank/isolation_instructions/Level2": true,
".github/memory-bank/isolation_instructions/Level3": true,
".github/memory-bank/isolation_instructions/Level4": true,
".github/memory-bank/isolation_instructions/visual-maps": true,
".github/memory-bank/isolation_instructions/visual-maps/van_mode_split": true,
".github/memory-bank/isolation_instructions/visual-maps/van_mode_split/van-qa-checks": true,
".github/memory-bank/isolation_instructions/visual-maps/van_mode_split/van-qa-utils": true,
".github/memory-bank/isolation_instructions/Phases/CreativePhases": true
},
"github.copilot.chat.terminalChatLocation": "terminal",
"copilot.vision.provider": "AzureOpenAI",
"copilot.vision.azureEndpoint": "https://$VISION_ENDPOINT.openai.azure.com/",
"copilot.vision.model": "gpt-4-vision",
// ── Chat & MCP ─────────────────────────────────────────────────────────────
"chat.agent.enabled": true,
"github.copilot.chat.agent.autoFix": true,
"chat.mcp.discovery.enabled": true,
"mcp": {
"servers": {
"Azure MCP Server": {
"command": "npx",
"args": [
"-y",
"@azure/mcp@latest",
"server",
"start"
]
},
"task-master-ai": {
"command": "npx",
"args": [
"-y",
"--package=task-master-ai",
"task-master-ai"
],
"env": {
"ANTHROPIC_API_KEY": "$ANTHROPIC_API_KEY",
"PERPLEXITY_API_KEY": "$PERPLEXITY_API_KEY",
"OPENAI_API_KEY": "$OPENAI_API_KEY",
"GOOGLE_API_KEY": "$GOOGLE_API_KEY",
"AZURE_OPENAI_API_KEY": "$AZURE_OPENAI_API_KEY"
}
},
"playwright": {
"command": "npx",
"args": [
"@playwright/mcp@latest"
]
}
}
}
}