Standardized Delivery
Run one bounded delivery through Wayfinder (only when fog warrants it), specification,
tracer-bullet tickets, isolated implementation, and independent review.
Start
Confirm the request explicitly matches one trigger in the description. A normal request
to implement, fix, review, plan, or orchestrate is outside this Skill.
Read references/workflow-contract.md.
Confirm HERDR_ENV=1 and run the workflow's doctor command.
Capture the delivery goal in an ignored UTF-8 Markdown file under
.orchestrator/requests/. Preserve requirements, targets, and explicit authority, but do
not copy secrets into it.
Run:
PYTHONPATH=src python3 -m herdr_orchestrator deliver \
--workflow workflows/multi-harness.toml \
--goal-file .orchestrator/requests/<goal>.md
Add controller, worker, tracker, Wayfinder, concurrency, or review overrides only when
the user supplied them. The TOML defaults are the normal path.
Stop
- Exit
0: report the integration branch and commit, ticket references, review rounds, and
runtime artifact root. The command does not push, merge into the user's branch, or deploy.
- Exit
3: read references/authority.md, report the escalation
category and artifact root, then wait for the user.
- Any other non-zero exit: read
references/recovery.md, report
the stable error, failed stage, and preserved worktrees. Never claim partial work succeeded.
Completion means every implementation ticket has a validated receipt and is closed, all
commits are merged into the isolated integration branch, and the final Standards and Spec
review has no accepted must-fix finding after at most two repair rounds.
1---2name: standardized-delivery3description: Run the opt-in principal-proxy engineering pipeline only when the user explicitly invokes /standardized-delivery, /matt-workflow, or /wayfinder-delivery, or uses one of these exact phrases as a requested workflow: “标准化交付”, “完整工程流程”, “Matt workflow”, “Pocock workflow”, “Wayfinder 全流程”, “自主交付”. Ordinary coding requests never trigger it.4---56# Standardized Delivery78Run one bounded delivery through Wayfinder (only when fog warrants it), specification,9tracer-bullet tickets, isolated implementation, and independent review.1011## Start12131. Confirm the request explicitly matches one trigger in the description. A normal request14 to implement, fix, review, plan, or orchestrate is outside this Skill.152. Read [`references/workflow-contract.md`](references/workflow-contract.md).163. Confirm `HERDR_ENV=1` and run the workflow's `doctor` command.174. Capture the delivery goal in an ignored UTF-8 Markdown file under18 `.orchestrator/requests/`. Preserve requirements, targets, and explicit authority, but do19 not copy secrets into it.205. Run:2122 ```bash23 PYTHONPATH=src python3 -m herdr_orchestrator deliver \24 --workflow workflows/multi-harness.toml \25 --goal-file .orchestrator/requests/<goal>.md26 ```2728 Add controller, worker, tracker, Wayfinder, concurrency, or review overrides only when29 the user supplied them. The TOML defaults are the normal path.3031## Stop3233- Exit `0`: report the integration branch and commit, ticket references, review rounds, and34 runtime artifact root. The command does not push, merge into the user's branch, or deploy.35- Exit `3`: read [`references/authority.md`](references/authority.md), report the escalation36 category and artifact root, then wait for the user.37- Any other non-zero exit: read [`references/recovery.md`](references/recovery.md), report38 the stable error, failed stage, and preserved worktrees. Never claim partial work succeeded.3940Completion means every implementation ticket has a validated receipt and is closed, all41commits are merged into the isolated integration branch, and the final Standards and Spec42review has no accepted must-fix finding after at most two repair rounds.