run-release
The `run-release` command orchestrates a tagged release by triggering a GitHub workflow that creates an annotated tag and draft release. Use this after completing the Release Checklist, ensuring code reviews and security scans pass, and when ready to publish a new semantic version to the repository.
mkdir -p ~/.claude/commands && curl -fsSL https://raw.githubusercontent.com/alirezarezvani/claude-code-skill-factory/HEAD/.claude/commands/run-release.md -o ~/.claude/commands/run-release.mdrun-release.md
## Pre-flight
- Complete the Release Checklist issue.
- Ensure `/review` and `/security-scan` are green on the target branch.
## Trigger Workflow
```
/run-release vX.Y.Z [target]
```
- `vX.Y.Z`: Required semantic version tag (include the `v`).
- `target`: Optional branch/commit (defaults to `main`).
### Command
```bash
gh workflow run release-orchestrator.yml \
--ref ${target:-main} \
-f version=${version} \
-f target=${target:-main}
```
## After Triggering
1. Wait for the `Release Orchestrator` workflow to reach the environment approval step.
2. Approve the `release` environment to publish the annotated tag and draft release.
3. Review and publish the draft release on GitHub.Interactive guide for building custom Claude Code Agents and subagents. Asks straightforward questions, generates enhanced YAML frontmatter with tools/model/color/field/expertise, creates agent .md files, validates format, and helps install to .claude/agents/ or ~/.claude/agents/. Use when user wants to build workflow specialist agents.
Main navigation guide for Claude Code Skills Factory. Use when user wants to build custom Skills, Prompts, or Agents. Orchestrates and delegates to specialized guide agents.
Interactive guide for building custom Claude Code hooks. Asks straightforward questions, uses hook-factory skill, generates complete hooks with validation, and provides installation instructions.
Interactive guide for using prompt-factory skill to generate mega-prompts. Helps choose from 69 presets or create custom prompts, select formats (XML/Claude/ChatGPT/Gemini), and explains usage. Use when user wants to generate production-ready prompts for any LLM.
Interactive guide for building custom Claude Skills. Asks straightforward questions, uses SKILLS_FACTORY_PROMPT template, generates complete skill files, validates format, creates ZIP, and helps install. Use when user wants to build multi-file skill capabilities.
Trigger the Commit & Branch Guard workflow on demand.
Stage working tree changes and create a Conventional Commit (no push).
Stage, commit, and push the current branch following git governance rules.