release-checklist

Sequential release gate for OrchestKit. Each step reports [PASS] or [FAIL] . Stop on first failure, suggest a fix, then continue after user confirmation.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "release-checklist" with this command: npx skills add yonatangross/orchestkit/yonatangross-orchestkit-release-checklist

Release Checklist

Sequential release gate for OrchestKit. Each step reports [PASS] or [FAIL] . Stop on first failure, suggest a fix, then continue after user confirmation.

Load details: Read("${CLAUDE_SKILL_DIR}/references/release-flow.md") for why the order matters and hotfix guidance.

Quick Reference

Category Rules Impact When to Use

Pre-Release Gates 2 CRITICAL Before every release commit

Release Commit 2 HIGH Staging, committing, tagging, pushing

Total: 4 rules across 2 categories

Quick Start

Run all pre-release gates in order (stop on first failure)

npm run build && npm test && npm run test:security && npm run typecheck bash src/skills/validate-counts/scripts/validate-counts.sh git diff # review before staging

Pre-Release Gates

Must all pass before writing any release commit. See rules/gate-build-and-test.md and rules/gate-counts-and-diff.md .

Step Command Rule File

  1. Build npm run build

rules/gate-build-and-test.md

  1. Tests npm test

rules/gate-build-and-test.md

  1. Security npm run test:security

rules/gate-build-and-test.md

  1. TypeScript npm run typecheck

rules/gate-build-and-test.md

  1. Validate counts /validate-counts

rules/gate-counts-and-diff.md

  1. Diff review git diff

rules/gate-counts-and-diff.md

Release Commit

Steps after all gates pass. See rules/commit-staging.md and rules/commit-tag-push.md .

Step Action Rule File

  1. Changelog Entry exists in CHANGELOG.md

rules/commit-staging.md

  1. Version bump package.json
  • CLAUDE.md both updated rules/commit-staging.md
  1. Stage files git add <specific files> — never -A

rules/commit-staging.md

  1. Commit release: vX.Y.Z conventional format rules/commit-tag-push.md

  2. Tag git tag vX.Y.Z

rules/commit-tag-push.md

  1. Push Run scripts/pre-push-confirm.sh — confirm first rules/commit-tag-push.md

Related Skills

  • validate-counts — Count consistency check (step 5 of this checklist)

  • audit-skills — Broader skill quality audit (run before major releases)

  • checkpoint-resume — Rate-limit-resilient pipelines for long release sessions

Common Mistakes

  • Running npm test before npm run build — tests run against stale dist

  • Using git add -A — accidentally stages secrets or unrelated in-progress work

  • Forgetting to bump CLAUDE.md version alongside package.json

  • Pushing without explicit user confirmation — irreversible on shared remotes

  • Skipping security tests — non-negotiable, even for patch releases

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

responsive-patterns

No summary provided by upstream source.

Repository SourceNeeds Review
General

domain-driven-design

No summary provided by upstream source.

Repository SourceNeeds Review
General

dashboard-patterns

No summary provided by upstream source.

Repository SourceNeeds Review
General

rag-retrieval

No summary provided by upstream source.

Repository SourceNeeds Review