Skip to content

Commit 65e16c6

Browse files
committed
Add beast mode to the setup process
1 parent 962c739 commit 65e16c6

3 files changed

Lines changed: 50 additions & 0 deletions

File tree

docs/.vscode/mcp.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,15 @@
88
}
99
],
1010
"servers": {
11+
"awesome-copilot": {
12+
"command": "docker",
13+
"args": [
14+
"run",
15+
"-i",
16+
"--rm",
17+
"ghcr.io/microsoft/mcp-dotnet-samples/awesome-copilot:stdio"
18+
]
19+
},
1120
"context7": {
1221
"command": "npx",
1322
"args": [

docs/.vscode/settings.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"chat.tools.autoApprove": true,
3+
"chat.agent.maxRequests": 100
4+
}

docs/00-setup.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Refer to the [README](../README.md) doc for preparation.
1818
- [Start Visual Studio Code](#start-visual-studio-code)
1919
- [Set-up MCP Servers](#set-up-mcp-servers)
2020
- [Check GitHub Copilot Agent Mode](#check-github-copilot-agent-mode)
21+
- [Configure Beast Mode](#configure-beast-mode)
2122
- [Prepare Custom Instructions](#prepare-custom-instructions)
2223
- [Analyze Product Requirements Document (PRD) and Design API](#analyze-product-requirements-document-prd-and-design-api)
2324

@@ -256,6 +257,7 @@ Refer to the [README](../README.md) doc for preparation.
256257

257258
### Set-up MCP Servers
258259

260+
1. Make sure Docker Desktop is up and running if you use VS Code on your local machine.
259261
1. Set the environment variable of `$REPOSITORY_ROOT`.
260262

261263
```bash
@@ -284,6 +286,7 @@ Refer to the [README](../README.md) doc for preparation.
284286
285287
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`.
286288
1. Choose `context7` then click `Start Server`.
289+
1. Choose `awesome-copilot` then click `Start Server`.
287290
288291
## Check GitHub Copilot Agent Mode
289292
@@ -298,6 +301,40 @@ Refer to the [README](../README.md) doc for preparation.
298301
299302
1. Select model to either `GPT-4.1` or `Claude Sonnet 4`.
300303
304+
## Configure Beast Mode
305+
306+
1. Enter the `/mcp.awesome-copilot.get_search_prompt`, followed by entering keywords like "beast mode"
307+
308+
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.
309+
310+
1. Choose the `4.1-Beast` mode instead of the `Agent` mode. It will automatically change LLM to `GPT 4.1`.
311+
312+
1. Set the environment variable of `$REPOSITORY_ROOT`.
313+
314+
```bash
315+
# bash/zsh
316+
REPOSITORY_ROOT=$(git rev-parse --show-toplevel)
317+
```
318+
319+
```powershell
320+
# PowerShell
321+
$REPOSITORY_ROOT = git rev-parse --show-toplevel
322+
```
323+
324+
1. Copy workspace settings.
325+
326+
```bash
327+
# bash/zsh
328+
cp $REPOSITORY_ROOT/docs/.vscode/settings.json \
329+
$REPOSITORY_ROOT/.vscode/settings.json
330+
```
331+
332+
```powershell
333+
# PowerShell
334+
Copy-Item -Path $REPOSITORY_ROOT/docs/.vscode/settings.json `
335+
-Destination $REPOSITORY_ROOT/.vscode/settings.json -Force
336+
```
337+
301338
## Prepare Custom Instructions
302339
303340
1. Set the environment variable of `$REPOSITORY_ROOT`.

0 commit comments

Comments
 (0)