@aperant/framework 0.8.0 → 0.8.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 +311 -1
- package/README.md +12 -0
- package/agents/apt-planner.md +5 -4
- package/dist/cli/commands/adr.mjs +1 -1
- package/dist/cli/commands/audit-branch-current.d.mts +25 -0
- package/dist/cli/commands/audit-branch-current.d.mts.map +1 -0
- package/dist/cli/commands/audit-branch-current.mjs +252 -0
- package/dist/cli/commands/audit-branch-current.mjs.map +1 -0
- package/dist/cli/commands/audit.d.mts.map +1 -1
- package/dist/cli/commands/audit.mjs +13 -2
- package/dist/cli/commands/audit.mjs.map +1 -1
- package/dist/cli/commands/check-version.d.mts.map +1 -1
- package/dist/cli/commands/check-version.mjs +19 -1
- package/dist/cli/commands/check-version.mjs.map +1 -1
- package/dist/cli/commands/context.mjs +3 -3
- package/dist/cli/commands/context.mjs.map +1 -1
- package/dist/cli/commands/detect-runtime.d.mts +6 -0
- package/dist/cli/commands/detect-runtime.d.mts.map +1 -0
- package/dist/cli/commands/detect-runtime.mjs +136 -0
- package/dist/cli/commands/detect-runtime.mjs.map +1 -0
- package/dist/cli/commands/driver-doctor.d.mts +29 -0
- package/dist/cli/commands/driver-doctor.d.mts.map +1 -0
- package/dist/cli/commands/driver-doctor.mjs +291 -0
- package/dist/cli/commands/driver-doctor.mjs.map +1 -0
- package/dist/cli/commands/gate.mjs +14 -0
- package/dist/cli/commands/gate.mjs.map +1 -1
- package/dist/cli/commands/init.d.mts.map +1 -1
- package/dist/cli/commands/init.mjs +76 -33
- package/dist/cli/commands/init.mjs.map +1 -1
- package/dist/cli/commands/install-from-source.d.mts +2 -0
- package/dist/cli/commands/install-from-source.d.mts.map +1 -0
- package/dist/cli/commands/install-from-source.mjs +2 -0
- package/dist/cli/commands/install-from-source.mjs.map +1 -0
- package/dist/cli/commands/modes.mjs +1 -1
- package/dist/cli/commands/route.d.mts.map +1 -1
- package/dist/cli/commands/route.mjs +38 -1
- package/dist/cli/commands/route.mjs.map +1 -1
- package/dist/cli/commands/triage.mjs +1 -1
- package/dist/cli/config/load.d.mts.map +1 -1
- package/dist/cli/config/load.mjs +9 -3
- package/dist/cli/config/load.mjs.map +1 -1
- package/dist/cli/coordination/auto-emit-artifact-ready.mjs +1 -1
- package/dist/cli/coordination/event-schema.d.mts.map +1 -1
- package/dist/cli/coordination/event-schema.mjs +18 -0
- package/dist/cli/coordination/event-schema.mjs.map +1 -1
- package/dist/cli/design/frontmatter-schema.d.mts +4 -4
- package/dist/cli/dispatch.d.mts.map +1 -1
- package/dist/cli/dispatch.mjs +18 -1
- package/dist/cli/dispatch.mjs.map +1 -1
- package/dist/cli/gate/context.d.mts +1 -0
- package/dist/cli/gate/context.d.mts.map +1 -1
- package/dist/cli/gate/context.mjs +14 -1
- package/dist/cli/gate/context.mjs.map +1 -1
- package/dist/cli/gate/gates/consistency-check.d.mts +1 -0
- package/dist/cli/gate/gates/consistency-check.d.mts.map +1 -1
- package/dist/cli/gate/gates/consistency-check.mjs +1 -0
- package/dist/cli/gate/gates/consistency-check.mjs.map +1 -1
- package/dist/cli/gate/gates/review-clean.d.mts +1 -0
- package/dist/cli/gate/gates/review-clean.d.mts.map +1 -1
- package/dist/cli/gate/gates/review-clean.mjs +1 -0
- package/dist/cli/gate/gates/review-clean.mjs.map +1 -1
- package/dist/cli/gate/gates/verify-approved.d.mts +1 -0
- package/dist/cli/gate/gates/verify-approved.d.mts.map +1 -1
- package/dist/cli/gate/gates/verify-approved.mjs +1 -0
- package/dist/cli/gate/gates/verify-approved.mjs.map +1 -1
- package/dist/cli/gate/registry.d.mts.map +1 -1
- package/dist/cli/gate/registry.mjs +9 -1
- package/dist/cli/gate/registry.mjs.map +1 -1
- package/dist/cli/install/cli-to-install-root.d.mts.map +1 -1
- package/dist/cli/install/cli-to-install-root.mjs +0 -2
- package/dist/cli/install/cli-to-install-root.mjs.map +1 -1
- package/dist/cli/install/find-workspace-framework-version.d.mts +16 -0
- package/dist/cli/install/find-workspace-framework-version.d.mts.map +1 -0
- package/dist/cli/install/find-workspace-framework-version.mjs +85 -0
- package/dist/cli/install/find-workspace-framework-version.mjs.map +1 -0
- package/dist/cli/install/install-from-source.d.mts +10 -0
- package/dist/cli/install/install-from-source.d.mts.map +1 -0
- package/dist/cli/install/install-from-source.mjs +271 -0
- package/dist/cli/install/install-from-source.mjs.map +1 -0
- package/dist/cli/install/install-kernel.d.mts.map +1 -1
- package/dist/cli/install/install-kernel.mjs +24 -0
- package/dist/cli/install/install-kernel.mjs.map +1 -1
- package/dist/cli/install/legacy-paths.d.mts +33 -11
- package/dist/cli/install/legacy-paths.d.mts.map +1 -1
- package/dist/cli/install/legacy-paths.mjs +161 -39
- package/dist/cli/install/legacy-paths.mjs.map +1 -1
- package/dist/cli/install/runtime-detect.d.mts +2 -6
- package/dist/cli/install/runtime-detect.d.mts.map +1 -1
- package/dist/cli/install/runtime-detect.mjs +9 -4
- package/dist/cli/install/runtime-detect.mjs.map +1 -1
- package/dist/cli/install/runtime-migrate.d.mts +34 -14
- package/dist/cli/install/runtime-migrate.d.mts.map +1 -1
- package/dist/cli/install/runtime-migrate.mjs +63 -30
- package/dist/cli/install/runtime-migrate.mjs.map +1 -1
- package/dist/cli/install/transforms/codex.d.mts.map +1 -1
- package/dist/cli/install/transforms/codex.mjs +28 -17
- package/dist/cli/install/transforms/codex.mjs.map +1 -1
- package/dist/cli/install/transforms/pi.d.mts +6 -0
- package/dist/cli/install/transforms/pi.d.mts.map +1 -0
- package/dist/cli/install/transforms/pi.mjs +37 -0
- package/dist/cli/install/transforms/pi.mjs.map +1 -0
- package/dist/cli/personas/sidecar.d.mts +1 -1
- package/dist/cli/roadmap/lifecycle.d.mts +1 -1
- package/dist/cli/roadmap/rollup.d.mts +2 -2
- package/dist/cli/skill-author/contract.mjs +2 -2
- package/dist/cli/skill-author/contract.mjs.map +1 -1
- package/dist/cli/verify-proof/audit.d.mts +34 -0
- package/dist/cli/verify-proof/audit.d.mts.map +1 -0
- package/dist/cli/verify-proof/audit.mjs +53 -0
- package/dist/cli/verify-proof/audit.mjs.map +1 -0
- package/dist/cli/verify-proof/exec.d.mts +20 -0
- package/dist/cli/verify-proof/exec.d.mts.map +1 -0
- package/dist/cli/verify-proof/exec.mjs +74 -0
- package/dist/cli/verify-proof/exec.mjs.map +1 -0
- package/dist/cli/verify-proof/idl/index.d.mts +2 -0
- package/dist/cli/verify-proof/idl/index.d.mts.map +1 -0
- package/dist/cli/verify-proof/idl/index.mjs +14 -0
- package/dist/cli/verify-proof/idl/index.mjs.map +1 -0
- package/dist/cli/verify-proof/idl/types.d.ts +9 -0
- package/dist/cli/verify-proof/idl/types.d.ts.map +1 -0
- package/dist/cli/verify-proof/idl/types.js +9 -0
- package/dist/cli/verify-proof/idl/types.js.map +1 -0
- package/dist/cli/verify-proof/manifest-validator.d.mts +19 -0
- package/dist/cli/verify-proof/manifest-validator.d.mts.map +1 -0
- package/dist/cli/verify-proof/manifest-validator.mjs +182 -0
- package/dist/cli/verify-proof/manifest-validator.mjs.map +1 -0
- package/dist/cli/verify-proof/resolver.d.mts +43 -0
- package/dist/cli/verify-proof/resolver.d.mts.map +1 -0
- package/dist/cli/verify-proof/resolver.mjs +160 -0
- package/dist/cli/verify-proof/resolver.mjs.map +1 -0
- package/dist/cli/verify-proof/runtime-detect.d.mts +27 -0
- package/dist/cli/verify-proof/runtime-detect.d.mts.map +1 -0
- package/dist/cli/verify-proof/runtime-detect.mjs +116 -0
- package/dist/cli/verify-proof/runtime-detect.mjs.map +1 -0
- package/dist/cli/verify-proof/trust.d.mts +70 -0
- package/dist/cli/verify-proof/trust.d.mts.map +1 -0
- package/dist/cli/verify-proof/trust.mjs +174 -0
- package/dist/cli/verify-proof/trust.mjs.map +1 -0
- package/dist/plugin/.claude-plugin/plugin.json +4 -1
- package/dist/plugin/agents/apt-executor.md +12 -0
- package/dist/plugin/agents/apt-planner.md +5 -4
- package/dist/plugin/agents/apt-team-docs-narrator.md +11 -0
- package/dist/plugin/skills/apt/SKILL.md +78 -8
- package/dist/plugin/skills/apt-caveman/SKILL.md +64 -0
- package/dist/plugin/skills/apt-debug/SKILL.md +36 -4
- package/dist/plugin/skills/apt-debug/appendices/diagnose-discipline.md +2 -11
- package/dist/plugin/skills/apt-discuss/SKILL.md +4 -4
- package/dist/plugin/skills/apt-discuss/appendices/grill-discipline.md +2 -11
- package/dist/plugin/skills/apt-discuss/appendices/zoom-out-helper.md +0 -8
- package/dist/plugin/skills/apt-execute/SKILL.md +40 -4
- package/dist/plugin/skills/apt-execute/appendices/tdd-mode.md +2 -10
- package/dist/plugin/skills/apt-fan-out/SKILL.md +159 -0
- package/dist/plugin/skills/apt-handoff/SKILL.md +228 -0
- package/dist/plugin/skills/apt-improve/DEEPENING.md +0 -8
- package/dist/plugin/skills/apt-improve/INTERFACE-DESIGN.md +0 -8
- package/dist/plugin/skills/apt-improve/LANGUAGE.md +0 -8
- package/dist/plugin/skills/apt-improve/SKILL.md +4 -4
- package/dist/plugin/skills/apt-plan/SKILL.md +23 -5
- package/dist/plugin/skills/apt-plan/adapters/conductor.md +1 -1
- package/dist/plugin/skills/apt-pr-review/SKILL.md +8 -1
- package/dist/plugin/skills/apt-prototype/LOGIC.md +0 -8
- package/dist/plugin/skills/apt-prototype/SKILL.md +4 -4
- package/dist/plugin/skills/apt-prototype/UI.md +0 -8
- package/dist/plugin/skills/apt-quick/SKILL.md +31 -1
- package/dist/plugin/skills/apt-resume/SKILL.md +54 -31
- package/dist/plugin/skills/apt-review/SKILL.md +4 -0
- package/dist/plugin/skills/apt-run/SKILL.md +134 -21
- package/dist/plugin/skills/apt-setup/SKILL.md +97 -8
- package/dist/plugin/skills/apt-ship/SKILL.md +165 -9
- package/dist/plugin/skills/apt-spar/SKILL.md +77 -25
- package/dist/plugin/skills/apt-triage/AGENT-BRIEF.md +0 -8
- package/dist/plugin/skills/apt-triage/OUT-OF-SCOPE.md +0 -7
- package/dist/plugin/skills/apt-triage/SKILL.md +2 -2
- package/dist/plugin/skills/apt-update/SKILL.md +74 -17
- package/dist/plugin/skills/apt-verify/SKILL.md +11 -0
- package/dist/plugin/skills/apt-verify-proof/SKILL.md +48 -1
- package/dist/plugin/skills/apt-watch-ci/SKILL.md +2 -2
- package/dist/plugin/skills/apt-zoom-out/SKILL.md +3 -3
- package/dist/schemas/quick-task.d.ts +17 -17
- package/dist/schemas/quick-task.d.ts.map +1 -1
- package/dist/schemas/quick-task.js +2 -2
- package/dist/schemas/quick-task.js.map +1 -1
- package/dist/types/config.d.ts +33 -0
- package/dist/types/config.d.ts.map +1 -1
- package/dist/types/state.d.ts +1 -1
- package/dist/types/state.d.ts.map +1 -1
- package/dist/types/task-record.d.ts +1 -1
- package/dist/types/task-record.d.ts.map +1 -1
- package/package.json +134 -133
- package/prompts/planner.md +1 -1
- package/prompts/spec_writer.md +1 -1
- package/skills/apt/SKILL.md +78 -8
- package/skills/apt-caveman/SKILL.md +64 -0
- package/skills/apt-debug/SKILL.md +36 -4
- package/skills/apt-debug/appendices/diagnose-discipline.md +2 -11
- package/skills/apt-discuss/SKILL.md +4 -4
- package/skills/apt-discuss/appendices/grill-discipline.md +2 -11
- package/skills/apt-discuss/appendices/zoom-out-helper.md +0 -8
- package/skills/apt-execute/SKILL.md +27 -4
- package/skills/apt-execute/appendices/tdd-mode.md +2 -10
- package/skills/apt-fan-out/SKILL.md +36 -1
- package/skills/apt-handoff/SKILL.md +228 -0
- package/skills/apt-improve/DEEPENING.md +0 -8
- package/skills/apt-improve/INTERFACE-DESIGN.md +0 -8
- package/skills/apt-improve/LANGUAGE.md +0 -8
- package/skills/apt-improve/SKILL.md +4 -4
- package/skills/apt-plan/SKILL.md +23 -5
- package/skills/apt-plan/adapters/conductor.md +1 -1
- package/skills/apt-planner.md +1 -1
- package/skills/apt-prototype/LOGIC.md +0 -8
- package/skills/apt-prototype/SKILL.md +4 -4
- package/skills/apt-prototype/UI.md +0 -8
- package/skills/apt-quick/SKILL.md +31 -1
- package/skills/apt-resume/SKILL.md +54 -31
- package/skills/apt-run/SKILL.md +114 -16
- package/skills/apt-setup/SKILL.md +97 -8
- package/skills/apt-ship/SKILL.md +165 -9
- package/skills/apt-spar/SKILL.md +65 -16
- package/skills/apt-triage/AGENT-BRIEF.md +0 -8
- package/skills/apt-triage/OUT-OF-SCOPE.md +0 -7
- package/skills/apt-triage/SKILL.md +2 -2
- package/skills/apt-update/SKILL.md +74 -17
- package/skills/apt-verify-proof/SKILL.md +48 -1
- package/skills/apt-zoom-out/SKILL.md +3 -3
- package/src/cli/commands/adr.mjs +1 -1
- package/src/cli/commands/audit-branch-current.mjs +250 -0
- package/src/cli/commands/audit.mjs +13 -2
- package/src/cli/commands/check-version.mjs +20 -1
- package/src/cli/commands/context.mjs +3 -3
- package/src/cli/commands/detect-runtime.mjs +134 -0
- package/src/cli/commands/driver-doctor.mjs +294 -0
- package/src/cli/commands/gate.mjs +15 -0
- package/src/cli/commands/init.mjs +75 -33
- package/src/cli/commands/install-from-source.mjs +1 -0
- package/src/cli/commands/modes.mjs +1 -1
- package/src/cli/commands/route.mjs +42 -1
- package/src/cli/commands/triage.mjs +1 -1
- package/src/cli/config/load.mjs +9 -3
- package/src/cli/coordination/auto-emit-artifact-ready.mjs +1 -1
- package/src/cli/coordination/event-schema.mjs +19 -0
- package/src/cli/dispatch.mjs +17 -1
- package/src/cli/gate/context.mjs +20 -1
- package/src/cli/gate/gates/consistency-check.mjs +1 -0
- package/src/cli/gate/gates/review-clean.mjs +1 -0
- package/src/cli/gate/gates/verify-approved.mjs +1 -0
- package/src/cli/gate/registry.mjs +11 -1
- package/src/cli/install/cli-to-install-root.mjs +0 -2
- package/src/cli/install/find-workspace-framework-version.mjs +88 -0
- package/src/cli/install/install-from-source.mjs +276 -0
- package/src/cli/install/install-kernel.mjs +24 -0
- package/src/cli/install/legacy-paths.mjs +162 -39
- package/src/cli/install/runtime-detect.mjs +9 -4
- package/src/cli/install/runtime-migrate.mjs +63 -30
- package/src/cli/install/transforms/codex.mjs +26 -17
- package/src/cli/install/transforms/pi.mjs +37 -0
- package/src/cli/skill-author/contract.mjs +2 -2
- package/src/cli/verify-proof/.gitkeep +0 -0
- package/src/cli/verify-proof/audit.mjs +55 -0
- package/src/cli/verify-proof/exec.mjs +74 -0
- package/src/cli/verify-proof/idl/index.mjs +24 -0
- package/src/cli/verify-proof/idl/types.ts +41 -0
- package/src/cli/verify-proof/manifest-schema.json +211 -0
- package/src/cli/verify-proof/manifest-validator.mjs +184 -0
- package/src/cli/verify-proof/resolver.mjs +163 -0
- package/src/cli/verify-proof/runtime-detect.mjs +122 -0
- package/src/cli/verify-proof/trust.mjs +187 -0
- package/templates/adr-format.md +0 -8
- package/templates/aperant-claude-md-appendix.md +1 -1
- package/templates/context-format.md +1 -9
- package/templates/proof-verification.md +19 -5
- package/workflows/verify-proof.md +56 -14
|
@@ -16,9 +16,12 @@ execution_modes:
|
|
|
16
16
|
- step
|
|
17
17
|
allowed-tools: "Bash, Read, Write, Edit, Grep, Glob"
|
|
18
18
|
argument-hint: "apt:ship [--draft | --title \"...\"]"
|
|
19
|
-
gates:
|
|
19
|
+
gates:
|
|
20
|
+
- constitution-read
|
|
21
|
+
- verify-approved
|
|
20
22
|
- review-clean
|
|
21
|
-
-
|
|
23
|
+
- consistency-check
|
|
24
|
+
- r-persona-alignment
|
|
22
25
|
- gitignore-in-sync
|
|
23
26
|
config_keys:
|
|
24
27
|
- pipeline.auto_branch
|
|
@@ -59,7 +62,7 @@ node packages/framework/bin/apt-tools.mjs gate check . --task-id {task-id} --ski
|
|
|
59
62
|
```
|
|
60
63
|
|
|
61
64
|
Parse the JSON envelope:
|
|
62
|
-
- If `status == "ok"`: proceed to Section 1.
|
|
65
|
+
- If `status == "ok"`: proceed to Section 0.5 / 1.
|
|
63
66
|
- If `status == "fail"` AND `forced` is empty (i.e. the user did NOT pass `--force`): STOP. Report the failed gates verbatim from `failed:[{id, severity, reason}]`, then emit:
|
|
64
67
|
```
|
|
65
68
|
Hard gate failed. Fix the issues above, or re-run with:
|
|
@@ -70,6 +73,17 @@ Parse the JSON envelope:
|
|
|
70
73
|
|
|
71
74
|
The ship gate covers constitution-read, verify-approved (qa_signoff.json verdict), review-clean (no unresolved critical/warning findings), gitignore-in-sync (.aperant/.gitignore conformance), and consistency-check (G8 — cross-artifact consistency between spec.md, implementation_plan.json, review.json, qa_signoff.json, and build-progress.json). Because these gates run here, Sections 1–3 below no longer need to re-check the verify verdict or block on review findings — the gate already did it.
|
|
72
75
|
|
|
76
|
+
### 0.1 Parse `profile` from the envelope
|
|
77
|
+
|
|
78
|
+
The envelope carries `profile: "lite" | "full-pipeline"` derived from `taskRecord.track` (QUICK / DEBUG → lite; STANDARD / DEEP → full-pipeline). Capture it now — Sections 1, 2, and 3 branch on it:
|
|
79
|
+
|
|
80
|
+
```bash
|
|
81
|
+
profile=$(echo "$gate_envelope" | jq -r '.profile // "full-pipeline"')
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
- **`profile === "lite"`** (QUICK or DEBUG track): the three full-pipeline gates (`verify-approved`, `review-clean`, `consistency-check`) were skipped by design — those tracks do not produce `qa_signoff.json`, `review.json`, or a multi-subtask `implementation_plan.json`. SKIP Sections 1 (review.json + decision notes reads) and 2 (commit-to-subtask map). JUMP to Section 3's lite body branch.
|
|
85
|
+
- **`profile === "full-pipeline"`** (STANDARD or DEEP track): full pipeline ran — Sections 1, 2, and 3's full-body template all apply unchanged.
|
|
86
|
+
|
|
73
87
|
## 0.5 Pre-PR Committable Drift Check (C56 B2)
|
|
74
88
|
|
|
75
89
|
Before gathering PR context, audit for uncommitted committable `.aperant/` state and stage anything the self-staging helper missed. This closes the artifact-leak class that the framework shipped with pre-C56: phases flipped in-progress, roadmap JSON touched, decision notes written — none of which followed into the PR's commits.
|
|
@@ -97,8 +111,79 @@ Parse the JSON envelope:
|
|
|
97
111
|
|
|
98
112
|
Classification reference: `packages/framework/docs/artifact-lifecycle.md` (committable vs ephemeral matrix for every `.aperant/` subpath).
|
|
99
113
|
|
|
114
|
+
## 0.7 Pre-PR Branch-Current Audit + Rebase Gate
|
|
115
|
+
|
|
116
|
+
Before any team-sync push (§5) or PR creation (§6), audit whether the task branch has drifted behind `origin/<base_branch>`. A PR opened against a stale base can silently no-op GitHub Actions when path-filter matrices evaluate against the merge-base — the recent Source Control panel pipeline lost ~20 min to this defect class before the operator noticed CI never engaged.
|
|
117
|
+
|
|
118
|
+
This section runs BEFORE Section 5 (Sync Team Bookkeeping). Order is load-bearing: if §0.7 runs after §5, the team-sync push races the post-§0.7 rebase, the captured `remote_tip_sha` is stale by the time §6 leases against it, and the lease fails on a commit `apt:ship` itself just pushed. The TD-02 structural test locks the §0.7 → §5 ordering.
|
|
119
|
+
|
|
120
|
+
Resolve the base branch (same `task get` envelope §6 uses):
|
|
121
|
+
|
|
122
|
+
```bash
|
|
123
|
+
task_info=$(node packages/framework/bin/apt-tools.mjs task get . --id {task-id})
|
|
124
|
+
base_branch=$(echo "$task_info" | jq -r '.task.base_branch // "main"')
|
|
125
|
+
worktree_path=$(echo "$task_info" | jq -r '.task.worktree_path // empty')
|
|
126
|
+
ship_cwd=${worktree_path:-.}
|
|
127
|
+
```
|
|
128
|
+
|
|
129
|
+
Run the audit from the worktree (or the project root when no worktree is recorded):
|
|
130
|
+
|
|
131
|
+
```bash
|
|
132
|
+
audit_env=$(node packages/framework/bin/apt-tools.mjs audit branch-current "$ship_cwd" --base "$base_branch")
|
|
133
|
+
behind=$(echo "$audit_env" | jq -r '.behind // 0')
|
|
134
|
+
ahead=$(echo "$audit_env" | jq -r '.ahead // 0')
|
|
135
|
+
mergeable=$(echo "$audit_env" | jq -r '.mergeable')
|
|
136
|
+
audit_warning=$(echo "$audit_env" | jq -r '.audit_warning // empty')
|
|
137
|
+
remote_tip_sha_pre_rebase=$(echo "$audit_env" | jq -r '.remote_tip_sha // empty')
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
Capture `remote_tip_sha_pre_rebase` now — §6's lease uses it.
|
|
141
|
+
|
|
142
|
+
**Branch on the envelope:**
|
|
143
|
+
|
|
144
|
+
- **`behind === 0`** → no rebase needed. The branch is current with `origin/<base_branch>` (or strictly ahead). Skip the rebase and proceed to §1. §6's push will use the plain `git push -u origin <branch>` form, not the lease form.
|
|
145
|
+
|
|
146
|
+
- **`behind > 0` AND `mergeable === true`** → run a clean rebase:
|
|
147
|
+
```bash
|
|
148
|
+
git -C "$ship_cwd" rebase "origin/$base_branch"
|
|
149
|
+
```
|
|
150
|
+
Proceed to §1. §6's push will use `--force-with-lease=refs/heads/<branch>:$remote_tip_sha_pre_rebase` because history was rewritten.
|
|
151
|
+
|
|
152
|
+
- **`behind > 0` AND `mergeable === false`** → STOP. Emit a structured error with the conflict preview verbatim:
|
|
153
|
+
```
|
|
154
|
+
[APT:ship] Cannot ship — task branch is behind origin/{base_branch} and the rebase would conflict.
|
|
155
|
+
Conflicts preview:
|
|
156
|
+
- {path1}
|
|
157
|
+
- {path2}
|
|
158
|
+
Resolve manually (rebase or merge in the worktree), then re-run /apt:ship.
|
|
159
|
+
```
|
|
160
|
+
Exit the skill — do NOT auto-resolve, do NOT proceed to §5 or §6.
|
|
161
|
+
|
|
162
|
+
- **`mergeable === null` AND `audit_warning === "git-version-too-old"`** → STOP with a friendlier message:
|
|
163
|
+
```
|
|
164
|
+
[APT:ship] Cannot ship — local git is too old to probe mergeability (need git ≥ 2.38 for 'merge-tree --write-tree').
|
|
165
|
+
Upgrade git, rebase manually, or re-run /apt:ship after upgrading.
|
|
166
|
+
```
|
|
167
|
+
Exit the skill.
|
|
168
|
+
|
|
169
|
+
- **`mergeable === null` AND `audit_warning === "fetch-failed"` or `"no-remote-base-ref"`** → STOP. The audit could not verify the remote tip, so we cannot lease safely. Emit:
|
|
170
|
+
```
|
|
171
|
+
[APT:ship] Cannot ship — could not fetch origin/{base_branch} ({audit_warning}). Check network + remote, then re-run /apt:ship.
|
|
172
|
+
```
|
|
173
|
+
Exit the skill.
|
|
174
|
+
|
|
175
|
+
**Autonomy gating.** Read the active task's autonomy level from `.aperant/state.json` (`active_tasks[{task-id}].autonomy`, falling back to `autonomy.default`):
|
|
176
|
+
|
|
177
|
+
- **Autonomy 0–1 (step / guided)** — print the audit envelope to the operator and ask `Rebase now? [Y/n]` before executing the `git rebase` line. On `N`, exit the skill (user can rebase manually and re-invoke).
|
|
178
|
+
- **Autonomy 2 (auto-chain)** — proceed silently on the clean-rebase branch; STOP on conflict regardless.
|
|
179
|
+
- **Autonomy 3 (YOLO)** — same as 2: silent on clean, STOP on conflict. Auto-resolution of conflicts is explicitly out of scope (see spec §Out of Scope).
|
|
180
|
+
|
|
181
|
+
The captured `remote_tip_sha_pre_rebase` and `behind` integer are referenced verbatim in §6's push command. Treat them as read-only state for the remainder of the skill.
|
|
182
|
+
|
|
100
183
|
## 1. Gather Context
|
|
101
184
|
|
|
185
|
+
**Profile guard:** Sections 1, 2, and 2.6 apply ONLY to `profile === "full-pipeline"`. When the envelope carried `profile === "lite"` (QUICK / DEBUG), SKIP Sections 1, 2, 2.6 and jump straight to Section 3 (`3.lite` branch).
|
|
186
|
+
|
|
102
187
|
Read all available context for building the PR:
|
|
103
188
|
|
|
104
189
|
```bash
|
|
@@ -197,6 +282,53 @@ The helper lives at `packages/framework/src/cli/release-notes/ship-autodraft.mjs
|
|
|
197
282
|
|
|
198
283
|
**Title:** Derived from task description. Keep it short (<70 characters).
|
|
199
284
|
|
|
285
|
+
### 3.lite — `profile === "lite"` (QUICK and DEBUG)
|
|
286
|
+
|
|
287
|
+
When the gate envelope carries `profile === "lite"`, emit the lite PR body. QUICK and DEBUG do not produce `qa_signoff.json` or `review.json`, so the lite body sources verification evidence from `task.json.verification` (QUICK: `.aperant/quick/{task-id}/task.json`) or, when no per-track task.json exists (DEBUG fallback), from the active-task record in `state.active_tasks[task_id]`.
|
|
288
|
+
|
|
289
|
+
```bash
|
|
290
|
+
# QUICK: per-track task.json carries the verification block
|
|
291
|
+
task_json=$(cat .aperant/quick/{task-id}/task.json 2>/dev/null)
|
|
292
|
+
# DEBUG fallback: no per-track task.json — verification is best-effort, omit the block if absent
|
|
293
|
+
```
|
|
294
|
+
|
|
295
|
+
Lite body shape:
|
|
296
|
+
|
|
297
|
+
```markdown
|
|
298
|
+
## Summary
|
|
299
|
+
|
|
300
|
+
{one-liner from task.description in state.active_tasks[task-id]}
|
|
301
|
+
|
|
302
|
+
## Verification
|
|
303
|
+
|
|
304
|
+
- Typecheck: {task.json.verification.typecheck}
|
|
305
|
+
- Lint: {task.json.verification.lint}
|
|
306
|
+
- Tests: {task.json.verification.test}
|
|
307
|
+
- Visual: {task.json.verification.visual}{when task.json.verification.evidence_path present, append: ` ({evidence_path})`}
|
|
308
|
+
|
|
309
|
+
{IF track === "DEBUG" AND .aperant/debug/{task-id}/DEBUG.md exists, append the RCA section distilled from the file's `## Conclusion` heading. The distillation is best-effort — quote the conclusion paragraph verbatim, keeping it under ~10 lines:}
|
|
310
|
+
|
|
311
|
+
## RCA
|
|
312
|
+
|
|
313
|
+
{distilled from .aperant/debug/{task-id}/DEBUG.md `## Conclusion` section}
|
|
314
|
+
|
|
315
|
+
## Commits
|
|
316
|
+
|
|
317
|
+
| Commit | Description |
|
|
318
|
+
|--------|-------------|
|
|
319
|
+
| `{sha}` | {message} |
|
|
320
|
+
|
|
321
|
+
---
|
|
322
|
+
|
|
323
|
+
Built with [Aperant Framework](https://github.com/Mikalsen-AI/aperant-cloud-desktop/tree/main/packages/framework)
|
|
324
|
+
```
|
|
325
|
+
|
|
326
|
+
The lite body omits `## QA Scores`, `## Review Findings`, `## Decision Traceability`, and the per-subtask column in `## Commits` — none of those signals exist on lite-profile tasks. Once the body is assembled, skip the rest of Section 3 and jump to Section 4.
|
|
327
|
+
|
|
328
|
+
### 3.full — `profile === "full-pipeline"` (STANDARD and DEEP)
|
|
329
|
+
|
|
330
|
+
The body structure below is the full-pipeline template — unchanged from the pre-fix behavior. Render it when `profile === "full-pipeline"`.
|
|
331
|
+
|
|
200
332
|
**Body structure:**
|
|
201
333
|
|
|
202
334
|
```markdown
|
|
@@ -307,27 +439,51 @@ Parse `worktree_path`, `branch`, and `base_branch` from the result.
|
|
|
307
439
|
|
|
308
440
|
- **If the task record has `branch` and `worktree_path` (task-level worktree isolation active):**
|
|
309
441
|
```bash
|
|
310
|
-
|
|
442
|
+
if [ "$behind" = "0" ]; then
|
|
443
|
+
git -C {worktree_path} push -u origin {branch}
|
|
444
|
+
else
|
|
445
|
+
# §0.7 rebased — lease against the pre-rebase remote tip so a concurrent
|
|
446
|
+
# advance of origin/{branch} between §0.7 and §6 trips the lease instead
|
|
447
|
+
# of silently overwriting the racing party's commit.
|
|
448
|
+
git -C {worktree_path} push --force-with-lease=refs/heads/{branch}:$remote_tip_sha_pre_rebase origin {branch} || {
|
|
449
|
+
echo '[APT:ship] Cannot ship — remote-advanced: origin/{branch} moved between §0.7 audit and §6 push. Re-run /apt:ship.' >&2
|
|
450
|
+
exit 1
|
|
451
|
+
}
|
|
452
|
+
fi
|
|
311
453
|
gh pr create --title "{title}" --body "{body}" --base {base_branch} --head {branch}
|
|
312
454
|
```
|
|
313
|
-
The PR targets the recorded `base_branch` (the branch the task was forked from), NOT `main`. This is the correct target when the user is shipping an intermediate milestone onto a longer-lived feature branch.
|
|
455
|
+
The PR targets the recorded `base_branch` (the branch the task was forked from), NOT `main`. This is the correct target when the user is shipping an intermediate milestone onto a longer-lived feature branch. The lease form is used only when §0.7 reported `behind > 0` (history was rewritten); on `behind === 0` a plain push is correct.
|
|
314
456
|
|
|
315
457
|
- **If the task record has `branch` but no `worktree_path`:** Push the branch from the current cwd and create the PR against `base_branch`:
|
|
316
458
|
```bash
|
|
317
|
-
|
|
459
|
+
if [ "$behind" = "0" ]; then
|
|
460
|
+
git push -u origin {branch}
|
|
461
|
+
else
|
|
462
|
+
git push --force-with-lease=refs/heads/{branch}:$remote_tip_sha_pre_rebase origin {branch} || {
|
|
463
|
+
echo '[APT:ship] Cannot ship — remote-advanced: origin/{branch} moved between §0.7 audit and §6 push. Re-run /apt:ship.' >&2
|
|
464
|
+
exit 1
|
|
465
|
+
}
|
|
466
|
+
fi
|
|
318
467
|
gh pr create --title "{title}" --body "{body}" --base {base_branch} --head {branch}
|
|
319
468
|
```
|
|
320
469
|
|
|
321
|
-
- **If no task branch is recorded and we're on main/master:** Legacy behaviour — create a feature branch first:
|
|
470
|
+
- **If no task branch is recorded and we're on main/master:** Legacy behaviour — create a feature branch first. §0.7 only ran when a task record exists; this path is reached only on ad-hoc shipping and the rebase gate is necessarily skipped, so a plain push is correct (no rewritten history to lease against):
|
|
322
471
|
```bash
|
|
323
472
|
git checkout -b {task-slug}
|
|
324
473
|
git push -u origin {task-slug}
|
|
325
474
|
gh pr create --title "{title}" --body "{body}"
|
|
326
475
|
```
|
|
327
476
|
|
|
328
|
-
- **If no task branch is recorded and we're already on a feature branch:** Legacy behaviour — push HEAD and open a PR against `main
|
|
477
|
+
- **If no task branch is recorded and we're already on a feature branch:** Legacy behaviour — push HEAD and open a PR against `main`. When §0.7 ran (task record present), the lease form applies when `behind > 0`; on the ad-hoc / no-task-record path the gate is skipped and a plain push is correct:
|
|
329
478
|
```bash
|
|
330
|
-
|
|
479
|
+
if [ -n "${remote_tip_sha_pre_rebase:-}" ] && [ "$behind" != "0" ]; then
|
|
480
|
+
git push --force-with-lease=refs/heads/$(git rev-parse --abbrev-ref HEAD):$remote_tip_sha_pre_rebase origin HEAD || {
|
|
481
|
+
echo '[APT:ship] Cannot ship — remote-advanced: branch tip moved between §0.7 audit and §6 push. Re-run /apt:ship.' >&2
|
|
482
|
+
exit 1
|
|
483
|
+
}
|
|
484
|
+
else
|
|
485
|
+
git push -u origin HEAD
|
|
486
|
+
fi
|
|
331
487
|
gh pr create --title "{title}" --body "{body}"
|
|
332
488
|
```
|
|
333
489
|
|
|
@@ -29,7 +29,7 @@ Two boundaries with adjacent skills:
|
|
|
29
29
|
- **Spar is not a review skill.** `/codex:adversarial-review` and `/apt:review` are one-shot. Spar loops until convergence or the round cap.
|
|
30
30
|
- **Spar is bidirectional 1:1.** Roundtable is 10-agent. If you want a 3-way debate, use `/apt:roundtable`.
|
|
31
31
|
|
|
32
|
-
|
|
32
|
+
Termination posture (v1.1, amending SPAR-06): the termination headline is in-conversation; the long-form converged position is written to a single timestamped file under `.aperant/spar/`. No conversation-transcript dump, no `.aperant/sparring/` directory — see `<state_files>` for the exact contract.
|
|
33
33
|
</objective>
|
|
34
34
|
|
|
35
35
|
<your_environment>
|
|
@@ -52,7 +52,7 @@ Hard rule, v1: **no artifact directory written.** The transcript stays in-conver
|
|
|
52
52
|
- The live conversation transcript (when `[topic]` is empty)
|
|
53
53
|
|
|
54
54
|
**Writes:**
|
|
55
|
-
-
|
|
55
|
+
- A single markdown file at `.aperant/spar/<short-slug>-<YYYYMMDD-HHMMSS>.md` containing the long-form converged position, the verdict-per-round table, and any parallel-bug call-outs. No subdirectories; flat layout mirroring `.aperant/debug/` and `.aperant/roundtables/`. Write-once; not loaded back into context on subsequent runs. This narrows the SPAR-06 commitment (amended 2026-05-21 — see task `apt-spar-readable-termination-summary_21-05-26`): the conversation transcript still stays in-conversation, full-transcript dumps to `.aperant/sparring/` are still rejected, but the long-form converged position is now persisted so it survives terminal close.
|
|
56
56
|
</state_files>
|
|
57
57
|
|
|
58
58
|
<rationalization>
|
|
@@ -64,7 +64,7 @@ The verify-before-cede rule is the whole skill. Every rationalization below name
|
|
|
64
64
|
| "I don't need to verify — I already know I'm right." | Holding without evidence is equally forbidden. Your prior beliefs are not citations. If you can't open a file and point at a line, you don't actually know — you remember. The rule is symmetric: cede with evidence OR hold with evidence; never neither. |
|
|
65
65
|
| "Only 1 round is needed — the partner's first response settles it." | True only if verification was performed. If round 1 ended with `verdict: cede` or `verdict: hold` and the verdict cited concrete evidence (`file:line`, test output, doc reference), terminating after round 1 is fine and expected. The danger is treating round 1 as a verdict because the partner's response *felt* conclusive. Speed without verification is not victory. |
|
|
66
66
|
| "I'll skip host-detection and just call codex directly." | This breaks the bidirectional contract. `apt:spar` must work whether the user is on Claude Code, Codex CLI, Gemini CLI, or any of the 15+ runtimes `host-detect` covers. Hardcoding a partner makes the skill Claude-Code-centric and silently breaks the Codex→Claude direction. Always run `host-detect` (or honor `--with`) — never assume the host. |
|
|
67
|
-
| "I'll
|
|
67
|
+
| "I'll dump the full conversation transcript to disk." | Wrong scope. The SPAR-06 amendment (2026-05-21) writes ONLY the long-form converged position + verdict-per-round table + parallel call-outs to ONE timestamped file under `.aperant/spar/`. The conversation transcript stays in-conversation; full-transcript dumps to `.aperant/sparring/` are still rejected per the original SPAR-06 rationale (orphan-cleanup concern). Stick to the bounded artifact. |
|
|
68
68
|
</rationalization>
|
|
69
69
|
|
|
70
70
|
<autonomy_interaction>
|
|
@@ -74,7 +74,7 @@ The verify-before-cede rule is the whole skill. Every rationalization below name
|
|
|
74
74
|
- **Autonomy 2 (Balanced, default):** Run the full loop (up to `--rounds N`, default 3) without mid-loop pauses. Pause **once** before the final converge/escalate decision in `<process>` §9 so the user can accept the termination summary or redirect.
|
|
75
75
|
- **Autonomy 3 (YOLO):** Run end-to-end with no pauses. Print the termination summary and return.
|
|
76
76
|
|
|
77
|
-
**
|
|
77
|
+
**v2 honors install-time consent (SPAR-07).** When `.aperant/config.local.json` carries `spar.enabled: true` (set via the `/apt:setup` install prompt) AND `/apt:run` was invoked with — or the `/apt` router auto-injected — `--spar-gates plan` (STANDARD) or `--spar-gates plan,execute` (DEEP), `/apt:spar` auto-fires between named pipeline stages. Manual `/apt:spar` invocation remains the canonical path (§1–§9 unchanged); auto-fire is opt-in per-device, never default-on per-project, never enabled on QUICK (Fast Path Guarantee). v1's "manually invoked only" rule was always deferred-pending-data per the original SPAR-07 escape hatch; founder manual-usage data is that trigger.
|
|
78
78
|
</autonomy_interaction>
|
|
79
79
|
|
|
80
80
|
<process>
|
|
@@ -90,7 +90,7 @@ Parse `$ARGUMENTS`. Extract:
|
|
|
90
90
|
`[apt:spar] --rounds clamped to 3 (hard cap, see SPAR-05)`
|
|
91
91
|
and proceed with N=3. If N<1, clamp to 1 and print:
|
|
92
92
|
`[apt:spar] --rounds clamped to 1 (minimum)`
|
|
93
|
-
- `--timeout-ms N` — per-partner Bash timeout in milliseconds, default
|
|
93
|
+
- `--timeout-ms N` — per-partner Bash timeout in milliseconds, default 300000 (5 min). Capped at 600000 (10 min, the Bash tool's own ceiling).
|
|
94
94
|
- `[topic]` — the remaining text after flags. If empty, frame the round from the **last N conversation turns** as the context.
|
|
95
95
|
|
|
96
96
|
Also read (best-effort, skip silently if missing):
|
|
@@ -135,7 +135,7 @@ Do NOT proceed; self-sparring is sycophancy by construction (the host cannot obj
|
|
|
135
135
|
2. **Rung 2 — Plugin shim** (`${CLAUDE_PLUGIN_ROOT}/scripts/<partner>-companion.mjs`). Codex only (claude / gemini have no plugin shim).
|
|
136
136
|
3. **Rung 3 — Raw CLI on `$PATH`** (`codex exec`, `claude -p`, `gemini -m`).
|
|
137
137
|
|
|
138
|
-
Walk the ladder in order; pick the first rung with `detected: true` (or `"runtime-host-only"` for MCP). **MCP rung has a hard timeout** — default
|
|
138
|
+
Walk the ladder in order; pick the first rung with `detected: true` (or `"runtime-host-only"` for MCP). **MCP rung has a hard timeout** — default 900000ms (15 min), configurable via `apt-spar.mcp_timeout_ms` in `.aperant/config.json`. The MCP rung is a structured tool call, NOT a Bash invocation, so the Bash tool's 600000ms ceiling does NOT apply — the MCP rung can carry heavy-research partner runs (e.g. Claude Code partner doing multiple minutes of Read/Grep/Bash) where the Bash rungs would hit the host ceiling. On MCP timeout, **automatically fall through to rung 2 or rung 3** — do NOT fail the whole spar. Treat MCP timeout as "rung unavailable for this invocation."
|
|
139
139
|
|
|
140
140
|
If all three rungs are unavailable (every rung `detected: false`, or MCP `runtime-host-only` timed out AND rungs 2+3 are `detected: false`), print:
|
|
141
141
|
|
|
@@ -163,13 +163,14 @@ You are the sparring partner in an apt:spar round. Your job:
|
|
|
163
163
|
- Identify the strongest objection.
|
|
164
164
|
- Cite specific evidence where possible (file:line, test output, doc reference).
|
|
165
165
|
- Be specific, not generic — "this might fail" is not a finding; "this fails when X because Y" is.
|
|
166
|
+
- After your main objection, provide NEXT_WEAKEST_POINT: one additional independent objection that would still matter if your first point is resolved. This populates the next round's frame.
|
|
166
167
|
```
|
|
167
168
|
|
|
168
169
|
The frame is one shot per round — no multi-turn conversation with the partner inside a single round.
|
|
169
170
|
|
|
170
171
|
## 5. Invoke Partner (with timeout)
|
|
171
172
|
|
|
172
|
-
**Wrap every partner Bash call with an explicit timeout** (default
|
|
173
|
+
**Wrap every partner Bash call with an explicit timeout** (default 300000ms (5 min), override via `--timeout-ms`). The empirical reason: heavy-research partner CLIs (especially Claude Code in `--with claude` mode) routinely spend multiple minutes doing genuine Read/Grep/Bash investigation per round, and a hung partner CLI must NOT stall the spar loop indefinitely.
|
|
173
174
|
|
|
174
175
|
The table below shows the canonical command shape per (partner × rung); the actual invocation for shell-based rungs (plugin shim, raw CLI) MUST use the heredoc pattern in the next subsection — never raw double-quoted interpolation. The MCP rung is a structured tool call — no shell quoting concern applies.
|
|
175
176
|
|
|
@@ -182,19 +183,19 @@ The table below shows the canonical command shape per (partner × rung); the act
|
|
|
182
183
|
|
|
183
184
|
| Partner | Rung | Command | Notes |
|
|
184
185
|
|---|---|---|---|
|
|
185
|
-
| codex | mcp | tool call: `mcp__codex-mcp__codex({prompt})` | Preferred.
|
|
186
|
+
| codex | mcp | tool call: `mcp__codex-mcp__codex({prompt})` | Preferred. 900000ms (15 min) timeout (configurable `apt-spar.mcp_timeout_ms`); on timeout fall through to plugin then CLI. |
|
|
186
187
|
| codex | plugin | `node "${CLAUDE_PLUGIN_ROOT}/scripts/codex-companion.mjs" task "$(cat <<'APT_SPAR_PROMPT_EOF' ... APT_SPAR_PROMPT_EOF\n)"` | **NO `--write`. NO `--effort` override.** Per SPAR-04 — spar is conversation, not patching. |
|
|
187
188
|
| codex | cli | `codex exec "$(cat <<'APT_SPAR_PROMPT_EOF' ... APT_SPAR_PROMPT_EOF\n)"` | Precedent: `apt-pr-review/SKILL.md:1084`. Verify with `codex --help`. |
|
|
188
|
-
| claude | mcp | tool call: `mcp__claude-code-mcp__claude_code({prompt})` | Preferred. Same
|
|
189
|
+
| claude | mcp | tool call: `mcp__claude-code-mcp__claude_code({prompt})` | Preferred. Same 900000ms (15 min) timeout + fallthrough rule. |
|
|
189
190
|
| claude | plugin | n/a | No plugin shim exists for Claude. Skip this rung. |
|
|
190
191
|
| claude | cli | `claude -p "$(cat <<'APT_SPAR_PROMPT_EOF' ... APT_SPAR_PROMPT_EOF\n)" --output-format text` | Symmetric. Claude has no `--write` equivalent — asymmetric flags are a smell. |
|
|
191
|
-
| gemini | mcp | tool call: `mcp__gemini-mcp__*({prompt})` | Preferred. Same
|
|
192
|
+
| gemini | mcp | tool call: `mcp__gemini-mcp__*({prompt})` | Preferred. Same 900000ms (15 min) timeout + fallthrough rule. Any `mcp__gemini-mcp__*` tool satisfies the rung. |
|
|
192
193
|
| gemini | plugin | n/a | No plugin shim exists for Gemini. Skip this rung. |
|
|
193
194
|
| gemini | cli | `gemini -m <model-from-router.llm.providers.gemini-cli> "$(cat <<'APT_SPAR_PROMPT_EOF' ... APT_SPAR_PROMPT_EOF\n)"` | Read the exact model name from `.aperant/config.json` at runtime — do not hardcode. |
|
|
194
195
|
|
|
195
|
-
Set the Bash tool's `timeout` parameter to `--timeout-ms` (default
|
|
196
|
+
Set the Bash tool's `timeout` parameter to `--timeout-ms` (default 300000).
|
|
196
197
|
|
|
197
|
-
**Timeout calibration.** The
|
|
198
|
+
**Timeout calibration.** The 5-min Bash-rung default and 15-min MCP-rung default are sized for heavy-research partner runs — modern partner CLIs commonly spend multiple minutes doing real Read/Grep/Bash investigation before producing a round response. The two defaults are intentionally asymmetric: the Bash rungs (plugin shim, raw CLI) are capped at the Claude Code Bash tool's 600000ms (10 min) host ceiling, while the MCP rung — a structured tool call rather than a Bash invocation — has no host ceiling and can carry the worst-case 15-min Claude Code partner. For tighter budgets (e.g. CI), pass `--timeout-ms` explicitly. The MCP-rung override is downward-only: if you observe consistent partner-CLI wedges (auth handshakes, hosted-API stalls, CI lanes wanting fast failure), set `apt-spar.mcp_timeout_ms` BELOW the 15-min default in `.aperant/config.json` (e.g. `120000` for a 2-min fast-fail budget) — raising it above 15 min is unnecessary because the default already covers the documented worst case. Future versions may introduce per-partner defaults.
|
|
198
199
|
|
|
199
200
|
**Prompt-quoting safety.** The prompt is user-controlled (it comes from `[topic]` and/or conversation context) and may legitimately contain double quotes, dollar signs, backticks, or `$(...)` substitution that bash would otherwise expand or break on. NEVER interpolate `<prompt>` directly inside a double-quoted shell argument. Instead, pipe via a here-document so the shell treats the body as opaque text:
|
|
200
201
|
|
|
@@ -284,7 +285,9 @@ After each round, print a verdict block (one of these four, exact format):
|
|
|
284
285
|
|
|
285
286
|
## 8. Loop Control (max 3 rounds)
|
|
286
287
|
|
|
287
|
-
- If `verdict=cede`
|
|
288
|
+
- If `verdict=cede` AND `--rounds 1` was explicit → terminate this round.
|
|
289
|
+
- If `verdict=cede` AND `--rounds >= 2` (default) → emit `next-round` regardless: convergence requires TWO consecutive rounds with the same disposition AND no materially new evidence. Round 1 alone cannot terminate as converged.
|
|
290
|
+
- The host's `next-round` payload for Round 2 MUST include: (a) the cited evidence that confirmed the partner's Round 1 point, (b) a request to challenge the host's cited evidence with the partner's NEXT_WEAKEST_POINT.
|
|
288
291
|
- If `verdict=hold` → only triggers `next-round` (partner gets the new evidence). There is no terminal `hold` convergence in a single round. If the round cap is reached with hold still active, the held position stands and the loop exits via the round-cap path below.
|
|
289
292
|
- If `verdict=next-round` → invoke the partner again with the new evidence the host just cited, go to Step 4.
|
|
290
293
|
- If the round counter hits **3 rounds** (or whatever `--rounds N` clamped to) → **terminate** with:
|
|
@@ -295,21 +298,70 @@ The hard cap of 3 rounds is non-negotiable in v1 (see SPAR-05). Long-tail disagr
|
|
|
295
298
|
|
|
296
299
|
## 9. Termination Report
|
|
297
300
|
|
|
298
|
-
|
|
301
|
+
The termination report has two layers. **Layer 1 — Headline** is printed to stdout and is the only thing the user reads to understand the spar at a glance. **Layer 2 — Detail** is the verbatim long-form converged position; it is persisted to a single timestamped file under `.aperant/spar/` so it survives terminal close (per the SPAR-06 amendment of 2026-05-21 — see `<state_files>`).
|
|
299
302
|
|
|
303
|
+
### Layer 1 — Headline (always printed)
|
|
304
|
+
|
|
305
|
+
Emit exactly this shape — `<-- copy this exact shape -->`:
|
|
306
|
+
|
|
307
|
+
```text
|
|
308
|
+
=== apt:spar — <outcome> ===
|
|
309
|
+
Topic: <one-line topic restatement>
|
|
310
|
+
Host: <cli-id> ↔ Partner: <cli-id> · Rounds: <n>/<cap>
|
|
311
|
+
|
|
312
|
+
Round 1: <one-sentence shift — what changed in the host's position, or what the partner caught>
|
|
313
|
+
Round 2: <one-sentence shift, omit this line entirely if rounds<2>
|
|
314
|
+
Round 3: <one-sentence shift, omit this line entirely if rounds<3>
|
|
315
|
+
|
|
316
|
+
Outcome: <one-sentence plain-English statement of what was agreed/disagreed and what it means for the next plan>
|
|
317
|
+
|
|
318
|
+
Next: <ONE suggested action — a single slash command or a single human-readable instruction. NOT a 4-item menu.>
|
|
319
|
+
|
|
320
|
+
Full detail: <path>
|
|
300
321
|
```
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
-
|
|
309
|
-
|
|
310
|
-
|
|
322
|
+
|
|
323
|
+
Constraints baked into the headline (do NOT relax):
|
|
324
|
+
|
|
325
|
+
- **One sentence per round, max ~25 words.** No bullets, no nested lists.
|
|
326
|
+
- **No code fences, no JSON, no ASCII tables inside the headline.** Schemas, trust models, verdict-per-round tables, and parallel-bug call-outs all go in the Layer 2 file — never in the headline.
|
|
327
|
+
- **No trailing disposition question.** Do not append "Want me to file this?" or any similar re-ask. The autonomy policy in `<autonomy_interaction>` already governs whether the host pauses for user input; the headline does not re-prompt.
|
|
328
|
+
- **Outcome vocabulary** is exactly one of: `converged`, `held-disagreement`, `round-cap`, `partner-unreachable`. Do not invent new outcome words. These are the terminal-outcome words for the spar as a whole; they are distinct from the §7 per-round verdict words (`cede` / `hold` / `next-round` / `partner-unreachable`) — `partner-unreachable` is the only word shared between the two vocabularies.
|
|
329
|
+
- **`Full detail:`** names the path to the Layer 2 file written below.
|
|
330
|
+
|
|
331
|
+
### Layer 2 — Persist the long-form (Path B)
|
|
332
|
+
|
|
333
|
+
ALSO write a single markdown file at `.aperant/spar/<slug>-<YYYYMMDD-HHMMSS>.md` containing the verbatim long-form: the converged-position content (architecture, schemas, trust model), the verdict-per-round table, and any parallel-bug call-outs the spar surfaced. The headline's `Full detail:` line MUST reference this exact path.
|
|
334
|
+
|
|
335
|
+
**Slug derivation.** Lowercase the topic; replace each run of non-`[a-z0-9]` characters with a single `-`; trim leading/trailing `-`; take the first 6 hyphen-separated tokens; truncate the resulting string to 40 chars; trim any trailing `-` left by truncation. Final form MUST match `^[a-z0-9-]{1,40}$` — the slug is interpolated directly into the path string, so any character outside `[a-z0-9-]` is a path-injection vector and must NOT survive this step. Example: topic `"Should we use Shape C++ for the IDL layer or stay with Shape B"` → tokens `should we use shape c for` (the `++` collapses with the trailing whitespace into a single `-`) → slug `should-we-use-shape-c-for` (24 chars; under the 40-char cap).
|
|
336
|
+
|
|
337
|
+
**Timestamp format.** `YYYYMMDD-HHMMSS` (UTC, per-second granularity). Two spar invocations within the same second produce identical paths — acceptable risk for v1.1.
|
|
338
|
+
|
|
339
|
+
**Write invocation.** Use the same single-quoted heredoc safety pattern §5 uses for prompt-quoting — the body is opaque text and may legitimately contain backticks, `$(...)`, or other shell-active characters that bash would otherwise expand:
|
|
340
|
+
|
|
341
|
+
```bash
|
|
342
|
+
mkdir -p .aperant/spar && cat > ".aperant/spar/<slug>-<YYYYMMDD-HHMMSS>.md" <<'APT_SPAR_LONGFORM_EOF'
|
|
343
|
+
# apt:spar long-form — <topic>
|
|
344
|
+
|
|
345
|
+
**Host:** <cli-id> · **Partner:** <cli-id> · **Rounds:** <n>/<cap> · **Outcome:** <outcome>
|
|
346
|
+
|
|
347
|
+
## Converged position (or held disagreement)
|
|
348
|
+
|
|
349
|
+
<verbatim long-form: architecture, schemas, trust model, etc.>
|
|
350
|
+
|
|
351
|
+
## Verdict per round
|
|
352
|
+
|
|
353
|
+
| Round | What host held | What partner caught | What host conceded |
|
|
354
|
+
|-------|----------------|---------------------|--------------------|
|
|
355
|
+
| 1 | ... | ... | ... |
|
|
356
|
+
|
|
357
|
+
## Parallel call-outs
|
|
358
|
+
|
|
359
|
+
<bugs / observations surfaced during sparring that are independent of the topic; omit the whole section if none>
|
|
360
|
+
APT_SPAR_LONGFORM_EOF
|
|
311
361
|
```
|
|
312
362
|
|
|
313
|
-
|
|
363
|
+
The `'APT_SPAR_LONGFORM_EOF'` (single-quoted heredoc terminator) is load-bearing — identical to the `APT_SPAR_PROMPT_EOF` convention in §5. It disables variable/command substitution inside the body so an attacker-controlled topic cannot execute commands.
|
|
364
|
+
|
|
365
|
+
This file is write-once and is NOT loaded back into context on subsequent `apt:spar` runs — it is purely a preservation artifact for the user.
|
|
314
366
|
|
|
315
367
|
</process>
|
|
@@ -1,11 +1,3 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
Adapted from Matt Pocock's MIT-licensed skill suite:
|
|
3
|
-
https://github.com/mattpocock/skills/blob/main/skills/engineering/triage/AGENT-BRIEF.md
|
|
4
|
-
Licensed under MIT. Modifications: aligned with Aperant's 5-state
|
|
5
|
-
machine (needs-triage / needs-info / ready-for-agent / ready-for-human /
|
|
6
|
-
wontfix) and the backend-pluggable mirror model (local-only / github-issues / app-inbox).
|
|
7
|
-
-->
|
|
8
|
-
|
|
9
1
|
# Triage Agent Brief — what to do with each state
|
|
10
2
|
|
|
11
3
|
## needs-triage (inbound)
|
|
@@ -1,10 +1,3 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
Adapted from Matt Pocock's MIT-licensed skill suite:
|
|
3
|
-
https://github.com/mattpocock/skills/blob/main/skills/engineering/triage/OUT-OF-SCOPE.md
|
|
4
|
-
Licensed under MIT. Modifications: aligned with Aperant's pipeline
|
|
5
|
-
(other skills exist for the out-of-scope concerns — explicit pointers).
|
|
6
|
-
-->
|
|
7
|
-
|
|
8
1
|
# Triage Out-of-Scope
|
|
9
2
|
|
|
10
3
|
What this skill is NOT. Knowing the boundary prevents triage from
|
|
@@ -31,8 +31,8 @@ This skill moves a task through a 5-state machine. The state machine
|
|
|
31
31
|
runs identically regardless of backend (local-only / github-issues /
|
|
32
32
|
app-inbox); only the mirror destination changes.
|
|
33
33
|
|
|
34
|
-
**
|
|
35
|
-
OUT-OF-SCOPE.md sub-files ported from
|
|
34
|
+
**Aperant adoption attribution.** State machine + AGENT-BRIEF.md +
|
|
35
|
+
OUT-OF-SCOPE.md sub-files ported from
|
|
36
36
|
`triage` skill. Aperant-specific extensions:
|
|
37
37
|
|
|
38
38
|
- Backend abstraction (configured at `apt:setup` Batch 8 — task_tracking.backend)
|