By adaptationio
Subagent recreations of all 10 Claude Code built-in workflows (autopilot, bugfix, bughunt, bughunt-lite, dashboard, deep-research, docs, investigate, plan-hunter, review-branch) — packaged as skills + /<name>-demo slash commands. A DEMO/preview of the upcoming native /workflows feature: works today using ungated Agent/Task subagents, for testing the ideas until /workflows is fully enabled.
Drive a task end-to-end from description to opened PR (Plan → Implement → Review → Fix → PR). Recreation of the built-in autopilot workflow via subagents. MODIFIES code.
Reproduce, fix, and verify a single reported bug via subagents. Recreation of the built-in bugfix workflow (native Workflow tool is gated off fleet-wide).
Adversarial bug hunt over the current branch (or a given path/diff-range). Self-respawning finder fleet + 5-vote refutation jury. Recreation of the built-in bughunt workflow via subagents.
Fast fixed-fleet bug hunt of the current branch (or a given path/diff-range). Recreation of the built-in bughunt-lite workflow via subagents — lighter/faster than bughunt.
Build a working dashboard from a plain-language request via a 5-phase subagent pipeline (Discover → Design → Implement → Verify → PR). Recreation of the built-in dashboard workflow. CREATES + commits files and opens a PR.
End-to-end "task → merged PR" build loop driven by subagents. Takes a task description and runs Plan (draft + 5 parallel critics + harden) → Implement → Review (3 rapid + 2 deep bughunters + adversarial verify, parallel with a completeness check) → Fix → PR. Use for "autopilot this", "build this feature end to end", "implement and open a PR for X", "drive this task to a PR", or the /autopilot-demo slash command. Faithful recreation of the Claude Code built-in `autopilot` workflow using subagents — works WITHOUT the gated Workflow tool (`tengu_workflows_enabled` is OFF fleet-wide). NOTE: this MODIFIES code (it is a build workflow, not review-only).
End-to-end single-bug fix loop driven from a bug report (Reproduce → Root-cause → Fix → Regress → PR). Dispatches a strictly sequential chain of 5 subagents — write the smallest failing repro, trace to the minimal root cause, apply the minimal fix and re-run the repro, harden the repro into a permanent regression test and run the suite, then lint/typecheck/branch/commit/push and open a PR. Hard-gates between phases (no repro → stop; fix not done → stop). Use for "fix this bug", "reproduce and fix", "here's a bug report — fix it", or the /bugfix-demo slash command. MODIFIES code. Faithful recreation of the Claude Code built-in `bugfix` workflow using subagents — works WITHOUT the gated Workflow tool (tengu_workflows_enabled is OFF fleet-wide).
Fast, fixed-fleet bug hunt over a branch diff (or a specified path/diff-range). Dispatches a FIXED fleet of 5 finders (3 rapid surface scanners + 2 deep analysts) in parallel, runs 5-voter adversarial verification per candidate (2 refutations kill a bug; early-kill after the first 2 votes), naively dedups by file:line, then synthesizes a semantically-deduped, severity-grouped report. Lighter and faster than the full `bughunt`: no self-respawning slots, no dry-streak loop, no skip-key feedback — just one fixed wave of finders. Use for "quick bug hunt", "bughunt-lite", "fast bug scan of my branch", "hunt bugs before PR (light)", or the /bughunt-lite-demo slash command. Faithful recreation of the Claude Code built-in `bughunt-lite` workflow using subagents — works WITHOUT the gated Workflow tool (tengu_workflows_enabled is OFF fleet-wide).
Adversarial bug hunt over a branch diff (or a specified path/diff-range). Runs a self-respawning finder fleet (rapid surface scanners + deep analysts) that dispatches bug candidates the moment they're found, verifies each candidate with a 5-vote pigeonhole adversarial jury (≥2 refutations kill it), and synthesizes a semantically-deduped, severity-ranked report. Terminates on a deep-finder dry streak. Use for "hunt for bugs", "find bugs in my branch", "bug hunt", "adversarial bug review", or the /bughunt-demo slash command. Faithful recreation of the Claude Code built-in `bughunt` workflow using subagents — works WITHOUT the gated Workflow tool (tengu_workflows_enabled is OFF fleet-wide).
Build a working dashboard from a plain-language request by running a 5-phase pipeline — Discover the dashboard stack + data sources, Design the panels, Implement the dashboard file(s), Verify queries render, then open a PR. Each phase is one subagent returning strict JSON. Use for "build a dashboard for X", "make a Grafana/Hex/Streamlit/React dashboard", "add a metrics dashboard", "dashboard the <data>", or the /dashboard-demo slash command. Faithful recreation of the Claude Code built-in `dashboard` workflow using subagents — works WITHOUT the gated Workflow tool (tengu_workflows_enabled is OFF fleet-wide). This skill CREATES and commits files.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Subagent recreations of all 10 of Claude Code's built-in /workflows — runnable today, as skills + /<name>-demo slash commands.
⚠️ This is a DEMO / preview. Claude Code v2.1.147 shipped a native
Workflowtool with 10 built-in multi-agent workflows, gated behind a server-side feature flag that isn't broadly enabled yet. A workflow is just an orchestration recipe (parallel agent fan-out → adversarial verification → synthesis); the tool is gated, but the Agent/Task subagent tools are not. So this marketplace recreates each recipe with ordinary subagents — working now, for testing the ideas until native/workflowslands. When it does, prefer the native built-ins: they're deterministic and replay-safe; these demos are not.
claude plugin marketplace add adaptationio/claude-workflow-demos
claude plugin install workflow-demos@team-willie
Then invoke a command (e.g. /review-branch-demo) or just ask Claude to "use the bughunt-lite demo on this branch."
| Command | What it does |
|---|---|
/review-branch-demo | 6-dimension review → adversarial verify → deduped report |
/bughunt-demo | self-respawning finder fleet → multi-vote jury → synthesis |
/bughunt-lite-demo | fixed finder fleet → multi-vote jury → synthesis (faster) |
/bugfix-demo | reproduce → locate → fix → verify (modifies code) |
/autopilot-demo | plan → 5 critics → implement → review → fix → PR (modifies code) |
/plan-hunter-demo | 4 planning lenses → 4 judges → synthesized plan |
/deep-research-demo | parallel search → fetch/extract → vote-verify → report |
/investigate-demo | gather → hypothesize → refute → report |
/docs-demo | discover → outline → write → verify → PR (writes docs) |
/dashboard-demo | discover → design → implement → verify → PR (creates files) |
Commands that modify or create files run on the current branch — review the diff.
| Native Workflow DSL | This plugin uses |
|---|---|
agent(prompt, {schema}) | the Agent tool; schema via "return strict JSON" |
parallel([...]) | multiple Agent calls in one message |
pipeline(stage1, stage2) | manual staging |
phase() / log() | progress narration |
Tradeoff vs native: no replay-safe determinism, no /workflows run-history browser. Keeps the full recipe logic — phases, parallel fan-out, adversarial verification, synthesis.
review-branch and bughunt-lite have passed end-to-end tests on a planted-bug fixture (adversarial jury confirms real bugs and rejects bogus claims).MIT. Built by Adaptation AI. Demo only — not the real /workflows.
npx claudepluginhub adaptationio/claude-workflow-demos --plugin workflow-demosAI-agent testing orchestrator: WebMCP + Playwright + visual + a11y + perf + security in one pass
Tools to maintain and improve CLAUDE.md files - audit quality, capture session learnings, and keep project memory current.
v9.44.1 — Patch release for Gemini environment/version detection and qwen auth gating. Run /octo:setup.
Harness-native ECC operator layer - 67 agents, 271 skills, 92 legacy command shims, reusable hooks, rules, selective install profiles, and production-ready workflows for Claude Code, Codex, OpenCode, Cursor, and related agent harnesses
Comprehensive skill pack with 66 specialized skills for full-stack developers: 12 language experts (Python, TypeScript, Go, Rust, C++, Swift, Kotlin, C#, PHP, Java, SQL, JavaScript), 10 backend frameworks, 6 frontend/mobile, plus infrastructure, DevOps, security, and testing. Features progressive disclosure architecture for 50% faster loading.
Comprehensive feature development workflow with specialized agents for codebase exploration, architecture design, and quality review
Comprehensive C4 architecture documentation workflow with bottom-up code analysis, component synthesis, container mapping, and context diagram generation