Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add agents/wiseaidotdev/autogpt/manager-gptgit clone --depth 1 https://github.com/wiseaidotdev/autogptWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00000 | $0.00670 |
| Opus 5 | $0.00000 | $0.00335 |
| Sonnet 5 | $0.00000 | $0.00134 |
| Haiku 4.5 | $0.00000 | $0.00067 |
Grade A, and why
manager-gpt scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 88 lines — stays where its author put it; the contents beside it link to each section on GitHub.
ManagerGPT
Feature: gpt CLI: autogpt man
ManagerGPT is the top-level orchestrator in the AutoGPT agent mesh. It receives a high-level project goal, decomposes it into discrete subtasks, assigns each subtask to the appropriate specialist agent, and consolidates their outputs into a coherent final result.
What ManagerGPT Solves
Complex software projects involve multiple domains, e.g. architecture, backend, frontend, design, that must be developed in a coordinated way. ManagerGPT eliminates the need to manually decompose tasks and coordinate specialists. You give it one goal; it handles the rest.
How It Works
User Goal
│
▼
ManagerGPT (decomposes)
│
├──▶ ArchitectGPT → Architecture diagram
├──▶ BackendGPT → Server-side code
├──▶ FrontendGPT → UI code
└──▶ DesignerGPT → UI mockups (optional)
│
▼
ManagerGPT (consolidates)
│
▼
Final Output to User
ManagerGPT communicates its decomposed subtasks to each agent by constructing specialized Task descriptions enriched with the original goal context. Each agent receives not just its slice of the work but enough context to make coherent decisions.
CLI Usage
autogpt man
AutoGPT prompts for your project goal interactively. For example:
> Develop a full stack app that fetches today's weather in Python using FastAPI.
ManagerGPT dispatches to ArchitectGPT, DesignerGPT, BackendGPT, and FrontendGPT. Terminal output:
[*] "ManagerGPT": Executing task: "Develop a full stack app that fetches today's weather in python using FastAPI."
[*] "ArchitectGPT": Executing tasks: Task { description: "- Design the user interface for the weather app..." }
[*] "BackendGPT": Executing tasks: Task { description: "- Using FastAPI in Python, create a backend..." }
[*] "FrontendGPT": Executing tasks: Task { description: "- Using FastAPI in Python, create a user interface..." }
[*] "ManagerGPT": Completed Task: Task { ... }
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 3d ago First seen · 88 lines · 0 tokens per session scan A 11a514fc0ac6
manager-gpt is an agent published in the GitHub repository wiseaidotdev/autogpt (115 stars, last pushed 2mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 670 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other agents, from other repositories
agent_class
The Agent class is the core orchestrator in AgentForge. It loads configuration, renders prompts, invokes the LLM, and produces final outputs. Agents can be subclassed for custom logic.
custom_agents
This is an advanced extension reference.
agent_prompts
AgentForge uses YAML-based prompt templates to drive agent behaviors. All prompt files live under.
agents
Agents are the orchestrators in AgentForge, binding configuration, prompts, models, and storage into end-to-end AI workflows. An agent.
verify
Verifies edits conform to project AGENTS.md and suggests simplifications.
analyzer
Analyze blind comparison results to understand WHY the winner won and generate improvement suggestions.