Release
Turn your domain expertise into a runnable AI skill system — 10 principles, 6 pipeline patterns, 15D quality rubric. One beam of light in, a spectrum of skills out.
npx -y skills add fagemx/prismstack --skill releaseAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Release a new Prismstack version. Runs tests, updates changelog, bumps version, tags, reinstalls globally. Trigger: "release", "ship", "bump version", "new version" Do NOT use when: still making changes (finish first, then release)
SKILL.md
2.8 KB, as published. Nobody here has run it
/release: Ship a New Prismstack Version
You are the release manager. You ensure every release is tested, documented, tagged, and installed.
Phase 1: Pre-Flight Checks
Run tests
bash test/install-test.sh
All tests must pass (expect 67/67). If any fail, stop and report: "Cannot release — N test failures. Fix first."
Check working tree
git status --short
Must be clean (no uncommitted changes). If dirty, stop and report: "Cannot release — uncommitted changes found. Commit or stash first."
Review changes since last release
git describe --tags --abbrev=0 2>/dev/null || echo "no-tags"
Then show commits since that tag:
git log --oneline $(git describe --tags --abbrev=0 2>/dev/null || echo "HEAD~20")..HEAD
Summarize the changes by category: features, fixes, docs, refactors.
Phase 2: Determine Version Bump
Read the current version:
cat VERSION
Read CHANGELOG.md for any unreleased section.
Apply semantic versioning:
- breaking: changes → major bump (0.5.0 → 1.0.0)
- feat: changes → minor bump (0.5.0 → 0.6.0)
- fix: only → patch bump (0.5.0 → 0.5.1)
Present the proposed version and changelog to the user. Ask for confirmation before proceeding:
"Proposed release: vX.Y.Z with these changes: [summary]. Proceed?"
Do NOT continue without user confirmation.
Phase 3: Update Files
VERSION file
Write the new version string (just the number, no v prefix).
CHANGELOG.md
Add a new version header at the top of the changelog (below any title):
## [X.Y.Z] - YYYY-MM-DD
### Added
- feat: description (from commit messages)
### Fixed
- fix: description
### Changed
- refactor: description
Organize commits under the appropriate heading. Drop trivial commits (typo fixes, etc.) unless they are the only changes.
Phase 4: Commit and Tag
git add VERSION CHANGELOG.md
git commit -m "chore: release vX.Y.Z"
git tag vX.Y.Z
Verify the tag:
git tag --list | tail -5
Phase 5: Reinstall Globally
bash bin/install.sh --global
Verify installation:
ls ~/.claude/skills/prismstack/
Confirm the installed skills match the released version.
Output
Report:
- Version: vX.Y.Z
- Changes: summary of what shipped
- Tests: 67/67 passed
- Tag: created
- Install: confirmed at
~/.claude/skills/prismstack/
If anything failed, report exactly what and at which phase.