From ecec4bc5e0c21e3ed5a8d1d955925a0660302fb3 Mon Sep 17 00:00:00 2001 From: Tine Kondo Date: Wed, 8 Oct 2025 13:41:21 +0000 Subject: [PATCH] chore: add `specify`'s github copilot chat settings to `devcontainer` --- .devcontainer/devcontainer.json | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 2b57f67e..21091e74 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -51,7 +51,21 @@ "AmazonWebServices.amazon-q-vscode" ], "settings": { - "debug.javascript.autoAttachFilter": "disabled" // fix running commands in integrated terminal + "debug.javascript.autoAttachFilter": "disabled", // fix running commands in integrated terminal + + // Specify settings for Github Copilot + "git.autofetch": true, + "chat.promptFilesRecommendations": { + "speckit.constitution": true, + "speckit.specify": true, + "speckit.plan": true, + "speckit.tasks": true, + "speckit.implement": true + }, + "chat.tools.terminal.autoApprove": { + ".specify/scripts/bash/": true, + ".specify/scripts/ps/": true + } } } }