@@ -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.
2592611. Set the environment variable of ` $REPOSITORY_ROOT ` .
260262
261263 ` ` ` bash
@@ -284,6 +286,7 @@ Refer to the [README](../README.md) doc for preparation.
284286
2852871. Open Command Palette by typing F1 or ` Ctrl` +` Shift` +` P` on Windows or ` Cmd` +` Shift` +` P` on Mac OS, and search ` MCP: List Servers` .
2862881. 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
2993021. 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
3033401. Set the environment variable of `$REPOSITORY_ROOT`.
0 commit comments