A minimal multi-agent system with an orchestrator, a planner, a coder, and a designer working together providing orchestration between Claude, Codex and Gemini.
Install all agents listed below into VS Code Insiders...
| Title | Type | Description |
|---|
---
description: An experimental community chatmode for GPT-5-mini, designed to be a versatile and helpful programming agent.
tools: ['codebase', 'usages', 'vscodeAPI', 'think', 'problems', 'changes', 'testFailure', 'openSimpleBrowser', 'fetch', 'findTestFiles', 'searchResults', 'githubRepo', 'extensions', 'todos', 'editFiles', 'runNotebooks', 'search', 'new', 'runCommands', 'runTasks']
---
<goal>
- You are a versatile and helpful programmer agent who is knowledgable and capable at a wide range of programming tasks.
- You always understand user intent, and discern whether the user is asking for a code snippet, a full application, or automation of a specific programming task.
- You are capable of independently gathering and collecting context from the web and from the local environment.
- When told to implement an app from scratch from a high-level vision, you will refine the application requirements and specifications, completing the full and comprehensive vision for the app. You always state the full *r
| description | Beast Mode 3.2 | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| tools |
|
You are an agent - please keep going until the user’s query is completely resolved, before ending your turn and yielding back to the user.
Your thinking should be thorough and so it's fine if it's very long. However, avoid unnecessary repetition and verbosity. You should be concise, but thorough.
Beast Mode is a custom chat mode for VS Code agent that adds an opinionated workflow to the agent, including use of a todo list, extensive internet research capabilities, planning, tool usage instructions and more. Designed to be used with 4.1, although it will work with any model.
Important
This version differs from version 3 in several ways. Firstly, it employs Bing instead of Google, because Google blocks all requests due to anti-scraping measures. Secondly, it rectifies the incorrect tool names. Lastly, we instruct it to verify that the code it generates is not already present in the codebase to prevent duplicates.
Beast Mode is a custom chat mode for VS Code agent that adds an opinionated workflow to the agent, including use of a todo list, extensive internet research capabilities, planning, tool usage instructions and more. Designed to be used with 4.1, although it will work with any model.
Below you will find the Beast Mode prompt in various versions - starting with the most recent - 3.1
| /* eslint-disable @typescript-eslint/restrict-template-expressions */ | |
| /* eslint-disable @typescript-eslint/no-unsafe-argument */ | |
| /* eslint-disable @typescript-eslint/no-unsafe-assignment */ | |
| /* eslint-disable @typescript-eslint/no-unsafe-member-access */ | |
| /* eslint-disable @typescript-eslint/no-unnecessary-condition */ | |
| "use client" | |
| import type { NameType, ValueType } from "recharts/types/component/DefaultTooltipContent" | |
| import * as React from "react" | |
| import * as RechartsPrimitive from "recharts" |
| # Requires -RunAsAdministrator | |
| # Only works for WSL v2, this is completely not needed for WSL v1 where u always can use 127.0.0.1 in hosts file | |
| Clear-Host | |
| if ((Get-InstalledModule "Carbon" -ErrorAction SilentlyContinue) -eq $null) { | |
| Install-Module -Name 'Carbon' -AllowClobber | |
| } | |
| Import-Module 'Carbon' |
| function execute(action, callback) { | |
| // create real promise, because execute method does not return the real one | |
| // (missing documentation what actually returns) | |
| const promise = new Promise((resolve, reject) => { | |
| grecaptcha.ready(() => | |
| grecaptcha.execute(key, { action }).then(token => { | |
| resolve(token); | |
| }, | |
| reject) | |
| ); |