Agent release train
Skill Amey-Thakur/AI-SKILLS/skills/multi-agent-teams/agent-release-train
Plug-and-play skills and prompts for every AI coding agent
npx -y skills add Amey-Thakur/AI-SKILLS --skill agent-release-trainAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 21 days oldThe repository was created 21 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- 4 stars4 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Run release agents that draft the changelog, scan risk, verify the candidate, and gate publish behind a go/no-go check. Use when cutting a release and you want the boring parts automated and the risky parts caught before ship.
SKILL.md
3.5 KB, 771 tokens by cl100k_base, as published. Nobody here has run it
Release train of agents
Releases go wrong in the gap between "the code is merged" and "the artifact is live": an undocumented breaking change, a fresh CVE in a bumped dependency, a rebuild that was never the thing that passed. A pipeline of release agents closes that gap by making each step produce a record: what changed, what it risks, whether it verified, and only then does a human approve the publish. The conductor holds the gate; the agents fill it.
Team
- Conductor (
release-manager-role): cuts the manifest and holds go/no-go. - Changelog agent (
technical-writer-role): drafts the release notes. - Risk scanner (
security-engineer-role,dependency-auditing): flags hazards. - Verifier (
qa-engineer-role): confirms the candidate is green.
Shape: a sequential pipeline ending at a judge-style go/no-go gate.
Method
- Cut the manifest. The conductor fixes the commit range and version from
the diff since the last tag into
manifest.md, with the cut criteria stated up front. - Generate the changelog from history. The changelog agent groups merged
PRs into features, fixes, and breaking changes in
CHANGELOG.md, and flags every breaking change explicitly, not buried in a bullet. - Scan risk over the diff. The scanner lists new or bumped dependencies,
known CVEs, database migrations, and config changes into a ranked
risk.md, with a blast-radius note per item. - Verify the exact candidate. The verifier confirms required checks are
green and smoke tests pass on the built artifact, never a rebuild, writing
pass or fail per check to
verify.md. - Run the go/no-go gate. The conductor reconciles the three files: any open blocker, unflagged breaking change, or failed check holds the train and routes to the owner. No selective reinterpretation at 5 p.m.
- Publish behind a human approval. A person approves the actual tag, publish, or deploy; ship the artifact that passed, promoted gradually through canary or rings, watching error rate and latency.
- Record the go-live. Append the go/no-go decision, attendees, and rollout
result to
manifest.mdso the 2 a.m. on-call reads a real record.
Run it
In Claude Code, run the four agents as subagents over one shared release directory; the orchestrator sequences changelog, risk, and verify (those three can run in parallel), then performs the go/no-go itself and stops for human approval before any publish command runs. Port it to CrewAI as a sequential process with a gating task, to AutoGen as a GroupChat whose conductor approves transitions, or to LangGraph as a linear graph with a conditional edge that halts on any red signal.
Signals it works
- Breaking changes appear flagged in the changelog, not discovered by users.
- The published artifact is byte-identical to the one the verifier passed.
- A held train routes to a named owner instead of shipping around the gate.
Boundaries
This automates the release record and the gate, not the fix for what the gate catches, which goes back to the owning engineers. The cut criteria, rollout policy, and who may approve a publish are company convention the conductor follows, not invents. A human holds publish and rollback authority; agents prepare the decision, they do not execute the irreversible click.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.
Gives 0 of the 12 instructions most quality gates skills give in 771 tokens
Counted across 1,195 of the 2,094 authors here whose files we hold, read 2026-08-07
- Read the output and check the exit codein 54 of 1195, across 14 files
- Verify requirements using a line-by-line checklistin 53 of 1195, across 12 files
- Identify the verification command proving the claimin 51 of 1195, across 12 files
- Run the full verification commandin 50 of 1195, across 11 files
- Verify output confirms the claimin 49 of 1195, across 12 files
- Check version control diff after agent delegationin 46 of 1195, across 6 files
- State claim with evidencein 44 of 1195, across 4 files
- Run the test suitein 33 of 1195, across 26 files
- Keep state in memory by defaultin 27 of 1195, across 6 files
- Make prototype runnable with one commandin 26 of 1195, across 5 files
- Produce a verification reportin 25 of 1195, across 14 files
- Detect the package manager from lockfilesin 24 of 1195, across 5 files
Said here and by no other author read
- write a manifest with commit range and version
- group changes into features fixes and breaking changes
- flag every breaking change explicitly
- scan the diff for dependencies and migrations
- rank risks with a blast-radius note
- halt the train on any open blocker or failed check
Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.