fix(launch): bring two comment blocks back under the cap #289
No reviewers
Labels
No labels
autonomy
async-consult
autonomy
epic
autonomy
headless
autonomy
live-collab
coherence-core
priority
P0
priority
P1
priority
P2
priority
P3
priority
P4
qa-fixture
role/ai
role/creator
role/design
role/director
role/engineer
role/exec
role/human
role/ops
role/qa
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set
Reference
coilyco-flight-deck/agent-compose!289
Loading…
Reference in a new issue
No description provided.
Delete branch "aos/claude/xu59-comment-caps"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
main is red. Both violations are mine.
What broke
Run 243, the push that merged #287:
Two three-line comment blocks against a two-line cap. Trimmed, no behaviour touched.
Why it got through
I validated #287 with
gofmt,go build,go vet, and the fullgo test ./..., and never ranpre-commit run --all-files. The Go toolchain has no opinion about comment length. The hook suite does, and it is the thing I skipped.The clone did not catch it either: I had not run
pre-commit installin it at that point, so the commit hook was absent. I installed it later while working on #288, which is why that one was gated and this was not.Both halves of the miss are mine and neither is subtle.
Verified properly this time
ward exec test, the entire command CI runs, exits 0 locally. That coversgo test ./..., release-impact, packaging, palette, context budget, evalkit-check, andpre-commit run --all-files.The bit worth reading
#288 would have caught this. Its
pull_requestrun on its own branch passed (run 244), so the workflow is live and working. It simply did not exist when #287 was open.So this is precisely the failure #288 was built to prevent, arriving one merge too early to be prevented by it. This is also the first change in this repository that a pull-request check will gate before it lands.
Also corrects something I told Kai: I said a workflow added by a pull request cannot run on that pull request. Run 244 shows Forgejo does run it. I was wrong.
🤖 Generated with Claude Code