Decomposed ticket workflow from the AI Native DevCon London 2026 context workshop: skills for code and documentation tickets, the mandatory tests-first / clean-review / human-review rules, and the deterministic scripts/ they lean on.
70
88%
Does it follow best practices?
Impact
—
No eval scenarios have been run
Passed
No known issues
Scope: code PRs (the code-ticket workflow).
The Copilot review is the gate, not a formality. Therefore:
python3 scripts/await_copilot_review.py <pr-number>, which prints JSON
including a clean boolean.scripts/merge_pr.py unless that JSON reports
"clean": true (Copilot approved with no outstanding comments).clean is false, you MUST address every comment, push the fix,
re-request the review, and wait again — repeating until it is clean.clean is computed deterministically in scripts/await_copilot_review.py
(summarize); this rule forbids merging until it is true.