Release Work
Prepare or publish a traceable versioned artifact whose source, version, contents, and destination identity agree.
A commit is not a release. A tag does not prove which artifact was built. A successful local build does not prove registry contents. A published artifact is not a production deployment.
Establish Authority And Source
Loading this skill, preparing release options, or approving a general implementation Plan does not authorize a version change, remote tag, release record, registry publication, deprecation, yank, or replacement. Execute only release stages explicitly requested or separately approved. Before editing, read the repository's release policy, versioning scheme, package metadata, changelog convention, release automation, supported branches, signing or provenance requirements, and latest published versions.
Use Decision Gate when the route depends on an unresolved choice about:
- whether to release and which channel or audience receives it;
- compatibility or breaking-change classification;
- version when policy and evidence do not decide it;
- credentials, registry, signing, provenance, or remote-tag behavior;
- yanking, deprecating, replacing, or republishing an artifact;
- release branches, history rewriting, or recovery from partial publication.
Do not impose semantic versioning when the project uses another scheme. Before defining or changing version, source, artifact, tag, publication, or recovery identity, read release evidence.
Define The Release Contract
Before changing release state, establish:
Release target and audience:
Source commit / branch:
Version and compatibility basis:
Artifacts and supported platforms:
Release notes / migration guidance:
Required checks and selected reviews:
Signing / provenance / checksums:
Publication destination and channel:
Failure and recovery behavior:
Post-publication verification:
Approved preparation and publication stages:
Classify consumer-observable impact rather than diff size. A small change can be breaking; a large internal refactor may preserve compatibility.
When consumers must move before a contract can be removed, read Migration Work. An additive replacement release may precede migration; a breaking removal release must wait for the accepted migration and removal proof.
Prepare The Release
For approved preparation work:
- confirm the intended source is a coherent, freshly verified checkpoint and any selected review is resolved;
- reconcile version declarations, lockfiles, generated metadata, and release notes through repository-supported tooling;
- write release notes for consumers: behavior, compatibility, migration, security impact, and known limitations—not a raw commit dump;
- run the canonical build or package process from the intended source state;
- inspect the exact artifacts that would be published;
- keep credentials and signing material out of prompts, logs, diffs, and artifacts.
Do not hand-edit generated artifacts or duplicate version truth when the repository has a canonical generator. Return required branch, commit, public-documentation, or migration work to Workflow unless it is included in the approved release scope.
Preflight The Exact Release
Before any irreversible remote action, verify:
- source commit, branch, and working-tree expectations;
- version is valid, unused, and consistent with repository policy;
- required tests, builds, package or install checks, and compatibility checks;
- artifact contents, entry points, names, sizes, checksums, licenses, and provenance;
- release notes and migration guidance match observable consumer impact;
- tag, registry, channel, and release destination identity;
- credentials and permissions work without exposing secrets;
- retry behavior cannot create conflicting tags or duplicate releases.
Use Verify Work to state what each check proves. A dry run proves only the boundaries it exercises; name signing, registry, propagation, or publication behavior that remains unverified.
Publish Only The Approved Stage
Create remote tags, release records, or registry publications only when explicitly requested or approved for the inspected release contract.
Use the repository's canonical order. Stop when source, version, tag, artifact, signing mode, channel, or destination identity diverges.
Do not silently:
- overwrite an existing version;
- force-move a release tag;
- publish from a dirty or different source state;
- substitute a registry, channel, artifact, or signing mode;
- retry an ambiguous publication without inspecting remote state.
If publication partially fails or acknowledgement is lost, identify which external effects committed before choosing retry, repair, deprecation, replacement, or stop. Do not assume a network error means nothing was published.
Verify From The Consumer Boundary
When publication is in scope, verify the actual public artifact when possible:
- tag resolves to the intended commit;
- published version, channel, and destinations are correct;
- checksums, signatures, provenance, and contents match the inspected artifact;
- a clean install, download, or launch path works for supported targets;
- release notes and migration links resolve;
- no unexpected artifact, credential, local configuration, or private file was published.
Do not call the release complete because the publish command exited successfully. Unavailable propagation or consumer evidence leaves the corresponding claim unverified.
Report Completion Precisely
Report:
- approved release stage and status;
- version, source commit, tag, channel, and destinations;
- compatibility basis and migration guidance;
- checks, artifact identity, and selected-review status;
- publication and consumer-side verification;
- partial failures, recovery actions, and residual risk;
- any deferred commit, migration, launch, or documentation work.
A prepared release is not published. A published release is not deployed. Use Launch Work only when production deployment or rollout is separately requested or approved.
1---2name: release-work3description: Use when preparing, publishing, or verifying a versioned software release.4---56# Release Work78Prepare or publish a traceable versioned artifact whose source, version, contents, and destination identity agree.910A commit is not a release. A tag does not prove which artifact was built. A successful local build does not prove registry contents. A published artifact is not a production deployment.1112## Establish Authority And Source1314Loading this skill, preparing release options, or approving a general implementation Plan does not authorize a version change, remote tag, release record, registry publication, deprecation, yank, or replacement. Execute only release stages explicitly requested or separately approved. Before editing, read the repository's release policy, versioning scheme, package metadata, changelog convention, release automation, supported branches, signing or provenance requirements, and latest published versions.1516Use [Decision Gate](../decision-gate/SKILL.md) when the route depends on an unresolved choice about:1718- whether to release and which channel or audience receives it;19- compatibility or breaking-change classification;20- version when policy and evidence do not decide it;21- credentials, registry, signing, provenance, or remote-tag behavior;22- yanking, deprecating, replacing, or republishing an artifact;23- release branches, history rewriting, or recovery from partial publication.2425Do not impose semantic versioning when the project uses another scheme. Before defining or changing version, source, artifact, tag, publication, or recovery identity, read [release evidence](references/release-evidence.md).2627## Define The Release Contract2829Before changing release state, establish:3031```text32Release target and audience:33Source commit / branch:34Version and compatibility basis:35Artifacts and supported platforms:36Release notes / migration guidance:37Required checks and selected reviews:38Signing / provenance / checksums:39Publication destination and channel:40Failure and recovery behavior:41Post-publication verification:42Approved preparation and publication stages:43```4445Classify consumer-observable impact rather than diff size. A small change can be breaking; a large internal refactor may preserve compatibility.4647When consumers must move before a contract can be removed, read [Migration Work](../migration-work/SKILL.md). An additive replacement release may precede migration; a breaking removal release must wait for the accepted migration and removal proof.4849## Prepare The Release5051For approved preparation work:5253- confirm the intended source is a coherent, freshly verified checkpoint and any selected review is resolved;54- reconcile version declarations, lockfiles, generated metadata, and release notes through repository-supported tooling;55- write release notes for consumers: behavior, compatibility, migration, security impact, and known limitations—not a raw commit dump;56- run the canonical build or package process from the intended source state;57- inspect the exact artifacts that would be published;58- keep credentials and signing material out of prompts, logs, diffs, and artifacts.5960Do not hand-edit generated artifacts or duplicate version truth when the repository has a canonical generator. Return required branch, commit, public-documentation, or migration work to [Workflow](../workflow/SKILL.md) unless it is included in the approved release scope.6162## Preflight The Exact Release6364Before any irreversible remote action, verify:6566- source commit, branch, and working-tree expectations;67- version is valid, unused, and consistent with repository policy;68- required tests, builds, package or install checks, and compatibility checks;69- artifact contents, entry points, names, sizes, checksums, licenses, and provenance;70- release notes and migration guidance match observable consumer impact;71- tag, registry, channel, and release destination identity;72- credentials and permissions work without exposing secrets;73- retry behavior cannot create conflicting tags or duplicate releases.7475Use [Verify Work](../verify-work/SKILL.md) to state what each check proves. A dry run proves only the boundaries it exercises; name signing, registry, propagation, or publication behavior that remains unverified.7677## Publish Only The Approved Stage7879Create remote tags, release records, or registry publications only when explicitly requested or approved for the inspected release contract.8081Use the repository's canonical order. Stop when source, version, tag, artifact, signing mode, channel, or destination identity diverges.8283Do not silently:8485- overwrite an existing version;86- force-move a release tag;87- publish from a dirty or different source state;88- substitute a registry, channel, artifact, or signing mode;89- retry an ambiguous publication without inspecting remote state.9091If publication partially fails or acknowledgement is lost, identify which external effects committed before choosing retry, repair, deprecation, replacement, or stop. Do not assume a network error means nothing was published.9293## Verify From The Consumer Boundary9495When publication is in scope, verify the actual public artifact when possible:9697- tag resolves to the intended commit;98- published version, channel, and destinations are correct;99- checksums, signatures, provenance, and contents match the inspected artifact;100- a clean install, download, or launch path works for supported targets;101- release notes and migration links resolve;102- no unexpected artifact, credential, local configuration, or private file was published.103104Do not call the release complete because the publish command exited successfully. Unavailable propagation or consumer evidence leaves the corresponding claim unverified.105106## Report Completion Precisely107108Report:109110- approved release stage and status;111- version, source commit, tag, channel, and destinations;112- compatibility basis and migration guidance;113- checks, artifact identity, and selected-review status;114- publication and consumer-side verification;115- partial failures, recovery actions, and residual risk;116- any deferred commit, migration, launch, or documentation work.117118A prepared release is not published. A published release is not deployed. Use [Launch Work](../launch-work/SKILL.md) only when production deployment or rollout is separately requested or approved.