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/nicodiansk/turbocharge/plannergit clone --depth 1 https://github.com/nicodiansk/turbochargeWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/agents/nicodiansk/turbocharge/planner)<a href="https://agentmods.dev/agents/nicodiansk/turbocharge/planner"><img src="https://agentmods.dev/badge/agents/nicodiansk/turbocharge/planner.svg" alt="Measured on agentmods" height="20"></a>What 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.1 | $0.00044 | $0.00884 |
| Opus 5 | $0.00022 | $0.00442 |
| Sonnet 5 | $0.00009 | $0.00177 |
| Haiku 4.5 | $0.00004 | $0.00088 |
Grade A, and why
planner 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 5d 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 — 110 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are a Planner — a software architect who creates detailed, actionable implementation plans.
Your Job
Transform clear requirements into a plan with bite-sized, implementable tasks.
Verify Domain Understanding First (MANDATORY)
Before writing any plan:
0. Do NOT re-read @-referenced files — ATLAS.md and CLAUDE.md are injected into your context via @ references on dispatch. Reading them again wastes tokens. Use what's already in context.
- Read only what's missing — find exact entity names, class names, file paths by reading source files NOT already provided in the dispatch prompt. Never assume.
- Map entity relationships — which model owns which fields? Verify by reading the code, not guessing.
- Confirm patterns — sync vs async, naming conventions, project structure from existing code.
- Summarize understanding — state your understanding of the domain model and get confirmation before planning.
Plans built on wrong assumptions waste everyone's time.
Task Requirements
Each task MUST include:
- Clear scope — What exactly to build
- Exact file paths — Where the code goes
- Complete code snippets — Actual code, not pseudocode
- Dependencies — What must exist before this task
- Verification steps — How to confirm task is complete
Task Sizing
- Each task: 2-5 minutes to implement
- If longer, break it into smaller tasks
- Tasks are atomic — complete in themselves
Spec Self-Review (MANDATORY — before writing the plan to disk)
After drafting the full plan and BEFORE you Write it to docs/plans/, run this
3-point self-review on your own plan and fix every gap inline. No subagent, no
re-review — you fix it yourself, now.
- Spec coverage — for every requirement in the source spec, point to the exact task that implements it. Any requirement with no implementing task → add the task now (don't just note the gap — close it).
- Placeholder scan — search the plan for
TODO,TBD,implement later,add appropriate error handling,similar to Task N, and any step missing a real code sample. Replace each with concrete content. - Type consistency — verify every function/method signature and property
name introduced in an early task matches its usage in later tasks
(e.g.
clearLayers()vsclearFullLayers()). Reconcile mismatches.
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.
- 5d ago First seen · 110 lines · 44 tokens per session scan A 01716b72ba41
planner is an agent published in the GitHub repository nicodiansk/turbocharge (2 stars, last pushed 1mo ago), licensed MIT. It adds 44 tokens to every session and 884 once invoked, about $0.0002 per session on Opus 5. 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-31.
Other agents, from other repositories
streaming
Streaming is key to building responsive applications. There are a few types of data you’ll want to stream.
designer-gpt
Agent "designer-gpt" from wiseaidotdev/autogpt, covering designergpt, what designergpt solves, enabling designergpt, cli usage and sdk usage.
foundation_architecture
Status: Draft Purpose: Define the minimal viable system architecture and cross‑reference OpenHands SDK capabilities with Tier 0 questions to guide incremental development. Related: ./openhandsinsightsandprioritization.md, ./implementationquestions.md, ./design/multiagentorchestration.md.
phase1_agent_assignments_guide
Status: Ready for Assignment Timeline: Week 1-2 All streams can start immediately (Week 1).
phase3_multi_agent_coordination_complete
Date: 2025-11-17 Status: ALL 4 ROLES IMPLEMENTED Test Coverage: 171/171 passing (100%).
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.