Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions localisation/es-es/docs/00-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand All @@ -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`.
Expand Down
37 changes: 37 additions & 0 deletions localisation/fr-fr/docs/00-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand All @@ -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`.
Expand Down
37 changes: 37 additions & 0 deletions localisation/ja-jp/docs/00-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
- [Visual Studio Code を起動](#visual-studio-code-を起動)
- [MCP サーバーを設定](#mcp-サーバーを設定)
- [GitHub Copilot エージェントモードを確認](#github-copilot-エージェントモードを確認)
- [ビーストモードを設定](#ビーストモードを設定)
- [カスタム指示を準備](#カスタム指示を準備)
- [製品要求仕様書(PRD)を分析してAPIを設計](#製品要求仕様書prdを分析してapiを設計)

Expand Down Expand Up @@ -256,6 +257,7 @@

### MCP サーバーを設定

1. ローカルマシンでVS Codeを使用している場合は、Docker Desktopが起動していることを確認してください。
1. `$REPOSITORY_ROOT` 環境変数を設定します。

```bash
Expand Down Expand Up @@ -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 エージェントモードを確認

Expand All @@ -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` 環境変数を設定します。
Expand Down
37 changes: 37 additions & 0 deletions localisation/ko-kr/docs/00-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
- [Visual Studio Code 시작](#visual-studio-code-시작)
- [MCP 서버 설정](#mcp-서버-설정)
- [GitHub Copilot 에이전트 모드 확인](#github-copilot-에이전트-모드-확인)
- [비스트 모드 구성](#비스트-모드-구성)
- [커스텀 지시사항 준비](#커스텀-지시사항-준비)
- [제품 요구사항 문서(PRD) 분석 및 API 설계](#제품-요구사항-문서prd-분석-및-api-설계)

Expand Down Expand Up @@ -256,6 +257,7 @@

### MCP 서버 설정

1. 로컬 머신에서 VS Code를 사용하는 경우 Docker Desktop이 실행 중인지 확인하세요.
1. `$REPOSITORY_ROOT` 환경 변수를 설정하세요.

```bash
Expand Down Expand Up @@ -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 에이전트 모드 확인

Expand All @@ -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` 환경 변수를 설정하세요.
Expand Down
37 changes: 37 additions & 0 deletions localisation/pt-br/docs/00-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand All @@ -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`.
Expand Down
37 changes: 37 additions & 0 deletions localisation/zh-cn/docs/00-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
- [启动 Visual Studio Code](#启动-visual-studio-code)
- [设置 MCP 服务器](#设置-mcp-服务器)
- [检查 GitHub Copilot 代理模式](#检查-github-copilot-代理模式)
- [配置野兽模式](#配置野兽模式)
- [准备自定义指令](#准备自定义指令)
- [分析产品需求文档 (PRD) 和设计 API](#分析产品需求文档-prd-和设计-api)

Expand Down Expand Up @@ -256,6 +257,7 @@

### 设置 MCP 服务器

1. 如果您在本地机器上使用 VS Code,请确保 Docker Desktop 正在运行。
1. 设置 `$REPOSITORY_ROOT` 环境变量。

```bash
Expand Down Expand Up @@ -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 代理模式

Expand All @@ -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` 环境变量。
Expand Down