Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

Hyperplan — Adversarial Multi-Agent Planning

Spins up five mutually hostile expert agents, runs a three-round cross-critique debate, and hands only the surviving insights to a dedicated plan agent for an executable work plan.

AutomationAdvanced68,1095,562AI score 8/10Last updated: Aug 19, 2026

What it does

Hyperplan replaces consensus planning with intellectual combat. The orchestrator becomes the Lead of a five-member adversarial team:

  • skeptic — attacks over-engineering, scope creep, premature abstraction ("delete this, prove it's needed")
  • validator — hunts edge cases, cross-module fragility, blast radius, regressions
  • researcher — demands file:line or doc-URL evidence; vibes-based claims are invalidated
  • architect — exposes leaky abstractions, hidden coupling, accumulating tech debt
  • creative — forces at least three alternative framings before any solution is accepted

Seven phases: acknowledge the request → spawn the team → Round 1 independent findings → Round 2 ruthless cross-attack → Round 3 defend/refine/concede → Lead distills survivors into four buckets (hard constraints, decisions, risks & mitigations, open questions) → mandatory handoff to the plan agent, then team cleanup.

The contract is strict: the Lead never writes the plan. The insight bundle is input; the planner owns sequencing, dependencies, parallelization, and per-task success criteria.

Who it's for

  • Engineers facing an irreversible refactor or migration who want weak assumptions surfaced before writing code
  • Tech leads who tend to anchor on their first idea when planning solo
  • opencode / oh-my-opencode users with team mode enabled who want a real multi-agent debate pipeline

⚠️ Preconditions: team_* tools must be available (team_mode.enabled: true), you must run in the main session, and as a lead-eligible agent — not a planner agent.

Examples

  1. "hyperplan: plan the migration of the payments module to an event-driven design" — the skeptic questions whether the event bus earns its keep, the validator enumerates which existing payment tests break, the architect flags coupling; only defended constraints reach the plan.
  2. "hpp: design the new onboarding flow" — the creative challenger proposes sidestepping onboarding entirely, while the researcher demands real usage data, filtering out unfounded UX assumptions.
  3. "adversarial plan for splitting the monolith" — points where the debate never converged become Open Questions and are promoted to user-input gates in the final plan.

· · · Install guide · · ·

Try it now, no install

Paste this into Claude to use the skill without installing anything.

Read the instructions in this file and follow them to help me:
https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/HEAD/.opencode/skills/hyperplan/SKILL.md

What I want: (describe your task here)

If Claude can't open the link, open it yourself and paste the contents instead.

If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download ZIP
Install in Claude Code

Let Claude do it — paste this into Claude Code

Install the skill I found on Claude Skill Mart.
Copy the .opencode/skills/hyperplan folder from the GitHub repo code-yeongyu/oh-my-openagent into my ~/.claude/skills/code-yeongyu-hyperplan/.
When it's done, tell me in one line what this skill can do.

Install with a command instead

git clone https://github.com/code-yeongyu/oh-my-openagent.git /tmp/oh-my-openagent && mkdir -p ~/.claude/skills && cp -r /tmp/oh-my-openagent/.opencode/skills/hyperplan ~/.claude/skills/hyperplan

This is a third-party skill. Check the source repository before installing.

  1. Open a terminal.
  2. Clone the repo: git clone https://github.com/code-yeongyu/oh-my-openagent.git /tmp/oh-my-openagent
  3. Create the skills folder: mkdir -p ~/.claude/skills
  4. Copy the skill: cp -r /tmp/oh-my-openagent/.opencode/skills/hyperplan ~/.claude/skills/hyperplan
  5. This skill was written for opencode: if you use opencode, set team_mode.enabled: true in ~/.config/opencode/oh-my-opencode.jsonc and restart.
  6. For plain Claude Code, replace the team_* calls with your available subagent/task tooling (e.g. Task), since team-mode tools do not exist there.
  7. Start a fresh session and ask "hyperplan: plan X" — you should see "HYPERPLAN MODE ENABLED!" as the first line of the reply.
View source on GitHubLicense: NOASSERTION