From qol-plugin-launcher
Enforces correct release tagging, commit message rules, and CI triggers for plugin-launcher. Use this when the user asks to create or prepare a release.
How this skill is triggered — by the user, by Claude, or both
Slash command
/qol-plugin-launcher:plugin-launcher-release-flowThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill defines the strict pipeline for making changes that require a release or triggering CI.
This skill defines the strict pipeline for making changes that require a release or triggering CI.
commit skill constraints.ci.yml) runs automatically on pushes to main. If working on another branch, or if you need to force-trigger CI, include the ci token in the commit scope (e.g. fix(bug, ci): fix the parser crash). This prevents wasting GitHub Actions runner compute unless necessary.chore(release): vMAJOR.MINOR.PATCHBefore creating any release tags, ALWAYS verify that there are no dangling refs or stray tags on the remote or local repository that might conflict.
git fetch --tags to ensure the local state has all upstream tags.git tag -l with the release version you intend to make.v* formatted tag (e.g. v1.2.3)..github/workflows/release.yml workflow building cross-compiled Linux and macOS targets.git tag v1.2.3 and then push the tag git push origin v1.2.3.Guides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.
Dispatches multiple subagents concurrently for independent tasks without shared state. Use when facing 2+ unrelated failures or subsystems that can be investigated in parallel.
npx claudepluginhub qol-tools/qol-skills --plugin qol-plugin-launcher