hyperflow
Point it at a GitHub issue and get back a reviewed pull request. Hyperflow turns one AI coding session into a structured engineering pipeline: plan sharpens and decomposes the work, dispatch fans out parallel workers, and a domain specialist reviews every step — nothing ships unreviewed. 18 skills, 22 specialist reviewer and investigator agents, adaptive depth so a 5-line fix never triggers a deep run, and persistent per-project memory that lives in your repo and never leaves it. Runs on whatever model your session already uses — zero config, no API keys, no daemon. Works across Claude Code, Codex App/CLI, OpenCode, Grok, Antigravity, and Cursor.
pinned to #c34db47updated 2 weeks ago
Ask your AI client: “install plugins/hyperflow”.
Requires the metahub MCP server installed in your client. Set up MCP.
mh install plugins/hyperflowmetahub onboarded this repo on the author's behalf.
If you own github.com/jeremylongshore/claude-code-plugins-plus-skills on GitHub, claim the listing to take over publishing. Your claim preserves the existing eval history and badges; only the curator label is replaced with verified-publisher on your next publish.
Stars
2,498
Last commit
2 weeks ago
Latest release
published
- #agent-skills
- #ai
- #ai-agents
- #anthropic
- #automation
- #claude-code
- #claude-code-plugins
- #developer-tools
- #devops
- #llm
- #marketplace
- #mcp
- #plugin-marketplace
- #plugin-system
- #saas
- #skills
What's bundled
Items extracted from this plugin's manifest + directory tree.
Skills (18)
skills/audit|skills/background|skills/bridge|skills/cache|skills/deploy|skills/design|skills/dispatch|skills/flush|
Subagents (8)
accessibility-reviewerUse when reviewing user-facing UI for WCAG conformance, keyboard navigation, screen-reader semantics, or reduced-motion support — verifies accessibility against the ui and frontend persona standards.algorithm-reviewerUse when code contains non-trivial algorithms, loops, recursion, or data-structure choices — the specialist that analyzes the time/space complexity (Big-O) of every routine and proposes a lower-com…analystUse when a decision needs multi-dimensional analysis — weighing intent/fit, scope/risk, and alternatives before a design or approach is chosen. The synthesis investigator behind spec analysis.api-reviewerUse when reviewing HTTP/RPC/GraphQL endpoints, request/response contracts, input validation, or error semantics — verifies the API surface against the api persona standards.architectUse when designing a new system or subsystem, or making a structural change to an existing one — the system-design specialist that decomposes the architecture, sets module/service/component boundar…backend-reviewerUse when reviewing service-layer logic, module boundaries, business rules, or cross-service contracts — verifies architecture integrity and service correctness against the api and architect persona…brainUse when a task has been triaged and the chain needs to decide which specialist agents are responsible — the router consulted once after triage to finalize the reviewer/investigator roster, web-res…compliance-reviewerUse when a change touches PII, regulated data, consent, retention, or audit-trail requirements (GDPR/CCPA/HIPAA/PCI) — verifies regulatory posture against the security and docs persona standards. D…
Evaluation report
PassingAutomated checks the publisher passed at publish time — structure, docs, safety, and whether the artifact behaves as claimed.c34db47· 2 weeks ago
Select a category above to see its individual checks.
Release history
1- releasecurrentc34db47pass2 weeks ago
Contents
Hyperflow
<strong>Point it at a GitHub issue. Get back a reviewed pull request.</strong>
Hyperflow turns one AI coding session into a multi-agent engineering pipeline — planners design, workers build in parallel, and a domain specialist reviews every step before it ships.
Runs on Claude Code, Codex, OpenCode, Grok, Antigravity & Cursor — on your session model, zero config.
Landing site · Installation · Orchestration · Changelog

<em>A real run: <code>plan</code> → 3 parallel workers → batch review → integration review — in 28 seconds. Full walkthrough on the landing site.</em>
From issue to reviewed PR
/hyperflow:issue https://github.com/you/app/issues/42
Triage classifies the thread (bug → root-cause discipline, feature → the plan chain, question → a drafted reply).
A spec is synthesized from the issue's own acceptance criteria — issue text is treated as data, never instructions.
Then the standard chain runs: plan → parallel dispatch under review → a gated PR exit that opens the pull request with Closes #42.
The maintainer side is /hyperflow:pr <url> — the same L1–L5 audit over the PR's real fetched code (never just diff text),
findings posted as one batched review (inline, summary, or local-only), a fix chain on NEEDS_FIX, and a merge that is always gated.
Contributor code is analyzed statically, never executed.
Quick start
claude plugin marketplace add Mohammed-Abdelhady/hyperflow
claude plugin install hyperflow@hyperflow-marketplace
Codex App/CLI:
codex plugin marketplace add Mohammed-Abdelhady/hyperflow
codex plugin add hyperflow@hyperflow-marketplace
Initialize the project once, then invoke any skill:
/hyperflow:scaffold # first: set up the project (once per repo)
/hyperflow:issue https://github.com/you/app/issues/42 # issue → triage → plan → dispatch → gated PR
/hyperflow:plan "add user auth with login + middleware" # sharpen → design → decompose → dispatch
/hyperflow:workflow "large migration across the repo" # big-task workflow lane
/hyperflow:trace "tests fail after the auth refactor" # root-cause a bug
/hyperflow:deploy # pre-push gates + ship
Auto-routing is on by default — say "audit the diff" or "debug this test" and the right skill runs without the
/hyperflow:* prefix. In Codex, hyperflow <skill> is the portable spelling. Setup and host notes → Installation.
What makes it different
- Every step is reviewed. Worker → Reviewer is an iron rule at every granularity, sub-phases included — per-batch reviewers spot-check each diff, a final integration reviewer signs off on the whole. No worker output ships unreviewed.
- Memory that's yours. Learnings, decisions, and pitfalls persist in
.hyperflow/memory/— plain markdown, committed with your repo, never uploaded, never mixed across projects. - Depth that adapts. Triage classifies every task and picks a flow profile (fast → scientific), so a 5-line fix never triggers a 300k-token deep run.
How it works
Invoke a skill. Chain-starters auto-advance through the rest — no always-on orchestrator, no background process, everything in your terminal, every agent on your current session model.
| # | Skill | What it does |
|---|---|---|
| 1 | issue | GitHub front door — issue URL → triage → spec from the issue's own acceptance criteria → the chain, with a gated PR exit |
| 1 | plan | Front door — sharpen the prompt, design the approach (refuses to code before you approve), decompose into a parallel task graph with a test-complete brief per sub-task; stops at a build-location gate |
| 2 | dispatch | Fan out persona-stitched workers under per-batch + final-integration review |
| 3 | workflow | Big-task lane — native Claude Code dynamic workflows; a portable adapter on Codex, OpenCode, and Grok |
| 4 | audit | L1–L5 review on the result |
| 5 | deploy | Pre-push gates (lint · typecheck · build · tests · security) → commit → release → push |
audit and deploy are gates — they fire only on your explicit yes. scaffold is a one-time project setup.
| Role | Does |
|---|---|
| Orchestrator | Coordinate workers, sequence dispatches, manage chain state |
| Decision agent | Triage, brainstorm, decide, review every output, run the final integration pass |
| Worker | Execute in parallel — implement, search, write |
Triage assigns every task a flow profile, so effort matches the work instead of always running deep:
| Profile | Use when | Workers | Budget |
|---|---|---|---|
fast | trivial single-file, reversible | 1 | ≤30k |
standard | simple/moderate, 2–5 files | 1–2 | ≤100k |
deep | complex / cross-cutting / system-wide | 3+ | 300k |
research | unknown territory, evaluation | 3+ searchers | ≤80k |
creative | UI/UX exploration | 1–2 | ≤150k |
scientific | correctness-critical, proof work | 2–3 + TDD | 300k |
Workers are stitched with the right subset of 15 composable expert personas (architect, api, db, frontend, ui,
security, performance, scientific, refactor, bugfix, test, research, creative, devops, docs) — security frames every
decision first, creative adapts last.
Small work becomes a flat task file (.hyperflow/tasks/<slug>.md); work with sequential stages becomes a feature
with phase sub-folders, each carrying its own tasks, spec, research, and decisions — see
skills/hyperflow/feature-phases.md. A chain can also run across two sessions:
plan here, build in another environment via a git-committed handoff package, review back here — see
skills/hyperflow/session-handoff.md.
22 specialists, routed by a Brain
Reviews and investigations are run by named domain specialists (agents/), not a generic reviewer.
A decision-agent router — the Brain — is consulted once after triage, decides which specialists own the task,
and writes that roster into the artefact so the whole chain inherits it.
| Reviewers | Design-time agents | Investigators |
|---|---|---|
frontend-reviewer · backend-reviewer · api-reviewer | architect — boundaries, data flow, frontend at scale | searcher — maps the codebase |
database-reviewer · database-optimization-reviewer | designer — design system, prior art, anti-slop | debugger — 5-Whys root cause |
security-reviewer · vulnerability-reviewer · compliance-reviewer | motion — 60fps budget, springs, reduced-motion | analyst — multi-dimensional analysis |
performance-reviewer · algorithm-reviewer · devops-reviewer | mobile — RN/Flutter/native, platform a11y | researcher — external evidence |
accessibility-reviewer · data-ml-reviewer | (design at plan time, review on change) |
Specialists are web-research-first: on deep/research/scientific/security flows they look up current best practices,
CVEs, and framework docs before judging. Any agent can consult a peer mid-task via a brokered CONSULT signal —
see skills/hyperflow/consultation.md.
Memory that persists
Learnings live at .hyperflow/memory/ — plain markdown, committed with your repo, never uploaded, never mixed across projects.
- Three tiers —
hot(≤7 days, always injected),warm(8–30 days, tag-matched),cold(30+ days, on-demand, compressed). - Lazy injection — only tag-matched entries load for a given task, so injection cost stays bounded.
- Auto-written by the chain —
auditrecords recurring findings toanti-patterns.md;planrecords structural answers toproject-decisions.md, so the same questions aren't asked twice.
Guardrails
Autonomy without the foot-guns — a hardened default config ships in the box (config/defaults.json):
- 25 blocked file patterns — keys, secrets, cloud credentials are never read or written.
- 15 blocked commands —
rm -rf, force-push to main,sudo, unsolicited package publish. - 11 secret patterns — AWS keys, GitHub tokens, private-key headers, connection strings — scanned in diffs.
- Untrusted text stays data — issue and PR text is never treated as instructions; outbound actions (push, PR, comment, merge) are always gated.
Details → Installation § security.
Skills
Eighteen skills. Two chain-starters auto-advance through the chain; the rest are standalone.
| Skill | Command | Type | Purpose |
|---|---|---|---|
issue | /hyperflow:issue | Chain starter | GitHub issue → triaged, planned, dispatched, reviewed pull request — with injection guard and gated posting |
plan | /hyperflow:plan | Chain starter | Sharpen the prompt, design the approach, decompose into a parallel task graph; stops at a build-location gate — never auto-implements |
dispatch | /hyperflow:dispatch | Endpoint | Fan out persona-stitched workers under per-batch + final review |
pr | /hyperflow:pr | Standalone | Review an incoming pull request — L1–L5 audit on the real diff, one batched GitHub review, fix chain, gated merge |
design | /hyperflow:design | Standalone | Domain-grounded design system + prior-art research + local taste skills, anti-slop; hands off to the build chain |
workflow | /hyperflow:workflow | Big-task lane | Native Claude Code workflows; portable Codex/OpenCode/Grok adapter for migrations, audits, and verification-heavy work |
scaffold | /hyperflow:scaffold | Standalone | Project setup — .hyperflow/ cache + multi-tool shims |
trace | /hyperflow:trace | Standalone | Systematic root-cause debugging — 5 Whys, never patches symptoms |
audit | /hyperflow:audit | Standalone | L1 quick → L5 exhaustive review on changes, files, or PRs |
deploy | /hyperflow:deploy | Standalone | Pre-push gates → commit → release → push (push always asks) |
cache | /hyperflow:cache | Standalone | Memory CRUD — show, search, add, prune, archive, compact |
handoff | /hyperflow:handoff | Standalone | Two-session handoff — list / status / pickup / review / complete a committed package |
status | /hyperflow:status | Standalone | Read-only snapshot — version, memory count, live per-task progress |
background | /hyperflow:background | Standalone | List, show, cancel, prune task-level background agents |
sticky | /hyperflow:sticky | Standalone | on / auto / off — per-project auto-routing mode |
bridge | /hyperflow:bridge | Standalone | Embed the portable doctrine into CLAUDE.md for Desktop / web / IDE |
flush | /hyperflow:flush | Standalone | Flush a deferred-commit queue from a prior or crashed chain |
hyperflow | /hyperflow:hyperflow | Portable doctrine | Applies the full orchestration ruleset in single-agent surfaces (Codex, Antigravity, Grok) — auto-invoked on task-shaped work |
Runs everywhere
Hyperflow runs on whatever model your session already uses — every dispatched agent inherits it, there is no model
configuration and no extra API bill. Auto-detected across Codex App/CLI, Claude Code, OpenCode, Grok, Antigravity,
and Cursor, with concrete ports in templates/ (a full Antigravity skill+workflow port, Grok rules,
AGENTS.md/CLAUDE.md shims) and hooks that load memory at session start and guard chain state through context compaction.
For surfaces that can't load terminal plugins (Claude Code Desktop, claude.ai web), /hyperflow:bridge embeds the
portable doctrine into your project's CLAUDE.md.
Documentation
- Install — Installation · where it runs, security configuration, verification
- Understand — Orchestration · Landing site · Agents
- Reference — Changelog · Privacy · contributor guide in
CLAUDE.md
License
MIT
Reviews
No reviews yet. Be the first.
Related
before-you-build
Production-ready workflow orchestration with 91 marketplace plugins, 199 local specialized agents, and 162 local skills - optimized for granular installation and minimal token usage
beagle-ai
Pydantic AI, LangGraph, DeepAgents, and Vercel AI SDK skills for building and reviewing AI applications.
beagle-docs
Documentation quality, generation, and improvement using Diataxis principles. Pairs with beagle-core for full workflow.
mh install plugins/hyperflow