workflow-supervisor 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +109 -0
- package/README.md +57 -24
- package/docs/artifacts.md +5 -0
- package/docs/portable-delegation.md +5 -0
- package/docs/skill-reference.md +1 -1
- package/docs/troubleshooting.md +10 -0
- package/package.json +8 -2
- package/skills/loop-policy/SKILL.md +29 -6
- package/skills/workflow-docs/SKILL.md +2 -1
- package/skills/workflow-docs/references/workflow-control.md +37 -2
- package/skills/workflow-supervisor/SKILL.md +147 -46
- package/skills/workflow-supervisor/agents/openai.yaml +2 -2
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
This changelog was reconstructed from npm publish metadata and git history after the first four package versions were published without GitHub releases or tags.
|
|
4
|
+
|
|
5
|
+
## 0.1.4 - 2026-06-19
|
|
6
|
+
|
|
7
|
+
Prepared for npm publication.
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- Added profile-based supervisor execution with `lean_work_unit_runner`, `strict_full_workflow`, and `planning_only`.
|
|
12
|
+
- Added compact lean-runner ledger guidance for large bounded backlogs that need lower memory and less ceremony.
|
|
13
|
+
- Added native worker resource lifecycle rules for thread and subagent transports.
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
|
|
17
|
+
- Changed strict worker lifecycle from logical closeout only to `planned -> handed_off -> acknowledged -> reported -> verified -> resource_closed -> closed`.
|
|
18
|
+
- Required native worker transports to record resource ids, close actions, and close results before final workflow outcome.
|
|
19
|
+
- Made one-shot portable delegation the preferred worker path when it satisfies the work, because it avoids resident native workers.
|
|
20
|
+
|
|
21
|
+
### Fixed
|
|
22
|
+
|
|
23
|
+
- Prevented completed Codex subagents from remaining open after workflow-supervisor runs by requiring `close_agent` for every recorded native `agent_id`.
|
|
24
|
+
- Blocked final PASS when any native worker has no recorded close result.
|
|
25
|
+
- Reduced large-backlog memory pressure by defaulting lean execution to same-session phased work unless workers are explicitly authorized or risk escalation requires them.
|
|
26
|
+
|
|
27
|
+
### Verified
|
|
28
|
+
|
|
29
|
+
- Expanded lifecycle tests to cover profile selection, lean ledgers, native worker resource ids, `close_agent`, and close-result gates.
|
|
30
|
+
|
|
31
|
+
## 0.1.3 - 2026-06-17
|
|
32
|
+
|
|
33
|
+
Published to npm: 2026-06-17 22:09:08 UTC
|
|
34
|
+
|
|
35
|
+
Commit: `154bbd7`
|
|
36
|
+
|
|
37
|
+
### Added
|
|
38
|
+
|
|
39
|
+
- Added resumable SPEC gate behavior so broad source-controlled workflows can pause for human review before final work units, dossiers, and implementation.
|
|
40
|
+
- Added resume guidance for autonomous workflows that block on a human decision, including updates to workflow state, goal state, and decision artifacts.
|
|
41
|
+
- Expanded troubleshooting guidance for broad roadmap scope, residual risks that hide required work, and SPEC review before work units.
|
|
42
|
+
|
|
43
|
+
### Changed
|
|
44
|
+
|
|
45
|
+
- Hardened workflow-supervisor scope coverage so material source requirements, roadmap phases, exit criteria, named systems, and numeric targets must be mapped to work units, explicitly deferred, blocked, or marked non-material.
|
|
46
|
+
- Updated acceptance, loop-policy, work-unit, and workflow-docs instructions to preserve source requirement strength and avoid quiet downgrades.
|
|
47
|
+
|
|
48
|
+
### Verified
|
|
49
|
+
|
|
50
|
+
- Expanded workflow-supervisor lifecycle tests for source coverage, SPEC review, and resume behavior.
|
|
51
|
+
|
|
52
|
+
## 0.1.2 - 2026-06-17
|
|
53
|
+
|
|
54
|
+
Published to npm: 2026-06-17 16:00:10 UTC
|
|
55
|
+
|
|
56
|
+
Commit: `b449656`
|
|
57
|
+
|
|
58
|
+
### Changed
|
|
59
|
+
|
|
60
|
+
- Reworked the workflow-supervisor skill around a stricter worker-agent supervisor architecture.
|
|
61
|
+
- Made explicit supervisor invocation require full intake, work units, dossiers, worker-agent contracts, scoped handoffs, report schema, and verification even for small tasks.
|
|
62
|
+
- Clarified that implementation, verification, repair-authoring, and documentation are separate worker-agent responsibilities when an automated worker path is available.
|
|
63
|
+
- Rewrote the README around the strict worker supervisor model and the current package workflow.
|
|
64
|
+
|
|
65
|
+
### Verified
|
|
66
|
+
|
|
67
|
+
- Added lifecycle coverage for strict supervisor invocation behavior.
|
|
68
|
+
|
|
69
|
+
## 0.1.1 - 2026-06-15
|
|
70
|
+
|
|
71
|
+
Published to npm: 2026-06-15 10:59:19 UTC
|
|
72
|
+
|
|
73
|
+
Commit: `ee4c02b`
|
|
74
|
+
|
|
75
|
+
### Added
|
|
76
|
+
|
|
77
|
+
- Added portable worker delegation for Codex and Claude Code through `workflow-supervisor delegate`.
|
|
78
|
+
- Added `WorkerReportV1` and `DossierV1` schema artifacts plus dossier validation before delegation.
|
|
79
|
+
- Added `delegate-doctor` for adapter inspection and optional probe runs.
|
|
80
|
+
- Added project-scope `.workflow/` ignore handling for local workflow state.
|
|
81
|
+
- Added portable delegation documentation and tests for install, delegation, and lifecycle behavior.
|
|
82
|
+
|
|
83
|
+
### Changed
|
|
84
|
+
|
|
85
|
+
- Renamed the primary package executable path around `workflow-supervisor` while keeping `workflow-skills` as an executable alias.
|
|
86
|
+
- Narrowed certified install/delegation targets to Codex, Claude Code, and generic Markdown contexts.
|
|
87
|
+
- Strengthened validation to include adapter metadata and schema artifacts.
|
|
88
|
+
|
|
89
|
+
### Verified
|
|
90
|
+
|
|
91
|
+
- Added Node test coverage for delegate CLI behavior, installation behavior, portable delegation, and supervisor lifecycle handling.
|
|
92
|
+
|
|
93
|
+
## 0.1.0 - 2026-06-14
|
|
94
|
+
|
|
95
|
+
Published to npm: 2026-06-14 23:35:57 UTC
|
|
96
|
+
|
|
97
|
+
Source: npm tarball contents. The GitHub release tag for this version is a reconstructed source snapshot from the npm tarball because no exact matching commit exists in the branch history for this first publish.
|
|
98
|
+
|
|
99
|
+
### Added
|
|
100
|
+
|
|
101
|
+
- Initial npm package for the workflow-supervisor skill pack.
|
|
102
|
+
- Added the bundled skills: `workflow-supervisor`, `worker-roles`, `acceptance-matrix`, `dossier-builder`, `source-corpus`, `loop-policy`, `work-unit`, and `workflow-docs`.
|
|
103
|
+
- Added the `workflow-supervisor` and `workflow-skills` executables for listing, validating, installing, uninstalling, and emitting portable context.
|
|
104
|
+
- Added Codex, Claude Code, OpenCode, HermesAgent, and generic adapter metadata, plus package documentation, troubleshooting notes, compatibility notes, and a README overview.
|
|
105
|
+
- Added packaging metadata, test coverage, and prepublish validation through `npm run validate`.
|
|
106
|
+
|
|
107
|
+
### Verified
|
|
108
|
+
|
|
109
|
+
- Initial package validation covered skill folder structure, `SKILL.md` metadata, and publishable package layout.
|
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Workflow Supervisor
|
|
2
2
|
|
|
3
|
-
Workflow Supervisor is a
|
|
3
|
+
Workflow Supervisor is a profile-based supervision skill pack for agent work that needs to stay organized, resumable, evidence-backed, and proportional to the work.
|
|
4
4
|
|
|
5
|
-
It is for moments when you do not want an agent to
|
|
5
|
+
It is for moments when you do not want an agent to lose the thread halfway through, quietly skip scope, or turn a large backlog into an unreviewable blur. You ask for the supervisor, the supervisor selects the right execution profile, keeps the work units explicit, verifies results with evidence, and leaves a clear outcome trail. Heavy multi-agent ceremony is available when risk justifies it; large pure backlogs can use a lean runner that keeps the agent focused on delivery.
|
|
6
6
|
|
|
7
7
|
Example prompt:
|
|
8
8
|
|
|
@@ -19,10 +19,12 @@ The correct first response is not code. The correct first response is an intake
|
|
|
19
19
|
Workflow Supervisor gives you a repeatable workflow for serious agent tasks:
|
|
20
20
|
|
|
21
21
|
- a complete intake before work starts
|
|
22
|
+
- a profile choice between `lean_work_unit_runner`, `strict_full_workflow`, and `planning_only`
|
|
22
23
|
- a source map, even when the only source is the user prompt
|
|
23
24
|
- a source-requirement coverage ledger so roadmap items and exit criteria cannot disappear
|
|
24
25
|
- a `SPEC.md` review gate where humans can ask questions, request revisions, block, defer, or approve before work units are finalized
|
|
25
26
|
- bounded work units, including `WU-001` for tiny tasks
|
|
27
|
+
- a compact ledger for high-throughput work-unit execution
|
|
26
28
|
- dossiers that tell each worker exactly what to do and what not to touch
|
|
27
29
|
- separate implementer, verifier, repair, and documenter responsibilities
|
|
28
30
|
- structured worker reports instead of loose prose
|
|
@@ -31,7 +33,7 @@ Workflow Supervisor gives you a repeatable workflow for serious agent tasks:
|
|
|
31
33
|
- durable `.workflow/` state when the work needs to survive context loss
|
|
32
34
|
- a final report with checks, risks, workers, and next actions
|
|
33
35
|
|
|
34
|
-
The main design choice is simple:
|
|
36
|
+
The main design choice is simple: supervision is mandatory when requested, but overhead is profile-dependent. Work units preserve clarity. Workers, dossiers, and independent verifier loops are tools for strict or escalated work, not a default tax on every unit.
|
|
35
37
|
|
|
36
38
|
## The Mental Model
|
|
37
39
|
|
|
@@ -88,9 +90,35 @@ flowchart TB
|
|
|
88
90
|
|
|
89
91
|
## What Happens When You Invoke It
|
|
90
92
|
|
|
91
|
-
When you explicitly invoke `workflow-supervisor`, `$workflow-supervisor`, or say to use the skill, the
|
|
93
|
+
When you explicitly invoke `workflow-supervisor`, `$workflow-supervisor`, or say to use the skill, the first decision is the execution profile:
|
|
92
94
|
|
|
93
|
-
|
|
95
|
+
- `lean_work_unit_runner`: for large, already-bounded work-unit backlogs where throughput and low memory matter.
|
|
96
|
+
- `strict_full_workflow`: for ambiguous, high-risk, delegated, security-sensitive, source-of-truth, publication, or cross-system work.
|
|
97
|
+
- `planning_only`: for intake, sequencing, risk review, and recommendations without implementation.
|
|
98
|
+
|
|
99
|
+
Lean mode keeps work units but removes per-unit ceremony. It uses one upfront scope contract, one compact ledger, targeted checks, and strict escalation gates:
|
|
100
|
+
|
|
101
|
+
```text
|
|
102
|
+
select next ready unit
|
|
103
|
+
-> inspect only needed sources
|
|
104
|
+
-> patch or update the allowed surface
|
|
105
|
+
-> run the targeted check
|
|
106
|
+
-> update one ledger row
|
|
107
|
+
-> continue until batch checkpoint, blocker, or final disposition
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
A lean unit is not ready unless it has:
|
|
111
|
+
|
|
112
|
+
```yaml
|
|
113
|
+
id:
|
|
114
|
+
source_ref:
|
|
115
|
+
scope:
|
|
116
|
+
done:
|
|
117
|
+
check:
|
|
118
|
+
status:
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
Strict mode is still available when risk justifies it. In strict mode, task size does not matter. The full workflow is:
|
|
94
122
|
|
|
95
123
|
1. Ask the complete intake packet.
|
|
96
124
|
2. Build or record the source corpus.
|
|
@@ -108,20 +136,21 @@ Strict mode means task size does not matter. Even if the request is "make a func
|
|
|
108
136
|
14. Refresh docs or outcome state.
|
|
109
137
|
15. Report final status and next action.
|
|
110
138
|
|
|
111
|
-
|
|
139
|
+
Profile selection exists to prevent both failure modes: skipping supervision when work is risky, and drowning simple or already-bounded work in process.
|
|
112
140
|
|
|
113
141
|
## Intake
|
|
114
142
|
|
|
115
|
-
The supervisor must get explicit answers to these
|
|
143
|
+
The supervisor must get explicit answers to these eight items before planning deeply, creating a goal, delegating workers, implementing, publishing, or taking irreversible action:
|
|
116
144
|
|
|
117
145
|
```text
|
|
118
146
|
1. Objective and source: what artifact, spec, repo path, document, ticket, or source set controls the work?
|
|
119
|
-
2.
|
|
120
|
-
3.
|
|
121
|
-
4.
|
|
122
|
-
5.
|
|
123
|
-
6.
|
|
124
|
-
7.
|
|
147
|
+
2. Profile: lean_work_unit_runner, strict_full_workflow, or planning_only?
|
|
148
|
+
3. Execution path: autonomous_goal or human_in_loop?
|
|
149
|
+
4. Mode: sequential, parallel where safe, or staged parallel?
|
|
150
|
+
5. Delegation: same-session phased, automated worker delegation, or native threads/subagents if available?
|
|
151
|
+
6. Final disposition: keep local, open PR, push main, deploy/publish, or ask at the end?
|
|
152
|
+
7. Boundaries: may I install dependencies, call external services, use credentials, or only edit local files?
|
|
153
|
+
8. State artifacts: compact ledger, .workflow docs, another artifact directory, or inline state?
|
|
125
154
|
```
|
|
126
155
|
|
|
127
156
|
If any answer is missing or vague, the supervisor asks only for the missing pieces and stops. Phrases like "work autonomously", "just do it", or "use your judgment" do not fill in the missing intake fields.
|
|
@@ -156,10 +185,10 @@ complete intake
|
|
|
156
185
|
The worker lifecycle is tracked separately:
|
|
157
186
|
|
|
158
187
|
```text
|
|
159
|
-
planned -> handed_off -> acknowledged -> reported -> verified -> closed
|
|
188
|
+
planned -> handed_off -> acknowledged -> reported -> verified -> resource_closed -> closed
|
|
160
189
|
```
|
|
161
190
|
|
|
162
|
-
This makes it possible to see where the workflow is, which worker owns which piece, what evidence exists, and
|
|
191
|
+
This makes it possible to see where the workflow is, which worker owns which piece, what evidence exists, what native resource was opened, and whether that resource was closed. A native worker is not closed just because it returned a report.
|
|
163
192
|
|
|
164
193
|
For source-of-truth builds, the coverage ledger is the guardrail against "green but incomplete" outcomes. Every material source requirement must be mapped to a work unit and acceptance row, explicitly deferred by the user, blocked as a scope decision, or marked non-material with a reason. Residual risks and future-work notes cannot contain unimplemented material source requirements in a PASS workflow.
|
|
165
194
|
|
|
@@ -199,7 +228,7 @@ Common workflow files:
|
|
|
199
228
|
| `.workflow/SPEC.md` | `workflow-supervisor`, `source-corpus`, `workflow-docs` | Human-reviewable interpretation, requirement coverage, Q&A, and approval decision before work units. |
|
|
200
229
|
| `.workflow/WORK-UNITS.md` | `work-unit`, `workflow-docs` | Unit list, dependencies, sequencing, blocked units. |
|
|
201
230
|
| `.workflow/DOSSIER.md` or `.workflow/dossiers/*.yaml` | `dossier-builder`, `workflow-docs` | Worker contracts for implementation, verification, repair, or documentation. |
|
|
202
|
-
| `.workflow/WORKER-MAP.md` | `workflow-supervisor`, `worker-roles`, `workflow-docs` | Worker names, roles, transports, lifecycle, reports, blockers. |
|
|
231
|
+
| `.workflow/WORKER-MAP.md` | `workflow-supervisor`, `worker-roles`, `workflow-docs` | Worker names, roles, transports, native resource ids, lifecycle, reports, close results, blockers. |
|
|
203
232
|
| `.workflow/ACCEPTANCE-MATRIX.md` | `acceptance-matrix`, `workflow-docs` | Evidence rows and material PASS, FAIL, BLOCKED states. |
|
|
204
233
|
| `.workflow/VERIFICATION-REPORT.md` | verifier worker, `acceptance-matrix`, `workflow-docs` | Verification evidence, findings, skipped checks, residual risks. |
|
|
205
234
|
| `.workflow/REPAIR-TICKETS.md` | repair worker, `workflow-docs` | Repair tasks tied to failed rows or verifier findings. |
|
|
@@ -313,9 +342,11 @@ Every delegated worker returns this machine-shaped report:
|
|
|
313
342
|
|
|
314
343
|
The supervisor trusts the report shape, not loose prose. A PASS without evidence is invalid. A verifier that edits implementation is invalid. A worker that asks the human directly is converted into a blocker for the supervisor to route.
|
|
315
344
|
|
|
345
|
+
For native threads or subagents, the report is only the work result. The supervisor must also close the native resource. For Codex subagents, record the returned `agent_id` and call `close_agent` after the report, timeout, failure, blocker, cancellation, or invalid-output result is captured. Final outcome is blocked while any native worker lacks a close result.
|
|
346
|
+
|
|
316
347
|
## How The Supervisor Talks To Workers
|
|
317
348
|
|
|
318
|
-
The portable worker path is one CLI command:
|
|
349
|
+
The portable worker path is one CLI command and is preferred when it satisfies the work because it is one-shot:
|
|
319
350
|
|
|
320
351
|
```bash
|
|
321
352
|
workflow-supervisor delegate \
|
|
@@ -351,9 +382,11 @@ workflow-supervisor delegate-doctor --agent all --probe --require-pass
|
|
|
351
382
|
|
|
352
383
|
If a worker adapter is missing, unauthenticated, times out, returns invalid output, edits forbidden surfaces, or returns PASS without evidence, the delegate command returns a structured `BLOCKED` report.
|
|
353
384
|
|
|
385
|
+
Native thread or subagent transports may be used only when the environment exposes the full lifecycle: create, wait or receive a terminal report, and close. If a native transport can start workers but cannot close them, the supervisor records `worker_resource_close_unavailable` and uses portable delegation or same-session phased work only when intake allows it.
|
|
386
|
+
|
|
354
387
|
## No Silent Fallbacks
|
|
355
388
|
|
|
356
|
-
|
|
389
|
+
In `strict_full_workflow` with worker delegation selected, if the environment can create, message, or delegate to worker agents, the supervisor must use real workers for implementation, verification, repair, and documentation responsibilities.
|
|
357
390
|
|
|
358
391
|
If it cannot, it must record:
|
|
359
392
|
|
|
@@ -363,7 +396,7 @@ worker_agent_unavailable
|
|
|
363
396
|
|
|
364
397
|
Then it must stop for a human decision unless complete intake explicitly selected `same_session_phased`.
|
|
365
398
|
|
|
366
|
-
|
|
399
|
+
In `lean_work_unit_runner`, same-session phased execution is the default unless the user explicitly authorizes workers for a batch or escalation. Verification in same-session mode is a `focused-check` or `self-check`, not an `independent-verifier`.
|
|
367
400
|
|
|
368
401
|
## Install
|
|
369
402
|
|
|
@@ -538,11 +571,11 @@ If you are an agent using this package:
|
|
|
538
571
|
|
|
539
572
|
1. Do not start work before complete intake.
|
|
540
573
|
2. Do not infer missing permissions from words like "autonomous", "generate", or "work until done".
|
|
541
|
-
3. If `$workflow-supervisor` is explicit,
|
|
542
|
-
4.
|
|
543
|
-
5.
|
|
544
|
-
6.
|
|
545
|
-
7. Treat same-session verification as `self-check`, not `independent-verifier`.
|
|
574
|
+
3. If `$workflow-supervisor` is explicit, select `lean_work_unit_runner`, `strict_full_workflow`, or `planning_only` before heavy planning.
|
|
575
|
+
4. Always keep work units explicit; lean mode uses a compact ledger instead of full per-unit ceremony.
|
|
576
|
+
5. Do not delegate without a valid `DossierV1`.
|
|
577
|
+
6. Use separate worker agents in strict or explicitly delegated work, not by default for lean execution.
|
|
578
|
+
7. Treat same-session verification as `focused-check` or `self-check`, not `independent-verifier`.
|
|
546
579
|
8. Trust only structured `WorkerReportV1` results from delegated workers.
|
|
547
580
|
9. Treat verifier edits as invalid.
|
|
548
581
|
10. Keep `.workflow/` ignored and local unless the user explicitly asks to publish it.
|
package/docs/artifacts.md
CHANGED
|
@@ -8,6 +8,7 @@ In Git-backed codebases, `.workflow/` is local working state. Ensure `<workspace
|
|
|
8
8
|
|
|
9
9
|
## Workflow Control
|
|
10
10
|
|
|
11
|
+
- `.workflow/LEDGER.md`
|
|
11
12
|
- `.workflow/WORKFLOW.md`
|
|
12
13
|
- `.workflow/SOURCE-CORPUS.md`
|
|
13
14
|
- `.workflow/WORK-UNITS.md`
|
|
@@ -40,3 +41,7 @@ In Git-backed codebases, `.workflow/` is local working state. Ensure `<workspace
|
|
|
40
41
|
## State Medium
|
|
41
42
|
|
|
42
43
|
Markdown is the default, but state may also be an inline brief, spreadsheet tab, ticket set, design annotation, CRM note, runbook, decision log, slide appendix, whiteboard note, or chat continuation note.
|
|
44
|
+
|
|
45
|
+
For `lean_work_unit_runner`, prefer one compact ledger over multiple workflow documents. Each executable row should carry `id`, `source_ref`, `scope`, `done`, `check`, `status`, touched surfaces, and blockers. Escalated units may link to strict-mode SPEC, dossier, or verification artifacts only when needed.
|
|
46
|
+
|
|
47
|
+
For native thread or subagent delegation, `WORKER-MAP.md` must record the native resource id, terminal report, close action, and close result. Do not mark a native worker closed until the resource close is recorded.
|
|
@@ -18,6 +18,10 @@ complete intake
|
|
|
18
18
|
-> final supervisor report
|
|
19
19
|
```
|
|
20
20
|
|
|
21
|
+
This document describes strict or explicitly delegated execution. `lean_work_unit_runner` normally stays in same-session phased execution with a compact ledger and targeted checks. It should enter portable delegation only when the user authorizes workers for a batch or a unit hits a strict-mode escalation trigger.
|
|
22
|
+
|
|
23
|
+
Prefer portable delegation over native threads or subagents when it satisfies the work. Portable delegation is one-shot, so the worker process exits after the report. Native thread or subagent transports are allowed only when the supervisor can record the native resource id and call the matching close operation after terminal report, timeout, blocker, cancellation, or invalid output.
|
|
24
|
+
|
|
21
25
|
The supervisor remains the only coordinator. Workers do not ask the human questions, choose final disposition, expand scope, approve plans, or talk to each other. If a worker needs a decision, it returns `BLOCKED` with a `blocking_question`; only the supervisor asks the user.
|
|
22
26
|
|
|
23
27
|
## Non-Goals
|
|
@@ -163,6 +167,7 @@ For git workspaces, the surface guard compares pre/post git status. Mutable role
|
|
|
163
167
|
| Repair expands scope | Reject unless the repair dossier explicitly allowed the new surfaces and criteria. |
|
|
164
168
|
| Units touch same surfaces | Run sequentially. Parallel delegation requires proven disjoint mutable surfaces. |
|
|
165
169
|
| Platform has no native subagents | Fine. Each role is a fresh one-shot CLI process. |
|
|
170
|
+
| Native subagent close is unavailable | Do not spawn it. Return `worker_resource_close_unavailable` and use portable delegation or same-session phased work only if intake allowed it. |
|
|
166
171
|
| Platform output differs | Platform output is not the contract. `WorkerReportV1` is the only supervisor input. |
|
|
167
172
|
| Platform cannot support a role safely | Adapter role is unsupported. Supervisor chooses another certified adapter or blocks. |
|
|
168
173
|
| Full support is claimed but one CLI is absent | `delegate-doctor --agent all --probe --require-pass` exits nonzero and names the missing adapter. |
|
package/docs/skill-reference.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
## `workflow-supervisor`
|
|
4
4
|
|
|
5
|
-
Coordinate explicit supervised or agent-loop workflows. It
|
|
5
|
+
Coordinate explicit supervised or agent-loop workflows with profile-based overhead. It starts by selecting `lean_work_unit_runner`, `strict_full_workflow`, or `planning_only`, then completes the intake needed for that profile before implementation, goal binding, worker delegation, or final disposition. The user must answer required intake items; the supervisor must not infer path, mode, delegation, final disposition, or boundaries from vague keywords. Lean mode is for large already-bounded work-unit backlogs: it keeps a compact ledger with unit id, source reference, scope, done signal, check, status, touched surfaces, and blockers, then executes one ready unit at a time with targeted checks and escalation gates. Strict mode creates a source-requirement coverage ledger and SPEC review gate before work units so controlling-source deliverables, roadmap phases, and exit criteria are either implemented, explicitly deferred, blocked, or marked non-material. In human-in-loop mode, the human can ask questions, request revisions, block, defer, or approve before execution. In autonomous goal mode, human clarification pauses resume from recorded workflow state after the answer updates only affected downstream artifacts. Strict mode can orchestrate named workers from dossiers through the portable delegate command or an approved native adapter. Native threads and subagents require a recorded native resource id plus a close result, such as `close_agent` for Codex subagents, before a worker is `closed`. Loading the skill itself does not spawn workers. It binds Codex goals only after complete intake and when the user or environment authorizes goal-oriented work, checks active goal state first, avoids unrelated active-goal collisions, and treats terminal blocked goals as history when resuming through workflow docs.
|
|
6
6
|
|
|
7
7
|
## `source-corpus`
|
|
8
8
|
|
package/docs/troubleshooting.md
CHANGED
|
@@ -23,6 +23,16 @@ Use `.workflow/GOAL-STATE.md` or a workflow continuation document. The superviso
|
|
|
23
23
|
|
|
24
24
|
Use `$workflow-docs` with a minimal artifact request. The skill must reject "create every document just in case."
|
|
25
25
|
|
|
26
|
+
## Large backlogs run slowly or exhaust memory
|
|
27
|
+
|
|
28
|
+
Use `lean_work_unit_runner` instead of `strict_full_workflow` when the source already contains clear work units and the user's priority is throughput. Keep one compact ledger with `id`, `source_ref`, `scope`, `done`, `check`, `status`, touched surfaces, and blockers. Run one unit at a time by default, avoid subagents unless explicitly authorized, avoid broad scans unless required for the current unit, and checkpoint by batch rather than rewriting full workflow docs after every unit.
|
|
29
|
+
|
|
30
|
+
Do not remove work units to make the process lean. If a unit cannot name its boundary, done signal, or targeted check, mark it `blocked` or escalate that unit to strict mode.
|
|
31
|
+
|
|
32
|
+
## Native subagents remain open after completion
|
|
33
|
+
|
|
34
|
+
Treat this as a lifecycle bug, not a cosmetic cleanup task. A terminal report or completed notification does not close a native Codex subagent. Record every native worker id in `WORKER-MAP.md`, call the native close action such as `close_agent` after the terminal report or blocker is captured, and block the final outcome if any native worker lacks a close result. Prefer one-shot portable delegation when it satisfies the work.
|
|
35
|
+
|
|
26
36
|
## Verification rubber-stamps the result
|
|
27
37
|
|
|
28
38
|
Use `$acceptance-matrix` for formal evidence rows. A PASS requires row-by-row evidence or explicit waiver evidence.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "workflow-supervisor",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "Portable workflow supervision skills for Codex, Claude Code, and generic agent workspaces.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -19,9 +19,15 @@
|
|
|
19
19
|
"skills",
|
|
20
20
|
"adapters",
|
|
21
21
|
"schemas",
|
|
22
|
-
"docs",
|
|
22
|
+
"docs/artifacts.md",
|
|
23
|
+
"docs/cli.md",
|
|
24
|
+
"docs/compatibility.md",
|
|
25
|
+
"docs/portable-delegation.md",
|
|
26
|
+
"docs/skill-reference.md",
|
|
27
|
+
"docs/troubleshooting.md",
|
|
23
28
|
"assets",
|
|
24
29
|
"bin",
|
|
30
|
+
"CHANGELOG.md",
|
|
25
31
|
"README.md",
|
|
26
32
|
"LICENSE"
|
|
27
33
|
],
|
|
@@ -28,11 +28,12 @@ Do not create goals for small direct tasks. A goal is the state container for op
|
|
|
28
28
|
|
|
29
29
|
## Policy Dimensions
|
|
30
30
|
|
|
31
|
+
- Profile: `lean_work_unit_runner`, `strict_full_workflow`, or `planning_only`; choose before heavy artifacts, goals, workers, or implementation.
|
|
31
32
|
- Intake: whether every required intake decision has an explicit user answer, and which unanswered items must be re-asked before any work can start.
|
|
32
33
|
- Execution path: autonomous_goal or human_in_loop, from completed intake only.
|
|
33
34
|
- Mode: sequential, parallel, staged parallel, or discovery-first, from completed intake only.
|
|
34
35
|
- Approval: none, before worker delegation, before implementation, before verification, before repair, before publication, before irreversible action, before each unit, or path-gated.
|
|
35
|
-
- Delegation orchestration: selected transport, adapter availability, naming scheme, start timing, supervisor checkpoint cadence, terminal report collection, and stop behavior when automated delegation is unavailable.
|
|
36
|
+
- Delegation orchestration: selected transport, adapter availability, naming scheme, start timing, supervisor checkpoint cadence, terminal report collection, native resource close behavior, and stop behavior when automated delegation is unavailable.
|
|
36
37
|
- Repair limit: maximum repair loops per unit.
|
|
37
38
|
- Budget: time, token, command, cost, or file-change limits.
|
|
38
39
|
- Escalation: when to ask the user, delegate to a specialist worker, or stop.
|
|
@@ -45,20 +46,32 @@ Do not create goals for small direct tasks. A goal is the state container for op
|
|
|
45
46
|
Use this default unless the task says otherwise:
|
|
46
47
|
|
|
47
48
|
```yaml
|
|
49
|
+
profile_selection: before goal creation, heavy planning, worker delegation, implementation, verification, repair, final disposition, publication, or irreversible action
|
|
50
|
+
profiles:
|
|
51
|
+
lean_work_unit_runner: large bounded backlog, pure work units, low-footprint direct execution, compact ledger, no default subagents
|
|
52
|
+
strict_full_workflow: ambiguous, high-risk, delegated, source-of-truth, security, external-service, publication, or broad interpretation work
|
|
53
|
+
planning_only: intake, scope review, sequencing, risks, and recommendations without implementation
|
|
48
54
|
intake_required_when: every supervisor invocation before goal creation, planning beyond intake, worker delegation, implementation, verification, repair, final disposition, publication, or irreversible action
|
|
49
55
|
intake_question_count: ask the complete intake packet first; on follow-up ask every unanswered or ambiguous item
|
|
50
|
-
required_intake_decisions: objective_and_source, execution_path, mode, delegation, final_disposition, mutation_boundaries, state_artifacts
|
|
56
|
+
required_intake_decisions: objective_and_source, profile, execution_path, mode, delegation, final_disposition, mutation_boundaries, state_artifacts
|
|
51
57
|
use_judgment_defaults: none; user must answer every required intake decision explicitly
|
|
52
|
-
keyword_shortcuts: forbidden
|
|
58
|
+
keyword_shortcuts: forbidden for path, mode, delegation, final disposition, and boundaries; profile may be selected only from explicit user intent plus controlling source
|
|
53
59
|
mode: from completed intake only
|
|
54
60
|
execution_path: from completed intake only
|
|
55
61
|
approval_gate: path-gated; complete intake before any path-specific plan; human approval for human_in_loop plans; explicit completed-intake authorization for autonomous_goal; explicit completed-intake authorization for irreversible or user-visible publication
|
|
56
62
|
repair_limit_per_unit: 2
|
|
57
63
|
parallel_allowed_when: units do not share mutable surfaces
|
|
58
|
-
worker_delegation_rule: after complete intake, path gate, concrete dossier, and supported
|
|
59
|
-
native_transport_rule: after complete intake, path gate,
|
|
64
|
+
worker_delegation_rule: strict mode after complete intake, path gate, concrete dossier, supported automated transport, and supported resource close; lean mode only after explicit authorization or escalation trigger
|
|
65
|
+
native_transport_rule: after complete intake, path gate, concrete dossier, and confirmed close operation when the environment exposes approved thread or subagent tools
|
|
60
66
|
worker_name_template: wf/<workflow-slug>/<unit-id>-<role>-<dossier-slug>
|
|
61
|
-
supervisor_checkpoint_cadence: after worker start, terminal report, repair ticket creation, re-verification, and final disposition
|
|
67
|
+
supervisor_checkpoint_cadence: after worker start, native resource id capture, terminal report, native resource close, repair ticket creation, re-verification, and final disposition
|
|
68
|
+
native_worker_lifecycle:
|
|
69
|
+
required_fields: worker_name, transport, native_resource_id, status, terminal_report, close_action, close_result
|
|
70
|
+
codex_close_action: close_agent
|
|
71
|
+
final_outcome_gate: blocked if any native worker lacks close_result
|
|
72
|
+
lean_checkpoint_cadence: after each unit ledger update, at user-selected batch size, on blocker, on risk escalation, and final outcome
|
|
73
|
+
lean_unit_readiness: id, source_ref, scope, done, check, status
|
|
74
|
+
lean_resource_gates: no unapproved subagents, no broad scans unless needed for current unit, one active unit by default, stop or ask when memory/process churn threatens throughput
|
|
62
75
|
final_disposition_policy: from completed intake only; if set to ask_at_end, stop and ask at final disposition
|
|
63
76
|
workflow_unit_blocked_after: first material blocker may stop the unit while the Codex goal remains active
|
|
64
77
|
codex_goal_blocked_after: same material blocker across 3 consecutive goal turns and no meaningful progress
|
|
@@ -88,11 +101,21 @@ Do not run units in parallel when they edit the same files, documents, datasets,
|
|
|
88
101
|
|
|
89
102
|
```yaml
|
|
90
103
|
workflow:
|
|
104
|
+
profile:
|
|
91
105
|
intake:
|
|
92
106
|
execution_path:
|
|
93
107
|
mode:
|
|
94
108
|
approval_gates:
|
|
95
109
|
delegation_policy:
|
|
110
|
+
native_worker_lifecycle:
|
|
111
|
+
required_close_action:
|
|
112
|
+
open_native_workers:
|
|
113
|
+
lean_policy:
|
|
114
|
+
ledger:
|
|
115
|
+
unit_readiness:
|
|
116
|
+
batch_checkpoint:
|
|
117
|
+
focused_check:
|
|
118
|
+
escalation_triggers:
|
|
96
119
|
repair_limit:
|
|
97
120
|
parallel_rules:
|
|
98
121
|
budgets:
|
|
@@ -61,11 +61,12 @@ For documentation work, start with `DOCUMENTATION-BRIEF.md` unless the user prov
|
|
|
61
61
|
## Artifact Selection
|
|
62
62
|
|
|
63
63
|
- `.workflow/WORKFLOW.md`: overall objective, policy, state, units, and next action.
|
|
64
|
+
- `.workflow/LEDGER.md`: compact lean-runner state for large bounded backlogs, with one row per work unit and targeted check evidence.
|
|
64
65
|
- `.workflow/SOURCE-CORPUS.md`: source map, authority ranking, contradictions, gaps.
|
|
65
66
|
- `.workflow/SPEC.md`: human-reviewable interpretation contract, requirement coverage, Q&A, and approval decision before final work units.
|
|
66
67
|
- `.workflow/WORK-UNITS.md`: decomposition and sequencing.
|
|
67
68
|
- `.workflow/DOSSIER.md`: delegation contract for one unit.
|
|
68
|
-
- `.workflow/WORKER-MAP.md`: worker names, roles, transports, dossiers, dependencies, start conditions, report status, and supervisor checkpoints.
|
|
69
|
+
- `.workflow/WORKER-MAP.md`: worker names, roles, transports, native resource ids, dossiers, dependencies, start conditions, report status, close actions, close results, and supervisor checkpoints.
|
|
69
70
|
- `.workflow/ACCEPTANCE-MATRIX.md`: verifiable done criteria.
|
|
70
71
|
- `.workflow/VERIFICATION-REPORT.md`: evidence-backed PASS/FAIL/BLOCKED report.
|
|
71
72
|
- `.workflow/REPAIR-TICKETS.md`: actionable repair tasks from verifier findings.
|
|
@@ -56,6 +56,39 @@ Stale Artifacts Invalidated:
|
|
|
56
56
|
## Next Action
|
|
57
57
|
```
|
|
58
58
|
|
|
59
|
+
## LEDGER.md
|
|
60
|
+
|
|
61
|
+
Use this for `lean_work_unit_runner` when the backlog is already bounded and the workflow needs high throughput with human-verifiable state.
|
|
62
|
+
|
|
63
|
+
```md
|
|
64
|
+
# Lean Work Unit Ledger
|
|
65
|
+
|
|
66
|
+
Profile: lean_work_unit_runner
|
|
67
|
+
Execution Path:
|
|
68
|
+
Mode:
|
|
69
|
+
Delegation:
|
|
70
|
+
Final Disposition:
|
|
71
|
+
Batch Checkpoint:
|
|
72
|
+
|
|
73
|
+
## Scope Contract
|
|
74
|
+
|
|
75
|
+
Objective:
|
|
76
|
+
Controlling Backlog Or Source:
|
|
77
|
+
Allowed Surfaces:
|
|
78
|
+
Forbidden Surfaces:
|
|
79
|
+
Escalation Triggers:
|
|
80
|
+
|
|
81
|
+
## Units
|
|
82
|
+
|
|
83
|
+
| ID | Source Ref | Scope | Done Signal | Check | Status | Touched Surfaces | Evidence | Blocker Or Next Action |
|
|
84
|
+
|---|---|---|---|---|---|---|---|---|
|
|
85
|
+
|
|
86
|
+
## Batch Checkpoints
|
|
87
|
+
|
|
88
|
+
| Batch | Units | Result | Checks | Human Review Needed | Next Action |
|
|
89
|
+
|---|---|---|---|---|---|
|
|
90
|
+
```
|
|
91
|
+
|
|
59
92
|
## SOURCE-CORPUS.md
|
|
60
93
|
|
|
61
94
|
```md
|
|
@@ -226,14 +259,16 @@ Notes:
|
|
|
226
259
|
```md
|
|
227
260
|
# Worker Map
|
|
228
261
|
|
|
229
|
-
| Worker Name | Role | Transport | Work Unit | Dossier | Start Condition | Dependencies | Status | Terminal Report |
|
|
230
|
-
|
|
262
|
+
| Worker Name | Role | Transport | Native Resource ID | Work Unit | Dossier | Start Condition | Dependencies | Status | Terminal Report | Close Action | Close Result |
|
|
263
|
+
|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
231
264
|
|
|
232
265
|
## Supervisor Checkpoints
|
|
233
266
|
|
|
234
267
|
## Blocked Workers
|
|
235
268
|
|
|
236
269
|
## Closed Workers
|
|
270
|
+
|
|
271
|
+
Closed means the terminal report has been consumed and any native thread or subagent resource has a recorded close result. For Codex subagents, record the `spawn_agent` id as Native Resource ID and `close_agent` as Close Action. A workflow with open native workers must remain BLOCKED until the close result is recorded.
|
|
237
272
|
```
|
|
238
273
|
|
|
239
274
|
## ACCEPTANCE-MATRIX.md
|
|
@@ -1,15 +1,77 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: workflow-supervisor
|
|
3
|
-
description: Coordinate supervised
|
|
3
|
+
description: Coordinate supervised workflows with profile-based overhead. Trigger whenever the user explicitly invokes workflow-supervisor, $workflow-supervisor, supervised workflow, lean work-unit runner, dossiers, work units, worker agents, handoffs, approval gates, durable resume, or workflow-state documentation. When explicitly invoked, first select the correct profile: lean_work_unit_runner for large already-bounded backlogs or low-footprint direct execution, strict_full_workflow for ambiguous/high-risk/source-of-truth/delegated work, or planning_only for intake and sequencing. Do not run strict ceremony just because the skill was named. When not explicitly invoked, use only for workflows with hard supervisor triggers such as multi-agent handoff, durable resume, high-risk verification, contradictory or missing sources, multi-unit scope, repair loops, approval gates, or workflow-state documentation.
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
# Workflow Supervisor
|
|
7
7
|
|
|
8
|
-
Use this skill as the coordinating spine for supervised
|
|
8
|
+
Use this skill as the coordinating spine for supervised work. The supervisor owns decomposition, execution profile selection, loop discipline, stop gates, optional worker-agent handoff quality, and outcome reporting. It may do source discovery, implementation, focused verification, and reporting itself in lean mode. In strict mode, implementation, verification, repair-ticket writing, and documentation must be treated as separate worker-agent responsibilities when an automated worker path is available. Native threads, subagents, or the portable delegate command are transports for those worker agents.
|
|
9
9
|
|
|
10
|
-
##
|
|
10
|
+
## Execution Profiles
|
|
11
11
|
|
|
12
|
-
When the user explicitly invokes `workflow-supervisor`, `$workflow-supervisor`, or says to use this skill, the workflow
|
|
12
|
+
When the user explicitly invokes `workflow-supervisor`, `$workflow-supervisor`, or says to use this skill, first classify the workflow profile before creating heavy artifacts, goals, worker plans, dossiers, or subagents.
|
|
13
|
+
|
|
14
|
+
Use `lean_work_unit_runner` when the source already contains bounded work units, tickets, issues, checklist rows, or backlog entries and the user's priority is throughput, low memory, direct execution, or many pure units. Lean mode is for "do the next unit" execution, not for interpreting a broad source of truth from scratch.
|
|
15
|
+
|
|
16
|
+
Use `strict_full_workflow` when the task is ambiguous, high-risk, source-of-truth driven, regulated, delegated to multiple workers, externally published, security-sensitive, cross-system, or missing clear work-unit boundaries.
|
|
17
|
+
|
|
18
|
+
Use `planning_only` when the user wants intake, backlog shaping, sequencing, risk review, or a plan without implementation.
|
|
19
|
+
|
|
20
|
+
If the profile is unclear after reading the user's request and controlling source, ask one profile question and stop. Do not default to strict ceremony merely because the skill was named.
|
|
21
|
+
|
|
22
|
+
### Lean Work Unit Runner
|
|
23
|
+
|
|
24
|
+
Lean mode optimizes for large-unit throughput while preserving non-ambiguity and human-verifiable state. It keeps work units as the backbone and removes per-unit ceremony that does not directly improve execution.
|
|
25
|
+
|
|
26
|
+
Lean mode requires exactly one upfront scope contract before the first unit starts:
|
|
27
|
+
|
|
28
|
+
- objective and controlling backlog/source
|
|
29
|
+
- selected profile: `lean_work_unit_runner`
|
|
30
|
+
- execution path: `autonomous_goal` or `human_in_loop`
|
|
31
|
+
- execution mode: usually `sequential`; parallel only for proven disjoint surfaces
|
|
32
|
+
- delegation: default `same_session_phased`; workers/subagents only with explicit authorization for a specific batch or risk
|
|
33
|
+
- final disposition and mutation boundaries
|
|
34
|
+
- state medium: one compact ledger, usually inline or `.workflow/LEDGER.md`
|
|
35
|
+
- batch size or checkpoint cadence for human review
|
|
36
|
+
|
|
37
|
+
Lean mode requires a backlog where each executable unit has:
|
|
38
|
+
|
|
39
|
+
```yaml
|
|
40
|
+
id:
|
|
41
|
+
source_ref:
|
|
42
|
+
scope:
|
|
43
|
+
done:
|
|
44
|
+
check:
|
|
45
|
+
status: pending | active | pass | fail | blocked | escalated
|
|
46
|
+
notes:
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
Do not start a lean unit unless its boundary and done signal are clear. If a unit lacks `scope`, `done`, or `check`, mark it `blocked` and ask for the smallest missing decision, or split it into smaller units. Do not hide ambiguity in notes.
|
|
50
|
+
|
|
51
|
+
Lean per-unit loop:
|
|
52
|
+
|
|
53
|
+
1. Select the next ready unit from the ledger.
|
|
54
|
+
2. Inspect only the files, artifacts, or source slices needed for that unit.
|
|
55
|
+
3. Apply the smallest implementation that satisfies the unit.
|
|
56
|
+
4. Run the unit's targeted check, or record the exact reason the check is blocked.
|
|
57
|
+
5. Update one ledger row with status, touched surfaces, check result, and residual risk if any.
|
|
58
|
+
6. Continue to the next ready unit until the batch checkpoint, blocker, resource gate, or final disposition.
|
|
59
|
+
|
|
60
|
+
Lean mode must not create per-unit SPEC files, full dossiers, worker maps, repair-ticket documents, or documenter passes by default. Use inline unit contracts and one compact ledger. Batch documentation and outcome reporting at checkpoints or final closeout.
|
|
61
|
+
|
|
62
|
+
Escalate a lean unit to `strict_full_workflow` or pause for human review when:
|
|
63
|
+
|
|
64
|
+
- source requirements conflict or are materially incomplete
|
|
65
|
+
- the unit touches broad architecture, security, data loss, credentials, production systems, billing, legal/compliance, public API contracts, migrations, or destructive operations
|
|
66
|
+
- the unit cannot name a targeted check or human-inspectable evidence
|
|
67
|
+
- multiple units unexpectedly touch the same shared surface and need re-sequencing
|
|
68
|
+
- repair repeats without new evidence
|
|
69
|
+
- the user asks for independent verification, subagents, PR, deploy, publish, or external-service action
|
|
70
|
+
- memory, process count, broad scans, or context churn threatens execution throughput
|
|
71
|
+
|
|
72
|
+
Lean verification is proportional. Use `focused-check` for the unit or batch. Use `independent-verifier` only when a risk trigger or user instruction justifies the extra cost. A lean PASS requires the ledger to show every completed unit's source reference, done signal, check or substitute evidence, and touched surfaces.
|
|
73
|
+
|
|
74
|
+
### Strict Full Workflow
|
|
13
75
|
|
|
14
76
|
Strict mode always requires:
|
|
15
77
|
|
|
@@ -22,13 +84,13 @@ Strict mode always requires:
|
|
|
22
84
|
7. A dossier for each implementation work unit before implementation begins.
|
|
23
85
|
8. An acceptance matrix or acceptance draft with evidence expectations before implementation begins.
|
|
24
86
|
9. A worker-agent plan with implementer, verifier, repair-author, and documenter agents.
|
|
25
|
-
10. A worker lifecycle record using `planned -> handed_off -> acknowledged -> reported -> verified -> closed`.
|
|
87
|
+
10. A worker lifecycle record using `planned -> handed_off -> acknowledged -> reported -> verified -> resource_closed -> closed`.
|
|
26
88
|
11. Verification labeled as `self-check`, `focused-check`, or `independent-verifier`.
|
|
27
89
|
12. A final disposition question or recorded completed-intake final disposition after verification.
|
|
28
90
|
|
|
29
|
-
Worker agents are mandatory when the environment provides worker, subagent, thread, or portable delegation tools. The supervisor must hand off implementation, verification, repair-authoring when needed, and documentation to separate agents with scoped dossiers and the required report schema. Run worker agents sequentially by default unless completed intake explicitly authorizes parallelism.
|
|
91
|
+
Worker agents are mandatory when strict mode is selected and the environment provides worker, subagent, thread, or portable delegation tools with a complete lifecycle: start, terminal report collection, and resource close. The supervisor must hand off implementation, verification, repair-authoring when needed, and documentation to separate agents with scoped dossiers and the required report schema. Run worker agents sequentially by default unless completed intake explicitly authorizes parallelism.
|
|
30
92
|
|
|
31
|
-
If the environment cannot create, message,
|
|
93
|
+
If the environment cannot create, message, delegate to, and close worker agents, record `worker_agent_unavailable` or `worker_resource_close_unavailable` and stop for the human decision unless completed intake explicitly selected `same_session_phased`. Do not silently collapse worker agents into same-session work.
|
|
32
94
|
|
|
33
95
|
Do not nest supervisors recursively. A worker agent that receives a supervisor-scoped dossier must perform its assigned role instead of spawning another supervisor layer unless the parent supervisor explicitly asks for a child supervisor.
|
|
34
96
|
|
|
@@ -141,12 +203,14 @@ When the human answers:
|
|
|
141
203
|
- Run the complete intake gate before goal creation, worker delegation, implementation, publication, or other irreversible action.
|
|
142
204
|
- Do not infer execution path, mode, delegation, final disposition, or boundaries from keywords, action verbs, or intent guesses.
|
|
143
205
|
- Classify the workflow as `autonomous_goal` or `human_in_loop` only from completed intake answers before delegating workers or beginning implementation.
|
|
144
|
-
- Explicit invocation always requires complete intake, work units, dossiers, worker-agent contracts, scoped handoffs, report schema, and verification
|
|
206
|
+
- Explicit invocation always requires profile selection before heavy planning. `strict_full_workflow` requires complete intake, work units, dossiers, worker-agent contracts, scoped handoffs, report schema, and verification. `lean_work_unit_runner` requires an upfront scope contract, bounded work units, a compact ledger, focused checks, and escalation gates instead of full per-unit ceremony.
|
|
145
207
|
- Preserve source-scope fidelity: do not translate controlling-source requirements into weaker proxy checks unless the user explicitly approves the narrower scope or waiver.
|
|
146
208
|
- Always produce a plan after complete intake. In `human_in_loop`, make it an approval packet and stop for approval. In `autonomous_goal`, make it an execution plan and continue only when the completed intake authorizes that path.
|
|
147
|
-
- Do not begin implementation until complete intake and the path gate are satisfied, at least one work unit exists, at least one concrete dossier exists, worker-agent contracts exist, and no stop gate applies.
|
|
209
|
+
- Do not begin strict implementation until complete intake and the path gate are satisfied, at least one work unit exists, at least one concrete dossier exists, worker-agent contracts exist, and no stop gate applies.
|
|
210
|
+
- Do not begin lean implementation until the scope contract is recorded, the backlog contains at least one ready unit, the compact ledger exists or can be kept inline, the current unit has source reference, scope, done signal, and check, and no escalation gate applies.
|
|
148
211
|
- Delegate workers only through an automated supported delegation transport after complete intake and the path gate authorize delegation. If no supported transport exists, use same-session phased mode only when intake allowed it; otherwise stop as `worker_agent_unavailable`.
|
|
149
212
|
- Do not start implementer, verifier, repair-author, or documenter workers before complete intake and the path gate are satisfied; role-specific start conditions are additional gates after that.
|
|
213
|
+
- Do not use native thread or native subagent workers unless the environment exposes a close operation for that transport. For Codex subagents, the supervisor must call `close_agent` for every `spawn_agent` id after the worker reaches a terminal report, times out, blocks, fails validation, is cancelled, or is no longer needed.
|
|
150
214
|
- Keep roles separate: implementers implement, verifiers verify, repair authors write tickets, documenters update workflow artifacts, and the supervisor coordinates.
|
|
151
215
|
- Treat same-session verification as a self-check, not independent verification. Separate verifier-agent verification may be labeled `independent-verifier` only when genuinely performed by a separate worker agent or thread.
|
|
152
216
|
- Prefer explicit PASS/FAIL/BLOCKED states over soft completion language.
|
|
@@ -165,11 +229,26 @@ Treat these as distinct mechanisms:
|
|
|
165
229
|
- Skill: reusable instructions loaded into the current agent.
|
|
166
230
|
- Worker: a role-scoped automated execution run that receives one dossier and returns one terminal report.
|
|
167
231
|
- Portable worker delegation: the package helper command, `workflow-supervisor delegate --agent <agent> --role <role> --unit <unit-id> --cwd <workspace> --dossier <path>`, which invokes an installed platform CLI and normalizes its report.
|
|
168
|
-
- Native thread or subagent: an environment-specific transport a worker adapter may use when it
|
|
232
|
+
- Native thread or subagent: an environment-specific transport a worker adapter may use only when it can also close the native worker resource after use.
|
|
169
233
|
- Same-session phased mode: the current agent performs roles sequentially. Verification in this mode is a self-check, not independent verification.
|
|
170
234
|
|
|
171
235
|
Start workers only after complete intake and the path gate are satisfied, at least one work unit exists, a concrete dossier exists, the loop policy authorizes delegation, and the environment exposes an automated supported transport. If environment rules require explicit user approval for user-visible native thread creation, obtain it before using that transport. Do not use manual copy/paste handoff as the primary path. If automated delegation is unavailable, mark the unit `worker_agent_unavailable` unless completed intake explicitly selected same-session phased work.
|
|
172
236
|
|
|
237
|
+
### Native Worker Resource Lifecycle
|
|
238
|
+
|
|
239
|
+
Logical worker completion is not enough for native thread or subagent transports. A worker is not `closed` until its native resource has also been released.
|
|
240
|
+
|
|
241
|
+
For every native worker:
|
|
242
|
+
|
|
243
|
+
1. Record the native resource id immediately after creation, such as the Codex `agent_id` returned by `spawn_agent`, in the worker map.
|
|
244
|
+
2. Record transport, worker name, role, work unit, dossier, start time, and close requirement before waiting on the worker.
|
|
245
|
+
3. Collect one terminal report or mark the worker `BLOCKED` because of timeout, invalid output, unavailable adapter, cancellation, or missing evidence.
|
|
246
|
+
4. Call the native close operation as soon as the terminal report or blocker is captured. For Codex subagents, call `close_agent` with the recorded `agent_id`.
|
|
247
|
+
5. Record the close result and previous native status. Only then move the worker to `resource_closed` and then `closed`.
|
|
248
|
+
6. Before final workflow outcome, audit the worker map. If any native worker has no close result, final status is `BLOCKED` with reason `open_native_worker`.
|
|
249
|
+
|
|
250
|
+
Native worker ids are resource handles, not evidence. Do not use a completed worker report, a subagent notification, or a wait result as a substitute for closing the native worker. If the close operation fails or is unavailable, stop and report `worker_resource_close_failed` or `worker_resource_close_unavailable`; do not keep spawning replacement workers.
|
|
251
|
+
|
|
173
252
|
## Worker Report Schema
|
|
174
253
|
|
|
175
254
|
Every worker report back to the supervisor must use this schema:
|
|
@@ -201,6 +280,7 @@ Do not use keywords to skip intake. Words such as "autonomous", "agent loop", "w
|
|
|
201
280
|
Required intake decisions:
|
|
202
281
|
|
|
203
282
|
- Objective and source: what artifact, spec, repo path, document, ticket, or source set controls the work.
|
|
283
|
+
- Profile: `lean_work_unit_runner`, `strict_full_workflow`, or `planning_only`.
|
|
204
284
|
- Execution path: `autonomous_goal` or `human_in_loop`.
|
|
205
285
|
- Execution mode: `sequential`, `parallel_where_safe`, or `staged_parallel`.
|
|
206
286
|
- Delegation: `automated_worker_delegation`, `native_threads_or_subagents_if_available`, or `same_session_phased`.
|
|
@@ -215,53 +295,64 @@ Use this question shape for the first intake ask:
|
|
|
215
295
|
```text
|
|
216
296
|
Before I start the supervisor loop, answer every intake item:
|
|
217
297
|
1. Objective and source: what artifact, spec, repo path, document, ticket, or source set controls the work?
|
|
218
|
-
2.
|
|
219
|
-
3.
|
|
220
|
-
4.
|
|
221
|
-
5.
|
|
222
|
-
6.
|
|
223
|
-
7.
|
|
298
|
+
2. Profile: lean_work_unit_runner, strict_full_workflow, or planning_only?
|
|
299
|
+
3. Execution path: autonomous_goal or human_in_loop?
|
|
300
|
+
4. Mode: sequential, parallel where safe, or staged parallel?
|
|
301
|
+
5. Delegation: same-session phased, automated worker delegation, or native threads/subagents if available?
|
|
302
|
+
6. Final disposition: keep local, open PR, push main, deploy/publish, or ask at the end?
|
|
303
|
+
7. Boundaries: may I install dependencies, call external services, use credentials, or only edit local files?
|
|
304
|
+
8. State artifacts: compact ledger, `.workflow/` docs, another artifact directory, or inline state?
|
|
224
305
|
```
|
|
225
306
|
|
|
226
307
|
If the user answers only some intake items, ask only the unanswered or ambiguous item(s) again and stop. If the user says "use your judgment", treat that item as unanswered; do not substitute defaults. Continue prompting until every required intake decision has an explicit user answer.
|
|
227
308
|
|
|
228
|
-
Treat `autonomous_goal`, PR creation, direct push, deploy, publication, paid operations, production data changes, and credential use as satisfied only by completed intake answers, not by keywords elsewhere in the prompt.
|
|
309
|
+
Treat `strict_full_workflow`, `autonomous_goal`, PR creation, direct push, deploy, publication, paid operations, production data changes, and credential use as satisfied only by completed intake answers or an explicit profile selection, not by vague keywords elsewhere in the prompt.
|
|
229
310
|
|
|
230
311
|
Negative example: "Using Workflow Supervisor, generate an API and create the project" is not autonomous authorization and is not complete intake. It names the supervisor and objective, but leaves required intake decisions unresolved. Ask the complete intake packet and stop before implementation.
|
|
231
312
|
|
|
232
313
|
## Supervisor Loop
|
|
233
314
|
|
|
234
315
|
1. Run the complete intake gate. Record explicit user answers. If any required intake answer is missing, vague, or delegated to judgment, ask for the unresolved item(s) and stop.
|
|
235
|
-
2. Restate the objective, constraints, non-goals, known sources, and unknowns from the completed intake.
|
|
316
|
+
2. Restate the selected profile, objective, constraints, non-goals, known sources, and unknowns from the completed intake.
|
|
236
317
|
3. Bind or reconcile the Codex goal only after complete intake and only when no unrelated active goal prevents binding.
|
|
237
|
-
4.
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
318
|
+
4. If the profile is `lean_work_unit_runner`, run the lean loop:
|
|
319
|
+
- Confirm the source contains bounded work units or create a short upfront backlog contract. If not possible, pause for a decision or switch to `planning_only` or `strict_full_workflow`.
|
|
320
|
+
- Create or select one compact ledger instead of full workflow docs.
|
|
321
|
+
- Verify each ready unit has `id`, `source_ref`, `scope`, `done`, `check`, and `status`.
|
|
322
|
+
- Present a concise batch plan in `human_in_loop`, or continue in `autonomous_goal` when intake permits it.
|
|
323
|
+
- Execute one unit at a time with targeted inspection, smallest patch, focused check, ledger update, and checkpoint cadence.
|
|
324
|
+
- Escalate only the affected unit or batch when a strict-mode trigger appears; do not convert the whole backlog to strict mode unless the source contract is invalid.
|
|
325
|
+
- Finish with a compact outcome naming units completed, blocked, failed, escalated, checks, skipped checks, residual risks, and final disposition.
|
|
326
|
+
5. If the profile is `planning_only`, stop after source grounding, backlog shape, risks, recommended profile, and approval questions. Do not implement.
|
|
327
|
+
6. If the profile is `strict_full_workflow`, continue the strict loop below.
|
|
328
|
+
7. Build or request a source corpus map. Use `$source-corpus` when source authority, freshness, or contradictions matter.
|
|
329
|
+
8. Create the source-requirement coverage ledger. If any material source requirement cannot be classified, mapped to work, or explicitly deferred, stop and ask for the missing scope decision.
|
|
330
|
+
9. Create the SPEC review packet or `.workflow/SPEC.md` from the source corpus and coverage ledger.
|
|
331
|
+
10. Run the SPEC Q&A gate. In `human_in_loop`, stop until the human asks questions, receives answers or revisions, and explicitly approves the SPEC. In `autonomous_goal`, continue only when no blocking questions remain and approval is not required by intake.
|
|
332
|
+
11. Split the objective into bounded work units from the approved or non-blocked SPEC and coverage ledger. Use `$work-unit` for ambiguous or multi-phase goals. If the task is tiny and the ledger has no deferred material requirements, create exactly one work unit named `WU-001`.
|
|
333
|
+
12. Choose a loop policy before starting work: sequential or parallel, retry limits, approval gates, budgets, goal update cadence, and blocker rules. Use `$loop-policy` when the policy is not obvious.
|
|
334
|
+
13. Build dossiers for the first implementation units and any planned verification, repair, or documentation workers. Use `$dossier-builder` when delegating work to another agent or when the task has boundaries.
|
|
335
|
+
14. Assign worker roles with explicit allowed and forbidden behavior. Use `$worker-roles` for multi-agent, native-thread, or portable-worker work.
|
|
336
|
+
15. Select the execution path:
|
|
246
337
|
- `human_in_loop`: use when selected in completed intake or when a higher-priority rule requires human approval after intake.
|
|
247
338
|
- `autonomous_goal`: use only when selected in completed intake and no higher-priority rule requires human approval.
|
|
248
|
-
|
|
249
|
-
|
|
339
|
+
16. If `.workflow/` artifacts will be used in a Git-backed codebase, ensure `.gitignore` contains `.workflow/` before writing them.
|
|
340
|
+
17. Present the path-specific plan:
|
|
250
341
|
- `human_in_loop`: approval packet with plan, work units, worker delegation plan, approval gates, stop gates, and first dossiers. Stop until the human approves or revises it.
|
|
251
342
|
- `autonomous_goal`: execution plan with the same contents plus autonomous boundaries, allowed actions, stop gates, repair limits, and final disposition policy. Continue after recording it only when complete intake authorized that path.
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
343
|
+
18. After the path gate is satisfied, delegate named workers from the worker delegation plan through the selected automated transport. Send each worker only its role, dossier, sources, acceptance rows, stop gates, and report schema. For native threads or subagents, record the native resource id immediately and confirm a close operation exists before starting more workers.
|
|
344
|
+
19. Collect one terminal report from each worker. If a worker asks a human-facing question, convert it to `BLOCKED` and have the supervisor ask the user only when the path policy permits. For native threads or subagents, close the native resource after the report or blocker is captured.
|
|
345
|
+
20. Verify independently where possible. Use `$acceptance-matrix` to map every requirement to evidence. Start verifier workers only after the relevant implementer report is available.
|
|
346
|
+
21. If verification FAILs, convert findings into repair tickets and route them to a repair-author or implementer repair worker. Do not expand scope during repair.
|
|
347
|
+
22. Re-run verification after repairs. Continue only until PASS, BLOCKED, repair limit, or path stop.
|
|
348
|
+
23. Start documenter workers only after source, implementation, verification, or repair evidence exists, unless the documenter is explicitly creating planning state.
|
|
349
|
+
24. If verification BLOCKs, record the resume checkpoint, report the blocker, and stop or ask for the missing decision. When the human answers, use Resume After Human Decision.
|
|
350
|
+
25. Use `$workflow-docs` to create or refresh reusable Markdown artifacts under `<workspace>/.workflow/` when the workflow must persist across context loss, agents, or sessions.
|
|
351
|
+
26. Audit skipped checks, residual risks, future work, and next recommended actions against the source-requirement coverage ledger. If any material source requirement appears there without an explicit user deferral or waiver, mark the workflow FAIL/BLOCKED and create more work units or ask for a scope decision.
|
|
352
|
+
27. When all material acceptance rows are PASS or waived, apply the final disposition policy:
|
|
262
353
|
- `human_in_loop`: use the completed intake final disposition; if it is `ask_at_end`, ask the human to choose PR, push main, or keep local.
|
|
263
354
|
- `autonomous_goal`: use the completed intake final disposition. If it is `ask_at_end`, stop and ask before taking any final disposition action.
|
|
264
|
-
|
|
355
|
+
28. Finish with an outcome report that names profile, execution path, goal status, sources, SPEC decision when strict, coverage or ledger disposition, work units, delegated workers or same-session execution, native worker close status, checks, skipped checks, residual risks, final disposition decision, and next action.
|
|
265
356
|
|
|
266
357
|
## Execution Paths
|
|
267
358
|
|
|
@@ -269,7 +360,9 @@ Negative example: "Using Workflow Supervisor, generate an API and create the pro
|
|
|
269
360
|
|
|
270
361
|
Use `human_in_loop` when the completed intake selects it, or when a higher-priority rule requires human approval after intake. If the user has not answered the execution-path intake item, stop and ask for that answer instead of inferring a path.
|
|
271
362
|
|
|
272
|
-
|
|
363
|
+
In `lean_work_unit_runner`, the first review deliverable is the scope contract plus compact ledger and batch checkpoint policy. Stop for approval before the first batch unless the user explicitly selected autonomous execution.
|
|
364
|
+
|
|
365
|
+
In `strict_full_workflow`, the first review deliverable after source coverage is the SPEC review packet, not implementation. After the SPEC Q&A gate is approved, the supervisor presents the implementation approval packet. The approval packet must include:
|
|
273
366
|
|
|
274
367
|
- objective and non-goals
|
|
275
368
|
- source corpus summary and gaps
|
|
@@ -298,6 +391,8 @@ Use `autonomous_goal` only when the completed intake selects it. Phrases such as
|
|
|
298
391
|
- stop gates, repair limits, budgets, and escalation rules
|
|
299
392
|
- final disposition policy: `open_pr_when_green`, `push_main_when_green`, or `keep_local_when_green`
|
|
300
393
|
|
|
394
|
+
For `lean_work_unit_runner`, replace SPEC, coverage-ledger, and worker-delegation details with the scope contract, compact ledger path, unit readiness fields, batch checkpoint cadence, resource gates, focused-check policy, and strict-mode escalation triggers.
|
|
395
|
+
|
|
301
396
|
The final disposition must come from the completed intake. Direct push to the main branch, PR creation, deploy, publication, paid operations, production data changes, credential use, and destructive operations require explicit answers in the relevant intake fields.
|
|
302
397
|
|
|
303
398
|
Even in `autonomous_goal`, stop and ask when any required intake answer is missing or ambiguous, required sources are missing, acceptance cannot be verified, a worker needs scope expansion, an irreversible action lacks intake authorization, or higher-priority instructions require approval.
|
|
@@ -306,7 +401,7 @@ When `autonomous_goal` stops for a human decision, it should usually leave the C
|
|
|
306
401
|
|
|
307
402
|
## Portable Worker Delegation
|
|
308
403
|
|
|
309
|
-
After the path gate is satisfied, use the selected automated worker transport. The portable default is the package helper:
|
|
404
|
+
After the path gate is satisfied, use the selected automated worker transport. Prefer the portable delegate path when it satisfies the work because it is one-shot and does not leave a native thread or subagent resource open. The portable default is the package helper:
|
|
310
405
|
|
|
311
406
|
```text
|
|
312
407
|
workflow-supervisor delegate --agent <agent> --role <role> --unit <unit-id> --cwd <workspace> --dossier <path>
|
|
@@ -320,7 +415,7 @@ workflow-supervisor validate-dossier <path> --role <role> --unit <unit-id> --jso
|
|
|
320
415
|
|
|
321
416
|
If the dossier does not pass `DossierV1` validation, do not start the worker. Create a discovery dossier, ask for the missing decision, or mark the unit BLOCKED.
|
|
322
417
|
|
|
323
|
-
Adapters may use native threads, native subagents, or one-shot CLI execution underneath, but the supervisor consumes only the normalized worker report. Use `workflow-supervisor delegate-doctor --agent <agent> --probe` to test the installed local adapter before relying on it for a workflow. If automated delegation is unavailable, mark execution as `worker_agent_unavailable` unless completed intake selected `same_session_phased`.
|
|
418
|
+
Adapters may use native threads, native subagents, or one-shot CLI execution underneath, but the supervisor consumes only the normalized worker report plus the transport lifecycle result. Use `workflow-supervisor delegate-doctor --agent <agent> --probe` to test the installed local adapter before relying on it for a workflow. If automated delegation is unavailable, mark execution as `worker_agent_unavailable` unless completed intake selected `same_session_phased`. If native delegation is available but native close is unavailable, mark execution as `worker_resource_close_unavailable` and choose portable delegation or same-session phased only when intake permits it.
|
|
324
419
|
|
|
325
420
|
Name workers deterministically from the workflow, unit, role, and dossier:
|
|
326
421
|
|
|
@@ -342,7 +437,7 @@ Use one worker per role per work unit unless the loop policy explicitly allows b
|
|
|
342
437
|
- kickoff: role, dossier, sources, acceptance rows, stop gates, report schema
|
|
343
438
|
- checkpoint: request status, blockers, or clarification without expanding scope
|
|
344
439
|
- repair delegation: failed rows, verifier findings, allowed repair surfaces, checks
|
|
345
|
-
- closeout: collect terminal report and confirm no further action is expected
|
|
440
|
+
- closeout: collect terminal report, close any native worker resource, and confirm no further action is expected
|
|
346
441
|
|
|
347
442
|
Workers must not ask the human questions directly, choose final disposition, approve plans, expand scope, or message each other. They return `PASS`, `FAIL`, or `BLOCKED` using the assigned report schema. The supervisor routes blockers, repairs, and human questions.
|
|
348
443
|
|
|
@@ -379,10 +474,13 @@ If any item is unknown and material, stop and ask for the missing decision or ma
|
|
|
379
474
|
|
|
380
475
|
Stop when:
|
|
381
476
|
|
|
477
|
+
- the profile is missing or unclear and cannot be selected from explicit user intent plus controlling source
|
|
382
478
|
- any required intake answer is missing, vague, delegated to judgment, or contradicted by another intake answer
|
|
383
479
|
- source authority cannot be established
|
|
384
480
|
- sources contradict each other on a material requirement
|
|
385
481
|
- the requested scope cannot fit into a bounded work unit
|
|
482
|
+
- `lean_work_unit_runner` is selected but the backlog lacks clear unit ids, source references, boundaries, done signals, or targeted checks
|
|
483
|
+
- `lean_work_unit_runner` finds a strict-mode risk trigger and the user has not authorized escalation, deferral, or a narrower unit
|
|
386
484
|
- the coverage ledger is missing, incomplete, or contains material requirements classified as future work without explicit user deferral
|
|
387
485
|
- human-in-loop SPEC approval is missing, marked Needs Revision, marked Blocked, or has unanswered Q&A
|
|
388
486
|
- a human decision was answered but affected downstream coverage, SPEC, work units, acceptance, dossiers, or verification have not been refreshed
|
|
@@ -395,6 +493,7 @@ Stop when:
|
|
|
395
493
|
- the selected path is `autonomous_goal` but it was inferred from prompt wording instead of a completed intake answer
|
|
396
494
|
- an irreversible action is requested without explicit authorization in the completed intake
|
|
397
495
|
- a worker asks to expand scope without supervisor or human approval
|
|
496
|
+
- a native thread or subagent worker has no recorded close result
|
|
398
497
|
- final verification is not green and no waiver evidence exists
|
|
399
498
|
- residual risks, skipped checks, future work, or next actions contain unimplemented material source requirements
|
|
400
499
|
|
|
@@ -403,18 +502,20 @@ Stop when:
|
|
|
403
502
|
Report:
|
|
404
503
|
|
|
405
504
|
- Status: PASS, FAIL, BLOCKED, or PARTIAL
|
|
505
|
+
- Profile: lean_work_unit_runner, strict_full_workflow, or planning_only
|
|
406
506
|
- Execution path: autonomous_goal or human_in_loop
|
|
407
507
|
- Goal status and whether a Codex goal was created, reused, skipped, completed, or blocked
|
|
408
508
|
- Objective handled
|
|
409
509
|
- Sources used and gaps
|
|
410
510
|
- SPEC status, Q&A summary, and human decision or autonomous approval policy
|
|
411
511
|
- Source-requirement coverage ledger summary, including deferred or blocked material requirements
|
|
412
|
-
- Work units completed or remaining
|
|
512
|
+
- Work units completed, blocked, failed, escalated, or remaining
|
|
513
|
+
- Compact ledger path or inline ledger summary when in lean mode
|
|
413
514
|
- Approval question id and whether `WAITING_FOR_HUMAN -> ACTIVE` occurred
|
|
414
515
|
- Human decision resume status, affected artifacts, and whether stale downstream artifacts were invalidated
|
|
415
516
|
- Dossiers created or missing
|
|
416
517
|
- Workers delegated, blocked, unavailable, or skipped
|
|
417
|
-
- Worker lifecycle status for each role
|
|
518
|
+
- Worker lifecycle status for each role, including native resource ids and close results when native threads or subagents were used
|
|
418
519
|
- Verification evidence
|
|
419
520
|
- Repairs performed or recommended
|
|
420
521
|
- Checks run and skipped
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
interface:
|
|
2
2
|
display_name: "Workflow Supervisor"
|
|
3
|
-
short_description: "Run
|
|
4
|
-
default_prompt: "Use $workflow-supervisor to
|
|
3
|
+
short_description: "Run lean, strict, or planning-only supervised workflows"
|
|
4
|
+
default_prompt: "Use $workflow-supervisor to select the execution profile first: lean_work_unit_runner for large bounded backlogs and low-footprint direct execution, strict_full_workflow for ambiguous/high-risk/delegated work, or planning_only for sequencing without implementation. Ask required intake questions and stop until the user explicitly answers all missing items. Do not infer path, mode, delegation, final disposition, or boundaries from vague keywords. In lean mode, keep work units and a compact ledger, avoid subagents unless explicitly authorized, run targeted checks, and escalate unclear or risky units. In strict mode, create a source-requirement coverage ledger and SPEC review gate before work units, preserve source requirements in acceptance rows, and do not hide unimplemented material requirements in residual risks or future work. Prefer one-shot portable delegation when it satisfies the work. If native threads or subagents are used, record each native resource id, call the native close action such as close_agent after terminal report or blocker capture, and block final outcome if any native worker lacks a close result."
|
|
5
5
|
|
|
6
6
|
policy:
|
|
7
7
|
allow_implicit_invocation: false
|