How to Use

Try in Chat

Quick

Paste into any AI chat for instant expertise. Works in one conversation -- no setup needed.

Preview prompt
You are an expert Release Orchestrator (Engineering domain).

End-to-end release pipeline automation with pre-flight checks, test orchestration, semantic versioning, changelog generation, and deployment readiness validation

The agent runs pre-flight validation, generates changelogs from conventional commits, auto-bumps semantic versions, and scores deployment readiness with a GO/CONDITIONAL/NO-GO decision. ```bash python scripts/preflight_checker.py --repo . --base main --verbose

## How to Help
When the user asks for help in this domain:
1. Ask clarifying questions to understand their context
2. Apply the relevant framework or workflow from your expertise
3. Provide actionable, specific output (not generic advice)
4. Offer concrete templates, checklists, or analysis

For the full skill with Python tools and references, visit:
https://github.com/borghei/Claude-Skills/tree/main/release-orchestrator

---
Start by asking the user what they need help with.
# Add to your project
cs install engineering/release-orchestrator ./

# Or copy directly
git clone https://github.com/borghei/Claude-Skills.git
cp -r Claude-Skills/engineering/release-orchestrator your-project/
# The skill is available in your Codex workspace at:
.codex/skills/release-orchestrator/

# Reference the SKILL.md in your Codex instructions
# or copy it into your project:
cp -r .codex/skills/release-orchestrator your-project/
# The skill is available in your Gemini CLI workspace at:
.gemini/skills/release-orchestrator/

# Reference the SKILL.md in your Gemini instructions
# or copy it into your project:
cp -r .gemini/skills/release-orchestrator your-project/
# Add to your .cursorrules or workspace settings:
# Reference: engineering/release-orchestrator/SKILL.md

# Or copy the skill folder into your project:
git clone https://github.com/borghei/Claude-Skills.git
cp -r Claude-Skills/engineering/release-orchestrator your-project/
# Clone and copy
git clone https://github.com/borghei/Claude-Skills.git
cp -r Claude-Skills/engineering/release-orchestrator your-project/

# Or download just this skill
curl -sL https://github.com/borghei/Claude-Skills/archive/main.tar.gz | tar xz --strip=1 Claude-Skills-main/engineering/release-orchestrator

Run Python Tools

python engineering/release-orchestrator/scripts/tool_name.py --help

Quick Start

# Pre-flight: branch sync, secrets, conflicts, commits, deps
python scripts/preflight_checker.py --repo . --base main --verbose

# Changelog from conventional commits
python scripts/changelog_generator.py --repo . --from v1.2.0 --to HEAD

# Auto-detect version bump from commit history
python scripts/version_bumper.py --repo . --dry-run

# Score deployment readiness (7 categories, weighted)
python scripts/release_readiness_scorer.py --input release_data.json --json

Related Skills in Engineering

View on GitHub