diff --git a/complete/javascript/package-lock.json b/complete/javascript/package-lock.json index 7504da7..00d7784 100644 --- a/complete/javascript/package-lock.json +++ b/complete/javascript/package-lock.json @@ -3052,14 +3052,15 @@ } }, "node_modules/form-data": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.2.tgz", - "integrity": "sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w==", + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.4.tgz", + "integrity": "sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==", "license": "MIT", "dependencies": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", "es-set-tostringtag": "^2.1.0", + "hasown": "^2.0.2", "mime-types": "^2.1.12" }, "engines": { diff --git a/docs/.vscode/mcp.json b/docs/.vscode/mcp.json index f3a9b0e..03dcf99 100644 --- a/docs/.vscode/mcp.json +++ b/docs/.vscode/mcp.json @@ -8,6 +8,15 @@ } ], "servers": { + "awesome-copilot": { + "command": "docker", + "args": [ + "run", + "-i", + "--rm", + "ghcr.io/microsoft/mcp-dotnet-samples/awesome-copilot:latest" + ] + }, "context7": { "command": "npx", "args": [ diff --git a/docs/.vscode/settings.json b/docs/.vscode/settings.json new file mode 100644 index 0000000..51a564d --- /dev/null +++ b/docs/.vscode/settings.json @@ -0,0 +1,4 @@ +{ + "chat.tools.autoApprove": true, + "chat.agent.maxRequests": 100 +} \ No newline at end of file diff --git a/docs/00-setup.md b/docs/00-setup.md index 39d56c6..21bb9a8 100644 --- a/docs/00-setup.md +++ b/docs/00-setup.md @@ -18,6 +18,7 @@ Refer to the [README](../README.md) doc for preparation. - [Start Visual Studio Code](#start-visual-studio-code) - [Set-up MCP Servers](#set-up-mcp-servers) - [Check GitHub Copilot Agent Mode](#check-github-copilot-agent-mode) +- [Configure Beast Mode](#configure-beast-mode) - [Prepare Custom Instructions](#prepare-custom-instructions) - [Analyze Product Requirements Document (PRD) and Design API](#analyze-product-requirements-document-prd-and-design-api) @@ -256,6 +257,7 @@ Refer to the [README](../README.md) doc for preparation. ### Set-up MCP Servers +1. Make sure Docker Desktop is up and running if you use VS Code on your local machine. 1. Set the environment variable of `$REPOSITORY_ROOT`. ```bash @@ -284,6 +286,7 @@ Refer to the [README](../README.md) doc for preparation. 1. Open Command Palette by typing F1 or `Ctrl`+`Shift`+`P` on Windows or `Cmd`+`Shift`+`P` on Mac OS, and search `MCP: List Servers`. 1. Choose `context7` then click `Start Server`. +1. Choose `awesome-copilot` then click `Start Server`. ## Check GitHub Copilot Agent Mode @@ -298,6 +301,40 @@ Refer to the [README](../README.md) doc for preparation. 1. Select model to either `GPT-4.1` or `Claude Sonnet 4`. +## Configure Beast Mode + +1. Enter the `/mcp.awesome-copilot.get_search_prompt`, followed by entering keywords like "beast mode" + + It should show list of beast chatmodes. Enter a prompt similar to `4.1 Beast Chat Mode`. Then it will save it under the `.github/chatmodes` directory. + +1. Choose the `4.1-Beast` mode instead of the `Agent` mode. It will automatically change LLM to `GPT 4.1`. + +1. Set the environment variable of `$REPOSITORY_ROOT`. + + ```bash + # bash/zsh + REPOSITORY_ROOT=$(git rev-parse --show-toplevel) + ``` + + ```powershell + # PowerShell + $REPOSITORY_ROOT = git rev-parse --show-toplevel + ``` + +1. Copy workspace settings. + + ```bash + # bash/zsh + cp $REPOSITORY_ROOT/docs/.vscode/settings.json \ + $REPOSITORY_ROOT/.vscode/settings.json + ``` + + ```powershell + # PowerShell + Copy-Item -Path $REPOSITORY_ROOT/docs/.vscode/settings.json ` + -Destination $REPOSITORY_ROOT/.vscode/settings.json -Force + ``` + ## Prepare Custom Instructions 1. Set the environment variable of `$REPOSITORY_ROOT`. diff --git a/localisation/es-es/docs/00-setup.md b/localisation/es-es/docs/00-setup.md index 8ae8989..7ea55a3 100644 --- a/localisation/es-es/docs/00-setup.md +++ b/localisation/es-es/docs/00-setup.md @@ -18,6 +18,7 @@ Consulta el documento [README](../README.md) para la preparación. - [Iniciar Visual Studio Code](#iniciar-visual-studio-code) - [Configurar Servidores MCP](#configurar-servidores-mcp) - [Verificar Modo Agente de GitHub Copilot](#verificar-modo-agente-de-github-copilot) +- [Configurar Modo Bestia](#configurar-modo-bestia) - [Preparar Instrucciones Personalizadas](#preparar-instrucciones-personalizadas) - [Analizar Documento de Requisitos del Producto (PRD) y Diseñar API](#analizar-documento-de-requisitos-del-producto-prd-y-diseñar-api) @@ -256,6 +257,7 @@ Consulta el documento [README](../README.md) para la preparación. ### Configurar Servidores MCP +1. Asegúrate de que Docker Desktop esté funcionando si usas VS Code en tu máquina local. 1. Establece la variable de entorno de `$REPOSITORY_ROOT`. ```bash @@ -284,6 +286,7 @@ Consulta el documento [README](../README.md) para la preparación. 1. Abre la Paleta de Comandos presionando F1 o `Ctrl`+`Shift`+`P` en Windows o `Cmd`+`Shift`+`P` en Mac OS, y busca `MCP: List Servers`. 1. Elige `context7` y luego haz clic en `Start Server`. +1. Elige `awesome-copilot` y luego haz clic en `Start Server`. ## Verificar Modo Agente de GitHub Copilot @@ -298,6 +301,40 @@ Consulta el documento [README](../README.md) para la preparación. 1. Selecciona el modelo ya sea `GPT-4.1` o `Claude Sonnet 4`. +## Configurar Modo Bestia + +1. Ingresa `/mcp.awesome-copilot.get_search_prompt`, seguido de palabras clave como "beast mode" + + Debería mostrar la lista de modos de chat bestia. Ingresa un prompt similar a `4.1 Beast Chat Mode`. Luego se guardará bajo el directorio `.github/chatmodes`. + +1. Elige el modo `4.1-Beast` en lugar del modo `Agent`. Automáticamente cambiará el LLM a `GPT 4.1`. + +1. Establece la variable de entorno de `$REPOSITORY_ROOT`. + + ```bash + # bash/zsh + REPOSITORY_ROOT=$(git rev-parse --show-toplevel) + ``` + + ```powershell + # PowerShell + $REPOSITORY_ROOT = git rev-parse --show-toplevel + ``` + +1. Copia la configuración del espacio de trabajo. + + ```bash + # bash/zsh + cp $REPOSITORY_ROOT/docs/.vscode/settings.json \ + $REPOSITORY_ROOT/.vscode/settings.json + ``` + + ```powershell + # PowerShell + Copy-Item -Path $REPOSITORY_ROOT/docs/.vscode/settings.json ` + -Destination $REPOSITORY_ROOT/.vscode/settings.json -Force + ``` + ## Preparar Instrucciones Personalizadas 1. Establece la variable de entorno de `$REPOSITORY_ROOT`. diff --git a/localisation/fr-fr/docs/00-setup.md b/localisation/fr-fr/docs/00-setup.md index ca738b1..848cd34 100644 --- a/localisation/fr-fr/docs/00-setup.md +++ b/localisation/fr-fr/docs/00-setup.md @@ -18,6 +18,7 @@ Consultez le document [README](../README.md) pour la préparation. - [Démarrer Visual Studio Code](#démarrer-visual-studio-code) - [Configurer les Serveurs MCP](#configurer-les-serveurs-mcp) - [Vérifier le Mode Agent GitHub Copilot](#vérifier-le-mode-agent-github-copilot) +- [Configurer le Mode Bête](#configurer-le-mode-bête) - [Préparer les Instructions Personnalisées](#préparer-les-instructions-personnalisées) - [Analyser le Document d'Exigences Produit (PRD) et Concevoir l'API](#analyser-le-document-dexigences-produit-prd-et-concevoir-lapi) @@ -256,6 +257,7 @@ Consultez le document [README](../README.md) pour la préparation. ### Configurer les Serveurs MCP +1. Assurez-vous que Docker Desktop est en cours d'exécution si vous utilisez VS Code sur votre machine locale. 1. Définissez la variable d'environnement de `$REPOSITORY_ROOT`. ```bash @@ -284,6 +286,7 @@ Consultez le document [README](../README.md) pour la préparation. 1. Ouvrez la Palette de Commandes en tapant F1 ou `Ctrl`+`Shift`+`P` sur Windows ou `Cmd`+`Shift`+`P` sur Mac OS, et recherchez `MCP: List Servers`. 1. Choisissez `context7` puis cliquez sur `Start Server`. +1. Choisissez `awesome-copilot` puis cliquez sur `Start Server`. ## Vérifier le Mode Agent GitHub Copilot @@ -298,6 +301,40 @@ Consultez le document [README](../README.md) pour la préparation. 1. Sélectionnez le modèle soit `GPT-4.1` soit `Claude Sonnet 4`. +## Configurer le Mode Bête + +1. Entrez `/mcp.awesome-copilot.get_search_prompt`, suivi de mots-clés comme "beast mode" + + Cela devrait afficher la liste des modes de chat bête. Entrez un prompt similaire à `4.1 Beast Chat Mode`. Ensuite, il sera sauvegardé sous le répertoire `.github/chatmodes`. + +1. Choisissez le mode `4.1-Beast` au lieu du mode `Agent`. Il changera automatiquement le LLM vers `GPT 4.1`. + +1. Définissez la variable d'environnement de `$REPOSITORY_ROOT`. + + ```bash + # bash/zsh + REPOSITORY_ROOT=$(git rev-parse --show-toplevel) + ``` + + ```powershell + # PowerShell + $REPOSITORY_ROOT = git rev-parse --show-toplevel + ``` + +1. Copiez les paramètres de l'espace de travail. + + ```bash + # bash/zsh + cp $REPOSITORY_ROOT/docs/.vscode/settings.json \ + $REPOSITORY_ROOT/.vscode/settings.json + ``` + + ```powershell + # PowerShell + Copy-Item -Path $REPOSITORY_ROOT/docs/.vscode/settings.json ` + -Destination $REPOSITORY_ROOT/.vscode/settings.json -Force + ``` + ## Préparer les Instructions Personnalisées 1. Définissez la variable d'environnement de `$REPOSITORY_ROOT`. diff --git a/localisation/ja-jp/docs/00-setup.md b/localisation/ja-jp/docs/00-setup.md index e69df6a..317fd61 100644 --- a/localisation/ja-jp/docs/00-setup.md +++ b/localisation/ja-jp/docs/00-setup.md @@ -18,6 +18,7 @@ - [Visual Studio Code を起動](#visual-studio-code-を起動) - [MCP サーバーを設定](#mcp-サーバーを設定) - [GitHub Copilot エージェントモードを確認](#github-copilot-エージェントモードを確認) +- [ビーストモードを設定](#ビーストモードを設定) - [カスタム指示を準備](#カスタム指示を準備) - [製品要求仕様書(PRD)を分析してAPIを設計](#製品要求仕様書prdを分析してapiを設計) @@ -256,6 +257,7 @@ ### MCP サーバーを設定 +1. ローカルマシンでVS Codeを使用している場合は、Docker Desktopが起動していることを確認してください。 1. `$REPOSITORY_ROOT` 環境変数を設定します。 ```bash @@ -284,6 +286,7 @@ 1. F1 キーまたは Windows では `Ctrl`+`Shift`+`P`、Mac OS では `Cmd`+`Shift`+`P` を入力してコマンドパレットを開き、`MCP: List Servers` を検索します。 1. `context7` を選択して `Start Server` をクリックします。 +1. `awesome-copilot` を選択して `Start Server` をクリックします。 ## GitHub Copilot エージェントモードを確認 @@ -298,6 +301,40 @@ 1. モデルを `GPT-4.1` または `Claude Sonnet 4` のいずれかに選択します。 +## ビーストモードを設定 + +1. `/mcp.awesome-copilot.get_search_prompt` を入力し、続いて "beast mode" のようなキーワードを入力します + + ビーストチャットモードのリストが表示されます。`4.1 Beast Chat Mode` のようなプロンプトを入力します。すると、`.github/chatmodes` ディレクトリに保存されます。 + +1. `Agent` モードの代わりに `4.1-Beast` モードを選択します。自動的にLLMが `GPT 4.1` に変更されます。 + +1. `$REPOSITORY_ROOT` 環境変数を設定します。 + + ```bash + # bash/zsh + REPOSITORY_ROOT=$(git rev-parse --show-toplevel) + ``` + + ```powershell + # PowerShell + $REPOSITORY_ROOT = git rev-parse --show-toplevel + ``` + +1. ワークスペース設定をコピーします。 + + ```bash + # bash/zsh + cp $REPOSITORY_ROOT/docs/.vscode/settings.json \ + $REPOSITORY_ROOT/.vscode/settings.json + ``` + + ```powershell + # PowerShell + Copy-Item -Path $REPOSITORY_ROOT/docs/.vscode/settings.json ` + -Destination $REPOSITORY_ROOT/.vscode/settings.json -Force + ``` + ## カスタム指示を準備 1. `$REPOSITORY_ROOT` 環境変数を設定します。 diff --git a/localisation/ko-kr/docs/00-setup.md b/localisation/ko-kr/docs/00-setup.md index 65303d1..c429659 100644 --- a/localisation/ko-kr/docs/00-setup.md +++ b/localisation/ko-kr/docs/00-setup.md @@ -18,6 +18,7 @@ - [Visual Studio Code 시작](#visual-studio-code-시작) - [MCP 서버 설정](#mcp-서버-설정) - [GitHub Copilot 에이전트 모드 확인](#github-copilot-에이전트-모드-확인) +- [비스트 모드 구성](#비스트-모드-구성) - [커스텀 지시사항 준비](#커스텀-지시사항-준비) - [제품 요구사항 문서(PRD) 분석 및 API 설계](#제품-요구사항-문서prd-분석-및-api-설계) @@ -256,6 +257,7 @@ ### MCP 서버 설정 +1. 로컬 머신에서 VS Code를 사용하는 경우 Docker Desktop이 실행 중인지 확인하세요. 1. `$REPOSITORY_ROOT` 환경 변수를 설정하세요. ```bash @@ -284,6 +286,7 @@ 1. F1을 입력하거나 Windows에서 `Ctrl`+`Shift`+`P`, Mac OS에서 `Cmd`+`Shift`+`P`를 눌러 명령 팔레트를 열고 `MCP: List Servers`를 검색하세요. 1. `context7`을 선택한 다음 `Start Server`를 클릭하세요. +1. `awesome-copilot`을 선택한 다음 `Start Server`를 클릭하세요. ## GitHub Copilot 에이전트 모드 확인 @@ -298,6 +301,40 @@ 1. 모델을 `GPT-4.1` 또는 `Claude Sonnet 4` 중 하나로 선택하세요. +## 비스트 모드 구성 + +1. `/mcp.awesome-copilot.get_search_prompt`를 입력한 후 "beast mode"와 같은 키워드를 입력하세요 + + 비스트 채팅 모드 목록이 표시됩니다. `4.1 Beast Chat Mode`와 유사한 프롬프트를 입력하세요. 그러면 `.github/chatmodes` 디렉토리에 저장됩니다. + +1. `Agent` 모드 대신 `4.1-Beast` 모드를 선택하세요. 자동으로 LLM이 `GPT 4.1`로 변경됩니다. + +1. `$REPOSITORY_ROOT` 환경 변수를 설정하세요. + + ```bash + # bash/zsh + REPOSITORY_ROOT=$(git rev-parse --show-toplevel) + ``` + + ```powershell + # PowerShell + $REPOSITORY_ROOT = git rev-parse --show-toplevel + ``` + +1. 워크스페이스 설정을 복사하세요. + + ```bash + # bash/zsh + cp $REPOSITORY_ROOT/docs/.vscode/settings.json \ + $REPOSITORY_ROOT/.vscode/settings.json + ``` + + ```powershell + # PowerShell + Copy-Item -Path $REPOSITORY_ROOT/docs/.vscode/settings.json ` + -Destination $REPOSITORY_ROOT/.vscode/settings.json -Force + ``` + ## 커스텀 지시사항 준비 1. `$REPOSITORY_ROOT` 환경 변수를 설정하세요. diff --git a/localisation/pt-br/docs/00-setup.md b/localisation/pt-br/docs/00-setup.md index 0f66997..4ca836b 100644 --- a/localisation/pt-br/docs/00-setup.md +++ b/localisation/pt-br/docs/00-setup.md @@ -18,6 +18,7 @@ Consulte a documentação [README](../README.md) para preparação. - [Iniciar Visual Studio Code](#iniciar-visual-studio-code) - [Configurar Servidores MCP](#configurar-servidores-mcp) - [Verificar o Modo Agente do GitHub Copilot](#verificar-o-modo-agente-do-github-copilot) +- [Configurar Modo Fera](#configurar-modo-fera) - [Preparar Instruções Customizadas](#preparar-instruções-customizadas) - [Analisar Documento de Requisitos do Produto (PRD) e Projetar API](#analisar-documento-de-requisitos-do-produto-prd-e-projetar-api) @@ -256,6 +257,7 @@ Consulte a documentação [README](../README.md) para preparação. ### Configurar Servidores MCP +1. Certifique-se de que o Docker Desktop esteja em execução se você usar o VS Code em sua máquina local. 1. Defina a variável de ambiente `$REPOSITORY_ROOT`. ```bash @@ -284,6 +286,7 @@ Consulte a documentação [README](../README.md) para preparação. 1. Abra a Paleta de Comandos digitando F1 ou `Ctrl`+`Shift`+`P` no Windows ou `Cmd`+`Shift`+`P` no Mac OS, e procure `MCP: List Servers`. 1. Escolha `context7` e clique em `Start Server`. +1. Escolha `awesome-copilot` e clique em `Start Server`. ## Verificar o Modo Agente do GitHub Copilot @@ -298,6 +301,40 @@ Consulte a documentação [README](../README.md) para preparação. 1. Selecione o modelo para `GPT-4.1` ou `Claude Sonnet 4`. +## Configurar Modo Fera + +1. Digite `/mcp.awesome-copilot.get_search_prompt`, seguido de palavras-chave como "beast mode" + + Isso deve mostrar a lista de modos de chat fera. Digite um prompt similar a `4.1 Beast Chat Mode`. Em seguida, será salvo no diretório `.github/chatmodes`. + +1. Escolha o modo `4.1-Beast` em vez do modo `Agent`. Ele mudará automaticamente o LLM para `GPT 4.1`. + +1. Defina a variável de ambiente `$REPOSITORY_ROOT`. + + ```bash + # bash/zsh + REPOSITORY_ROOT=$(git rev-parse --show-toplevel) + ``` + + ```powershell + # PowerShell + $REPOSITORY_ROOT = git rev-parse --show-toplevel + ``` + +1. Copie as configurações do workspace. + + ```bash + # bash/zsh + cp $REPOSITORY_ROOT/docs/.vscode/settings.json \ + $REPOSITORY_ROOT/.vscode/settings.json + ``` + + ```powershell + # PowerShell + Copy-Item -Path $REPOSITORY_ROOT/docs/.vscode/settings.json ` + -Destination $REPOSITORY_ROOT/.vscode/settings.json -Force + ``` + ## Preparar Instruções Customizadas 1. Defina a variável de ambiente `$REPOSITORY_ROOT`. diff --git a/localisation/zh-cn/docs/00-setup.md b/localisation/zh-cn/docs/00-setup.md index 01c9976..f1588c0 100644 --- a/localisation/zh-cn/docs/00-setup.md +++ b/localisation/zh-cn/docs/00-setup.md @@ -18,6 +18,7 @@ - [启动 Visual Studio Code](#启动-visual-studio-code) - [设置 MCP 服务器](#设置-mcp-服务器) - [检查 GitHub Copilot 代理模式](#检查-github-copilot-代理模式) +- [配置野兽模式](#配置野兽模式) - [准备自定义指令](#准备自定义指令) - [分析产品需求文档 (PRD) 和设计 API](#分析产品需求文档-prd-和设计-api) @@ -256,6 +257,7 @@ ### 设置 MCP 服务器 +1. 如果您在本地机器上使用 VS Code,请确保 Docker Desktop 正在运行。 1. 设置 `$REPOSITORY_ROOT` 环境变量。 ```bash @@ -284,6 +286,7 @@ 1. 通过按 F1 或在 Windows 上按 `Ctrl`+`Shift`+`P` 或在 Mac OS 上按 `Cmd`+`Shift`+`P` 打开命令面板,然后搜索 `MCP: List Servers`。 1. 选择 `context7` 然后点击 `Start Server`。 +1. 选择 `awesome-copilot` 然后点击 `Start Server`。 ## 检查 GitHub Copilot 代理模式 @@ -298,6 +301,40 @@ 1. 选择模型为 `GPT-4.1` 或 `Claude Sonnet 4`。 +## 配置野兽模式 + +1. 输入 `/mcp.awesome-copilot.get_search_prompt`,然后输入类似 "beast mode" 的关键词 + + 它应该显示野兽聊天模式列表。输入类似 `4.1 Beast Chat Mode` 的提示。然后它将保存在 `.github/chatmodes` 目录下。 + +1. 选择 `4.1-Beast` 模式而不是 `Agent` 模式。它将自动将 LLM 更改为 `GPT 4.1`。 + +1. 设置 `$REPOSITORY_ROOT` 环境变量。 + + ```bash + # bash/zsh + REPOSITORY_ROOT=$(git rev-parse --show-toplevel) + ``` + + ```powershell + # PowerShell + $REPOSITORY_ROOT = git rev-parse --show-toplevel + ``` + +1. 复制工作区设置。 + + ```bash + # bash/zsh + cp $REPOSITORY_ROOT/docs/.vscode/settings.json \ + $REPOSITORY_ROOT/.vscode/settings.json + ``` + + ```powershell + # PowerShell + Copy-Item -Path $REPOSITORY_ROOT/docs/.vscode/settings.json ` + -Destination $REPOSITORY_ROOT/.vscode/settings.json -Force + ``` + ## 准备自定义指令 1. 设置 `$REPOSITORY_ROOT` 环境变量。