Create release workflow
Skill mhenke/john-ousterhout-skills/skills/create-release-workflow
Use when creating a new release — drafting a changelog entry, creating git tags, publishing via GitHub Releases, or updating README install examples to pin to the latest tagged version.From its SKILL.md
npx -y skills add mhenke/john-ousterhout-skills --skill create-release-workflowAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 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 file declares
Copied from the file, not written here
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
4.0 KB, ~1.0k tokens by cl100k_base, as published. Nobody here has run it
Release Workflow
Overview
Standardized release process: draft CHANGELOG entry → git tag → GitHub release → update README → commit.
See CHANGELOG.md.
Version Prompting
Before starting the process, determine the next version:
git describe --tags --abbrev=0
This prints the latest tag (e.g., v0.1.0). Decide the bump type:
- Major (1.0.0): Breaking behavioral rules, SKILL.md structure, or plugin compatibility
- Minor (0.2.0): New rules, commands, or ADRs
- Patch (0.1.1): Bug fixes, docs, non-breaking refactors
No prior tag? Start at v0.1.0.
Setup
Before starting:
git status— working tree must be cleangit log origin/main..HEAD— no unpushed commitsgit fetch— remote accessible
Process
1. Draft CHANGELOG Entry
Read CHANGELOG.md to find the current latest version. Read the git log since the last tag:
git log --oneline $(git describe --tags --abbrev=0)..HEAD
# If no prior tag:
git log --oneline --all
Categorize commits: Added (feat:), Changed (refactor:, perf:), Fixed (fix:), Docs (docs:). Update CHANGELOG.md following Keep a Changelog format.
2. Create Git Tag
git tag -a v{NEW_VERSION} -m "Release v{NEW_VERSION}"
git push origin v{NEW_VERSION}
3. Create GitHub Release
Extract the current version's entry from CHANGELOG.md and use it as the release body:
# Extract changelog section for this version
python3 << 'PYEOF' > /tmp/changelog-entry.md
import sys
with open('CHANGELOG.md') as f:
content = f.read()
version = 'v{NEW_VERSION}'
start = content.find(f'## [{version}]')
if start == -1:
print(f"Error: no CHANGELOG entry for {version}", file=sys.stderr)
sys.exit(1)
end = content.find('\n## [', start + 1)
if end == -1:
end = content.find('\n[Unreleased]:', start)
if end == -1:
end = len(content)
print(content[start:end].strip())
PYEOF
gh release create v{NEW_VERSION} \
--title "v{NEW_VERSION}" \
--notes-file /tmp/changelog-entry.md
4. Update README Install Examples
Search README.md for raw.githubusercontent.com/mhenke/john-ousterhout-skills/ followed by a version reference. Replace with the new version tag. The /plugin install commands don't need URL changes.
5. Commit
git add CHANGELOG.md README.md
git commit -m "chore: release v{NEW_VERSION}"
git push origin main
Troubleshooting
| Step | Failure | Fix |
|---|---|---|
| 2. Tag push | git push origin v{NEW_VERSION} fails (tag exists) | Tag may already exist remotely. Run git tag -d v{NEW_VERSION} locally, then re-push. Or bump to next patch version. |
| 3. Release creation | gh release create or changelog extraction fails | GitHub CLI not authenticated? Run gh auth status. Changelog extraction failed? Verify the version heading in CHANGELOG.md matches v{NEW_VERSION} exactly. Or create the release manually at the GitHub URL. |
| 4. README update | No main reference found in README | The install examples may already point to a tag. Update them to the new tag directly. |
| 5. Push rejected | Remote has new commits | git pull --rebase origin main, resolve conflicts, re-push. Re-do steps 1-4 if CHANGELOG or README conflicts. |
Version Contract
- Tagged releases are stable snapshots with a documented CHANGELOG
- The
mainbranch is the development edge — may contain unreleased changes - Users pinning to a tag get stability; users on
mainget the latest - No formal SemVer guarantee until v1.0.0 — 0.x range acknowledges rapid evolution
Related
- Keep a Changelog — changelog format reference
references/version-examples.md— version bump examples
What ships with it: 1 file
360 B alongside SKILL.md
references/
- version-examples.md360 B
Gives 0 of the 12 instructions most automation workflows skills give in ~1.0k tokens
Counted across 813 of the 1,214 authors here whose files we hold, read 2026-09-06
- Use conventional commit message formatin 38 of 813, across 34 files
- Write tests before implementing codein 26 of 813, across 12 files
- Achieve at least 80 percent test coveragein 24 of 813, across 11 files
- Mock external dependencies for unit testsin 22 of 813, across 10 files
- Read product marketing context before asking questionsin 21 of 813, across 6 files
- Implement rollback plans for every deploymentin 21 of 813, across 9 files
- Follow the arrange-act-assert patternin 20 of 813, across 9 files
- Delete branches after mergingin 20 of 813, across 18 files
- Test all edge cases and error scenariosin 20 of 813, across 8 files
- Use semantic selectors for UI testsin 19 of 813, across 7 files
- Define sequence type and audience contextin 18 of 813, across 5 files
- Monitor feature drift and prediction distribution driftin 18 of 813, across 5 files
Said here and by no other author read
- determine the next version number
- ensure the working tree is clean
- categorize commits by type
- create a git tag
- push the git tag to origin
- extract the changelog entry for the release
Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.