plugins/runbook/skills/runbook-run/SKILL.md
Manually execute a registered runbook by name, running its actions in sequence
npx skillsauth add jason-hchsieh/marketplace runbook-runInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
You are manually executing a registered runbook's actions in sequence.
Parse arguments: /runbook-run <runbook-name>
.claude/runbooks.json and ask which runbook to runRead .claude/runbooks.json and find the named runbook
Resolve template variables in each action's command or instruction:
{{task_description}} — ask the user or use "manual runbook run" as default{{date}} — replace with current date (date +%Y-%m-%d){{branch}} — replace with current branch (git branch --show-current)Show the user what will be executed:
Running runbook "auto-version-commit":
1. [prompt] Run /bump to update the version
2. [prompt] Run /commit-and-push to commit and push all changes
Execute each action in order based on its type:
shell actions: Run the command via Bash. Show the output.
prompt actions: Follow the instruction directly. This means:
Execute actions sequentially. If one fails, stop and report the error.
Report results:
Runbook "auto-version-commit" completed:
1. [prompt] Run /bump ✓
2. [prompt] Run /commit-and-push ✓
/runbook-run <name> againtools
Bootstrap versioning for a project - detect project type, initialize git-cliff config, and generate initial CHANGELOG.md using semantic versioning
development
Validate version consistency across all project files, check semver format, git tag alignment, and changelog synchronization per https://semver.org/
tools
Generate or update CHANGELOG.md using git-cliff from conventional commit history - see https://git-cliff.org/docs/category/usage
tools
Bump the project version following semver, update all version files per https://semver.org/