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
Use this when a ticket changes only documentation: the README, files inside docs/, any file ending in .md, or a plain text/typo fix — and touches no source code.
The deterministic PR mechanics live in scripts/ (run from the repo root). This skill is the judgment; the mandatory gate is docs are reviewed by a human, never the bot.
python3 scripts/open_pr.py --title "<title>" --body "<body>". You supply the title and body; the script creates the branch, commits, pushes, and opens the PR against main, printing the URL.python3 scripts/merge_pr.py <pr-number>.Keep it simple — do not add extra steps.