Workflow
Big-task path for work that is too large for normal turn-by-turn orchestration: system-wide changes, large migrations, repo-wide audits, high-confidence verification, and task prompts that explicitly ask for a workflow.
- In Claude Code, use the host dynamic workflow runtime.
- In Codex, run the portable workflow adapter with Codex subagents when exposed; otherwise run the same phases inline in the current thread.
- In OpenCode, run the portable workflow adapter with Task/subagent dispatch when exposed; otherwise run the same phases inline in the current session.
- In Grok, run the portable workflow adapter with
spawn_subagent when enabled; otherwise run the same phases inline in the current session.
- In Antigravity, Desktop/web bridge mode, or any host that cannot preserve the adapter phases, say so in one line and route to
/hyperflow:plan with chain-mode=auto.
Claude Code dynamic workflows require Claude Code v2.1.154 or later and can be disabled by /config, managed settings, ~/.claude/settings.json, or CLAUDE_CODE_DISABLE_WORKFLOWS=1. When disabled, use the portable adapter if the host is Codex, OpenCode, or Grok; otherwise route to /hyperflow:plan with chain-mode=auto.
Routing Rules
- Run this skill in Claude Code, Codex, OpenCode, and Grok.
- Auto-route here when triage returns
flow=deep or flow=scientific, scope=system-wide, or the user says big task, large migration, repo-wide audit, run a workflow, or dynamic workflow.
- Do not route here for moderate multi-file work, routine bug fixes, or a task that needs user sign-off between implementation stages. Big-task workflow runs should not depend on arbitrary mid-run user input; split sign-off-heavy work into separate workflows or use
spec -> scope -> dispatch.
- Do not set
/effort ultracode or xhigh automatically. The user can enable /effort ultracode manually for session-wide workflow selection.
Provider Contracts
Claude Code Native Workflow
When this skill runs, ask the Claude Code workflow runtime to create a dynamic workflow for $ARGUMENTS. The generated workflow must preserve Hyperflow's doctrine inside the worker prompts and must include these phases:
Research and planning
- Map affected files, dependency edges, tests, docs, and risk boundaries.
- Read
.hyperflow/profile.md, .hyperflow/architecture.md, .hyperflow/conventions.md, .hyperflow/testing.md, and .hyperflow/memory/index.md when present.
- Produce a concise execution graph with parallelizable units and dependencies.
Parallel implementation or investigation
- Fan out independent agents by subsystem or file family.
- Keep each agent brief specific: objective, files in scope, constraints, acceptance criteria, and test expectations.
- Use the lightest model/stage that can safely do the work when the runtime supports model routing.
Adversarial verification
- Run independent verification agents against each implementation or finding.
- For audits, verify each finding before reporting it.
- For implementation, check cross-file integration, regression risk, security-sensitive paths, and missed tests.
Quality gates and repair loop
- Run the project lint, typecheck, build, and relevant tests from
.hyperflow/testing.md or detected package scripts.
- Retry focused fixes only for verified failures.
- Never use
--no-verify; never force-push to main or master.
Final synthesis
- Return one coordinated result with completed work, verification evidence, unresolved risks, changed files, and next actions.
- For durable project learnings, identify what should be appended to
.hyperflow/memory/, but do not invent memory entries unrelated to the run.
Codex Portable Workflow Adapter
Codex does not provide Claude Code's dynamic workflow runtime. Treat /hyperflow:workflow as a custom Hyperflow workflow envelope around Codex subagents and inline fallback:
Research and planning
- Read the same
.hyperflow/ cache files listed above when present.
- Write or update
.hyperflow/tasks/<slug>.md for implementation or audit work that needs durable progress tracking.
- Build an execution graph with parallelizable units, dependencies, expected commits, and verification commands.
Parallel implementation or investigation
- If Codex subagent tools are exposed, dispatch independent searcher/worker/writer units together and collect their results before review.
- Map implementation and writing tasks to worker subagents; map codebase research to explorer/search subagents.
- If subagents are unavailable, run each unit inline with explicit worker and reviewer labels.
Adversarial verification
- Run a separate verification pass for each completed unit before reporting it.
- Use Codex thinking defaults for verification and final integration review.
Quality gates and commits
- Run the detected lint, typecheck, build, and relevant tests.
- Commit each accepted unit separately using conventional commits.
- Never use
--no-verify; never request xhigh.
Final synthesis
- Return changed files, verification evidence, unresolved risks, and next actions.
OpenCode Portable Workflow Adapter
OpenCode does not provide Claude Code's dynamic workflow runtime. Treat /hyperflow:workflow as a custom Hyperflow workflow envelope around OpenCode's task/subagent facilities and inline fallback:
Research and planning
- Read the same
.hyperflow/ cache files listed above when present.
- Write or update
.hyperflow/tasks/<slug>.md for implementation or audit work that needs durable progress tracking.
- Build an execution graph with parallelizable units, dependencies, expected commits, and verification commands.
Parallel implementation or investigation
- If OpenCode exposes Task/subagent dispatch, send independent implementation or investigation units through that path.
- Keep each subtask bounded by objective, files in scope, constraints, acceptance criteria, and tests.
- If task dispatch is unavailable, run each unit inline with explicit worker and reviewer labels.
Adversarial verification
- Run a separate verification pass for each completed unit before reporting it.
- Run verification and the final integration review as decision-agent passes on the current session model.
Quality gates and commits
- Run the detected lint, typecheck, build, and relevant tests.
- Commit each accepted unit separately using conventional commits.
- Never use
--no-verify.
Final synthesis
- Return changed files, verification evidence, unresolved risks, and next actions.
Grok Portable Workflow Adapter
Grok does not provide Claude Code's dynamic workflow runtime. Treat /hyperflow:workflow as a custom Hyperflow workflow envelope around Grok spawn_subagent and inline fallback:
Research and planning
- Read the same
.hyperflow/ cache files listed above when present.
- Write or update
.hyperflow/tasks/<slug>.md for implementation or audit work that needs durable progress tracking.
- Build an execution graph with parallelizable units, dependencies, expected commits, and verification commands.
Parallel implementation or investigation
- If
spawn_subagent is available and subagents are not disabled (GROK_SUBAGENTS / config), dispatch independent units together:
- implementer/writer →
subagent_type: general-purpose
- searcher/research →
subagent_type: explore
- Collect results before review; spawn independent siblings in parallel when the runtime allows.
- If subagents are unavailable, run each unit inline with explicit worker and reviewer labels.
Adversarial verification
- Run a separate verification pass for each completed unit before reporting it.
- Run verification and the final integration review as decision-agent passes on the current session model.
Quality gates and commits
- Run the detected lint, typecheck, build, and relevant tests.
- Commit each accepted unit separately using conventional commits.
- Never use
--no-verify.
Final synthesis
- Return changed files, verification evidence, unresolved risks, and next actions.
Claude Code Prompt Skeleton
Use this shape when handing the task to the workflow runtime:
Create a dynamic workflow for this Hyperflow big-task run.
Task:
<user task>
Doctrine:
- Preserve Hyperflow autonomy: execute reversible work without invented confirmations.
- Ask only for genuine ambiguity after codebase research.
- Keep plans, task decompositions, audits, and memory under .hyperflow/ when files are needed.
- Use conventional commits, one distinct task per commit.
- Never use --no-verify and never force-push to main/master.
- Respect the Hyperflow security blocklist in skills/hyperflow/security.md.
Required phases:
1. Research and planning.
2. Parallel implementation or investigation.
3. Adversarial verification.
4. Quality gates and focused repair loop.
5. Final synthesis.
Acceptance:
- Every substantive result is independently checked before being reported.
- Quality gates run or are explicitly marked unavailable with the command attempted.
- The final answer includes evidence, changed files, unresolved risks, and next actions.
Save For Reuse
When a run succeeds and the user will repeat it, mention that Claude Code can save the generated workflow from /workflows with s. Project workflows save under .claude/workflows/; personal workflows save under ~/.claude/workflows/. Do not create those files directly from this skill because plugin packaging does not currently ship .claude/workflows/ as a first-class component.
Codex, OpenCode, and Grok adapters are not saved through /workflows; repeatable behavior comes from this skill, .hyperflow/tasks/, project memory, and provider-specific subagent/task configuration.
Source: jeremylongshore/claude-code-plugins-plus-skills → plugins/ai-agency/hyperflow/skills/workflow/SKILL.md
1---2name: workflow-23description: | Use when a task is too large for turn-by-turn orchestration and should run through the big-task workflow lane: system-wide changes, large migrations, repo-wide audits, high-confidence verification, or tasks explicitly asking to run a workflow. Claude Code uses native dynamic workflows; Codex, OpenCode, and Grok use the portable workflow adapter. Trigger with /hyperflow:workflow, "run a workflow", "dynamic workflow", "big task", "large migration", "repo-wide audit".4---5
6
7# Workflow
8
9Big-task path for work that is too large for normal turn-by-turn orchestration: system-wide changes, large migrations, repo-wide audits, high-confidence verification, and task prompts that explicitly ask for a workflow.
10
11- In Claude Code, use the host dynamic workflow runtime.
12- In Codex, run the portable workflow adapter with Codex subagents when exposed; otherwise run the same phases inline in the current thread.
13- In OpenCode, run the portable workflow adapter with Task/subagent dispatch when exposed; otherwise run the same phases inline in the current session.
14- In Grok, run the portable workflow adapter with `spawn_subagent` when enabled; otherwise run the same phases inline in the current session.
15- In Antigravity, Desktop/web bridge mode, or any host that cannot preserve the adapter phases, say so in one line and route to `/hyperflow:plan` with `chain-mode=auto`.
16
17Claude Code dynamic workflows require Claude Code v2.1.154 or later and can be disabled by `/config`, managed settings, `~/.claude/settings.json`, or `CLAUDE_CODE_DISABLE_WORKFLOWS=1`. When disabled, use the portable adapter if the host is Codex, OpenCode, or Grok; otherwise route to `/hyperflow:plan` with `chain-mode=auto`.
18
19## Routing Rules
20
21- Run this skill in Claude Code, Codex, OpenCode, and Grok.
22- Auto-route here when triage returns `flow=deep` or `flow=scientific`, `scope=system-wide`, or the user says `big task`, `large migration`, `repo-wide audit`, `run a workflow`, or `dynamic workflow`.
23- Do not route here for moderate multi-file work, routine bug fixes, or a task that needs user sign-off between implementation stages. Big-task workflow runs should not depend on arbitrary mid-run user input; split sign-off-heavy work into separate workflows or use `spec -> scope -> dispatch`.
24- Do not set `/effort ultracode` or `xhigh` automatically. The user can enable `/effort ultracode` manually for session-wide workflow selection.
25
26## Provider Contracts
27
28### Claude Code Native Workflow
29
30When this skill runs, ask the Claude Code workflow runtime to create a dynamic workflow for `$ARGUMENTS`. The generated workflow must preserve Hyperflow's doctrine inside the worker prompts and must include these phases:
31
321. Research and planning
33 - Map affected files, dependency edges, tests, docs, and risk boundaries.
34 - Read `.hyperflow/profile.md`, `.hyperflow/architecture.md`, `.hyperflow/conventions.md`, `.hyperflow/testing.md`, and `.hyperflow/memory/index.md` when present.
35 - Produce a concise execution graph with parallelizable units and dependencies.
36
372. Parallel implementation or investigation
38 - Fan out independent agents by subsystem or file family.
39 - Keep each agent brief specific: objective, files in scope, constraints, acceptance criteria, and test expectations.
40 - Use the lightest model/stage that can safely do the work when the runtime supports model routing.
41
423. Adversarial verification
43 - Run independent verification agents against each implementation or finding.
44 - For audits, verify each finding before reporting it.
45 - For implementation, check cross-file integration, regression risk, security-sensitive paths, and missed tests.
46
474. Quality gates and repair loop
48 - Run the project lint, typecheck, build, and relevant tests from `.hyperflow/testing.md` or detected package scripts.
49 - Retry focused fixes only for verified failures.
50 - Never use `--no-verify`; never force-push to main or master.
51
525. Final synthesis
53 - Return one coordinated result with completed work, verification evidence, unresolved risks, changed files, and next actions.
54 - For durable project learnings, identify what should be appended to `.hyperflow/memory/`, but do not invent memory entries unrelated to the run.
55
56### Codex Portable Workflow Adapter
57
58Codex does not provide Claude Code's dynamic workflow runtime. Treat `/hyperflow:workflow` as a custom Hyperflow workflow envelope around Codex subagents and inline fallback:
59
601. Research and planning
61 - Read the same `.hyperflow/` cache files listed above when present.
62 - Write or update `.hyperflow/tasks/<slug>.md` for implementation or audit work that needs durable progress tracking.
63 - Build an execution graph with parallelizable units, dependencies, expected commits, and verification commands.
64
652. Parallel implementation or investigation
66 - If Codex subagent tools are exposed, dispatch independent searcher/worker/writer units together and collect their results before review.
67 - Map implementation and writing tasks to worker subagents; map codebase research to explorer/search subagents.
68 - If subagents are unavailable, run each unit inline with explicit worker and reviewer labels.
69
703. Adversarial verification
71 - Run a separate verification pass for each completed unit before reporting it.
72 - Use Codex thinking defaults for verification and final integration review.
73
744. Quality gates and commits
75 - Run the detected lint, typecheck, build, and relevant tests.
76 - Commit each accepted unit separately using conventional commits.
77 - Never use `--no-verify`; never request `xhigh`.
78
795. Final synthesis
80 - Return changed files, verification evidence, unresolved risks, and next actions.
81
82### OpenCode Portable Workflow Adapter
83
84OpenCode does not provide Claude Code's dynamic workflow runtime. Treat `/hyperflow:workflow` as a custom Hyperflow workflow envelope around OpenCode's task/subagent facilities and inline fallback:
85
861. Research and planning
87 - Read the same `.hyperflow/` cache files listed above when present.
88 - Write or update `.hyperflow/tasks/<slug>.md` for implementation or audit work that needs durable progress tracking.
89 - Build an execution graph with parallelizable units, dependencies, expected commits, and verification commands.
90
912. Parallel implementation or investigation
92 - If OpenCode exposes Task/subagent dispatch, send independent implementation or investigation units through that path.
93 - Keep each subtask bounded by objective, files in scope, constraints, acceptance criteria, and tests.
94 - If task dispatch is unavailable, run each unit inline with explicit worker and reviewer labels.
95
963. Adversarial verification
97 - Run a separate verification pass for each completed unit before reporting it.
98 - Run verification and the final integration review as decision-agent passes on the current session model.
99
1004. Quality gates and commits
101 - Run the detected lint, typecheck, build, and relevant tests.
102 - Commit each accepted unit separately using conventional commits.
103 - Never use `--no-verify`.
104
1055. Final synthesis
106 - Return changed files, verification evidence, unresolved risks, and next actions.
107
108### Grok Portable Workflow Adapter
109
110Grok does not provide Claude Code's dynamic workflow runtime. Treat `/hyperflow:workflow` as a custom Hyperflow workflow envelope around Grok `spawn_subagent` and inline fallback:
111
1121. Research and planning
113 - Read the same `.hyperflow/` cache files listed above when present.
114 - Write or update `.hyperflow/tasks/<slug>.md` for implementation or audit work that needs durable progress tracking.
115 - Build an execution graph with parallelizable units, dependencies, expected commits, and verification commands.
116
1172. Parallel implementation or investigation
118 - If `spawn_subagent` is available and subagents are not disabled (`GROK_SUBAGENTS` / config), dispatch independent units together:
119 - implementer/writer → `subagent_type: general-purpose`
120 - searcher/research → `subagent_type: explore`
121 - Collect results before review; spawn independent siblings in parallel when the runtime allows.
122 - If subagents are unavailable, run each unit inline with explicit worker and reviewer labels.
123
1243. Adversarial verification
125 - Run a separate verification pass for each completed unit before reporting it.
126 - Run verification and the final integration review as decision-agent passes on the current session model.
127
1284. Quality gates and commits
129 - Run the detected lint, typecheck, build, and relevant tests.
130 - Commit each accepted unit separately using conventional commits.
131 - Never use `--no-verify`.
132
1335. Final synthesis
134 - Return changed files, verification evidence, unresolved risks, and next actions.
135
136## Claude Code Prompt Skeleton
137
138Use this shape when handing the task to the workflow runtime:
139
140```text
141Create a dynamic workflow for this Hyperflow big-task run.
142
143Task:
144<user task>
145
146Doctrine:
147- Preserve Hyperflow autonomy: execute reversible work without invented confirmations.
148- Ask only for genuine ambiguity after codebase research.
149- Keep plans, task decompositions, audits, and memory under .hyperflow/ when files are needed.
150- Use conventional commits, one distinct task per commit.
151- Never use --no-verify and never force-push to main/master.
152- Respect the Hyperflow security blocklist in skills/hyperflow/security.md.
153
154Required phases:
1551. Research and planning.
1562. Parallel implementation or investigation.
1573. Adversarial verification.
1584. Quality gates and focused repair loop.
1595. Final synthesis.
160
161Acceptance:
162- Every substantive result is independently checked before being reported.
163- Quality gates run or are explicitly marked unavailable with the command attempted.
164- The final answer includes evidence, changed files, unresolved risks, and next actions.
165```
166
167## Save For Reuse
168
169When a run succeeds and the user will repeat it, mention that Claude Code can save the generated workflow from `/workflows` with `s`. Project workflows save under `.claude/workflows/`; personal workflows save under `~/.claude/workflows/`. Do not create those files directly from this skill because plugin packaging does not currently ship `.claude/workflows/` as a first-class component.
170
171Codex, OpenCode, and Grok adapters are not saved through `/workflows`; repeatable behavior comes from this skill, `.hyperflow/tasks/`, project memory, and provider-specific subagent/task configuration.
172
173---
174
175**Source:** [`jeremylongshore/claude-code-plugins-plus-skills`](https://github.com/jeremylongshore/claude-code-plugins-plus-skills) → `plugins/ai-agency/hyperflow/skills/workflow/SKILL.md`