VS Code Copilot Settings Gen
v1.0.0Build a paste-ready GitHub Copilot config — Wizard or Power Builder, with MCP, instructions, and lint.
Builds a paste-ready GitHub Copilot configuration for VS Code — covering Copilot toggles, inline suggestions, chat, agent mode, custom instructions, and MCP servers — through a clickable wizard or a power-user form. Emits .vscode/settings.json (and optionally .vscode/mcp.json, .vscode/extensions.json, and .github/copilot-instructions.md).
How to use- →Pick the My team preset for a balanced default — agent mode on with confirmations, instruction files enabled, telemetry at default level.
- →Use the Wizard mode if you're new to Copilot — five to nine clicks produce a complete, working configuration.
- →Switch the output format to JSONC to ship your settings with explanatory comments above each key — VS Code accepts both.
Scope
12 keys·0 changed·1 conflicts
Step 1 of 9
Who is this configuration for?
{
"github.copilot.enable": {
"*": true
},
"github.copilot.nextEditSuggestions.enabled": true,
"chat.agent.enabled": true,
"chat.agent.maxRequests": 15,
"github.copilot.chat.codeGeneration.useInstructionFiles": true,
"chat.instructionsFilesLocations": [
".github/copilot-instructions.md",
".github/instructions/"
],
"github.copilot.chat.codeGeneration.instructions": [
{
"text": "Follow the project's existing TypeScript and ESLint conventions."
},
{
"text": "Prefer small, focused functions over large multi-purpose ones."
}
]
}