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 skills add oyi77/1ai-skills --skill planning-agentgit clone --depth 1 https://github.com/oyi77/1ai-skillsWrote 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/skills/oyi77/1ai-skills/planning-agent)<a href="https://agentmods.dev/skills/oyi77/1ai-skills/planning-agent"><img src="https://agentmods.dev/badge/skills/oyi77/1ai-skills/planning-agent/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/oyi77/1ai-skills/planning-agent"><img src="https://agentmods.dev/badge/skills/oyi77/1ai-skills/planning-agent.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.00022 | $0.01213 |
| Opus 5 | $0.00011 | $0.00607 |
| Sonnet 5 | $0.00004 | $0.00243 |
| Haiku 4.5 | $0.00002 | $0.00121 |
Grade A, and why
planning-agent 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 today.
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 — 149 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Overview
This agent decomposes complex tasks into executable steps with explicit dependencies, owners, and sequencing. Use it at the start of any multi-step effort where order matters and failure at one step must not cascade. It produces a plan that a team — human or agent — can execute without re-deriving the design.
Planning Agent
Quick Reference — see parent for full agent ecosystem.
The Planning Agent decomposes ambiguous feature requests into ordered, executable steps with explicit dependencies, risk assessments, and verification gates. It eliminates the single biggest source of rework — unclear requirements — by forcing specificity before any code is written. Its output is a structured plan that downstream agents (research, code, review, deploy) consume directly.
When Not to Use
- Simple or one-off tasks — if the task is straightforward, direct execution is faster than structured methodology.
- Already established workflows — follow existing team conventions rather than introducing new frameworks.
- When automation overhead exceeds benefit — for very small scopes, the setup cost may not be justified.
Dependencies
- Python 3.8+ or Node.js 18+
- Access to relevant APIs/services for your specific use case
- Basic understanding of the domain concepts
Commands
# Refer to the skill's usage section for specific commands
# Adapt these to your workflow
Key Responsibilities
- Break down features: Convert natural-language requirements into a step graph with clear inputs, outputs, and dependencies
- Identify risks early: Flag ambiguous requirements, missing context, breaking changes, and parallelization opportunities before implementation starts
- Define verification gates: Specify acceptance criteria and test conditions for every step so completion is measurable
Code Example
"""Minimal planning agent pattern — decompose a feature request."""
import json, sys
def plan(feature_request: str) -> dict:
# In practice, this calls an LLM. Here we show the output shape.
steps = [
{
"name": "auth-setup",
"type": "implementation",
"files": ["src/auth/provider.py", "src/auth/config.py"],
"dependencies": [],
"risk": "low",
"effort": "30min",
"verification": "Auth flow test passes"
},
{
"name": "callback-handler",
"type": "implementation",
"files": ["src/auth/callback.py"],
"dependencies": ["auth-setup"],
"risk": "medium",
"effort": "1h",
"verification": "Callback processes valid/invalid tokens"
},
{
"name": "login-ui",
"type": "frontend",
"files": ["src/components/LoginButton.tsx"],
"dependencies": ["auth-setup", "callback-handler"],
"risk": "low",
"effort": "45min",
"verification": "Login flow E2E passes in Playwright"
}
]
return {
"feature": feature_request,
"steps": steps,
"dependencies": ["auth-setup → callback-handler → login-ui"],
"risks": [
{"description": "Provider OAuth scope changes", "mitigation": "Pin API version in config"}
],
"estimated_time": "2h 15min",
"parallelizable": ["auth-setup can start immediately"],
"total_files": 3,
"total_tests": 3
}
if __name__ == "__main__":
result = plan(" ".join(sys.argv[1:]))
print(json.dumps(result, indent=2))
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.
- today Changed · +11 lines b3b568d0e3fc
- 11d ago First seen · 138 lines · 22 tokens per session scan A 0288753f74cd
planning-agent is a skill published in the GitHub repository oyi77/1ai-skills (12 stars, last pushed today), licensed MIT. It adds 22 tokens to every session and 1,213 once invoked, about $0.0001 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-30.
Other skills, from other repositories
autonomous-loops
Patterns and architectures for autonomous Claude Code loops — from simple sequential pipelines to RFC-driven multi-agent DAG systems.
ctf-misc
Provides miscellaneous CTF challenge techniques for problems that do not cleanly fit the main categories. Use for encoding puzzles, pyjails, bash jails, RF/SDR, DNS oddities, unicode tricks, esoteric languages, QR or audio puzzles, constraint solving, game theory, unusual sandbox escapes, and hybrid logic puzzles.…
backend-patterns
Backend architecture patterns, API design, database optimization, and server-side best practices for Node.js, Express, and Next.js API routes.
ctf-reverse
Provides reverse engineering techniques for CTF challenges. Use when the main job is to understand how a compiled, obfuscated, packed, or virtualized target works before exploiting or solving it, including binaries, APKs, WASM, firmware, custom VMs, bytecode, game clients, malware-like loaders, and anti-debug or…
agent-payment-x402
Add x402 payment execution to AI agents with per-task budgets, spending controls, and non-custodial wallets. Supports Base through agentwallet-sdk and X Layer through OKX Payments / OKX Agent Payments Protocol.
autonomous-agent-harness
Transform Claude Code into a fully autonomous agent system with persistent memory, scheduled operations, computer use, and task queuing. Replaces standalone agent frameworks (Hermes, AutoGPT) by leveraging Claude Code's native crons, dispatch, MCP tools, and memory. Use when the user wants continuous autonomous…