You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -75,6 +75,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
75
75
-`brigade handoff list/show/archive` for local Memory Handoff draft queue visibility, stale or invalid draft health, and reviewed archive records without running the ingestor.
76
76
-`brigade handoff runs`, `run-show`, and `reconcile` for local handoff ingestion receipt visibility, draft outcome reconciliation, and archive outcome metadata without running the ingestor.
77
77
-`brigade work review init/plan/run/runs/show/import-findings/findings/finding-show/closeout` for explicit local multi-harness code review producers, receipts, normalized findings, imported finding resolution, local closeout records, and `code-review` work inbox imports without automatic fixes or remote mutation.
78
+
-`brigade work verify plan/run/runs/show` and `brigade work closeout <session-id-or-latest>` for local verification receipts and work closeout records that collect task acceptance, test command results, scanner sweep status, code review closeout state, handoff draft status, and session evidence without CI or remote mutation.
78
79
-`brigade work backup init/status/doctor/import-issues` for read-only local backup health summaries and `backup-health` inbox imports.
79
80
- Backup health checks for stale snapshots, failed or stale checks, failed or stale prunes, missing summaries, overdue restore rehearsals, and unsafe private summary fields.
80
81
-`brigade tools init/list/show/search/describe/contracts/call plan/call queue/call list/call show/call approve/call reject/call hold/call run/runtime/policy/plan/apply/doctor/import-issues`, plus `brigade tools run list/show/latest/replay` and `brigade tools checkpoint list/show/approve/reject/resume`, for portable tool, slash command, skill, superpower, script, and MCP catalog discovery plus explicit projection writes, read-only call planning, local call approval review, explicit approved script and local MCP execution, run history inspection, replay review, checkpointed resume, runtime supervision, and host-local execution policy.
Copy file name to clipboardExpand all lines: README.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -199,6 +199,11 @@ brigade work review import-findings <run-id>
199
199
brigade work review findings
200
200
brigade work review finding-show <finding-id-or-import-id>
201
201
brigade work review closeout latest
202
+
brigade work verify plan
203
+
brigade work verify run
204
+
brigade work verify runs
205
+
brigade work verify show <run-id>
206
+
brigade work closeout latest
202
207
brigade work sweep
203
208
brigade work sweep --all
204
209
brigade work sweeps
@@ -515,6 +520,15 @@ Manual session commands:
515
520
-`brigade work end --note "what happened"` closes the active session and writes `end.md`.
516
521
-`brigade work end --handoff` also writes a Memory Handoff.
517
522
523
+
Work verification and closeout commands:
524
+
525
+
-`brigade work verify plan` previews the local verification commands and current evidence snapshot without running anything.
526
+
-`brigade work verify run` executes explicit local verification commands without a shell and writes receipts under `.brigade/work/verify-runs/`.
527
+
-`brigade work verify runs` and `brigade work verify show <run-id>` inspect local verification receipts, command exit codes, summaries, and log paths.
528
+
-`brigade work closeout <session-id-or-latest>` writes a local closeout receipt under `.brigade/work/closeouts/` that collects task acceptance, latest verification, scanner sweep status, code review closeout state, handoff draft status, and session evidence.
529
+
530
+
Verification and closeout are local gates. Brigade does not mutate CI, GitHub, reviewers, scanner promotions, handoff ingestion, daemons, or schedulers. Verification commands run only when explicitly requested.
531
+
518
532
### Memory And Bootstrap Health
519
533
520
534
Memory and bootstrap readiness are part of the same operating-system health story.
Copy file name to clipboardExpand all lines: ROADMAP.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -42,6 +42,7 @@ Goal: make Brigade a safe target for local automations that discover useful work
42
42
- Connect local handoff ingestor outcomes back to draft review state. Status: implemented with normalized receipts under `.brigade/handoffs/ingest-runs/`, `brigade handoff runs`, `run-show`, `reconcile`, ingestion status in draft list/show, archive outcome metadata, and daily-loop warnings for stale unreconciled drafts, without running the ingestor.
43
43
- Run explicit multi-harness code review producers and route findings through the scanner inbox. Status: implemented with gitignored `.brigade/reviews.toml`, `brigade work review`, local receipts under `.brigade/reviews/runs/`, normalized `code-review` findings, daily brief surfacing, and work doctor checks, without automatic fixes or remote mutation.
44
44
- Close out imported review findings against downstream work. Status: implemented with `brigade work review findings`, `finding-show`, `closeout`, source-fingerprint re-review detection, task review evidence, and daily-loop warnings for unclosed review runs.
45
+
- Close out completed work against local verification evidence. Status: implemented with `brigade work verify plan/run/runs/show` and `brigade work closeout`, collecting task acceptance, test command receipts, scanner sweep state, code review closeout state, handoff draft status, and session evidence without CI or remote mutation.
Brigade can write local verification receipts and work closeout records for completed work sessions. This gives the operator one reviewable answer for task acceptance, test command results, scanner sweep state, code review closeout state, handoff draft state, and session evidence.
4
+
5
+
## Commands
6
+
7
+
```bash
8
+
brigade work verify plan
9
+
brigade work verify run
10
+
brigade work verify run --command "PYTHONPATH=src python3 -m pytest -q"
11
+
brigade work verify runs
12
+
brigade work verify show <run-id>
13
+
brigade work closeout latest
14
+
brigade work closeout <session-id>
15
+
```
16
+
17
+
`verify plan` inspects the repo and proposes local verification commands. It recognizes Python test layouts and package.json projects, and it reports blockers without running anything.
18
+
19
+
`verify run` executes only explicit local commands, directly with `shell=False`. It supports simple leading environment assignments such as `PYTHONPATH=src`, rejects high-risk shell-like commands, captures stdout and stderr logs locally, and writes a receipt under:
20
+
21
+
```text
22
+
.brigade/work/verify-runs/
23
+
```
24
+
25
+
`verify runs` and `verify show` inspect those receipts.
26
+
27
+
`work closeout` writes a closeout record under:
28
+
29
+
```text
30
+
.brigade/work/closeouts/
31
+
```
32
+
33
+
The closeout includes the selected work session, task acceptance criteria when present, latest verification receipt, latest scanner sweep state, code review closeout state, handoff draft queue state, and blockers. It also stores a compact closeout reference on the session `session.json`.
34
+
35
+
## Ready State
36
+
37
+
A closeout is ready when:
38
+
39
+
- the work session is ended
40
+
- the latest verification receipt completed
41
+
- the consumed task has acceptance criteria when task evidence is present
42
+
- the latest scanner sweep has no unresolved review issue
43
+
- code review has no unclosed review run and no unresolved imported finding
44
+
- handoff draft health has no open issue
45
+
46
+
Blocked closeouts are still written, so the operator has a local record of what remains.
47
+
48
+
## Boundary
49
+
50
+
Verification and closeout are local and explicit. Brigade does not mutate CI, GitHub, reviewers, scanner imports, handoff drafts, canonical memory, daemons, schedulers, or remotes. Verification commands run only when the operator asks for `brigade work verify run`.
0 commit comments