agentsclimarketplace

Create release workflow

Skill mhenke/john-ousterhout-skills/skills/create-release-workflow

Strategic software design guidelines for AI coding agents. 15 behavioral rules + critique/audit commands based on A Philosophy of Software Design by John Ousterhout.

Install
npx -y skills add mhenke/john-ousterhout-skills --skill create-release-workflow

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 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

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.

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, 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 clean
  • git log origin/main..HEAD — no unpushed commits
  • git 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

StepFailureFix
2. Tag pushgit 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 creationgh release create or changelog extraction failsGitHub 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 updateNo main reference found in READMEThe install examples may already point to a tag. Update them to the new tag directly.
5. Push rejectedRemote has new commitsgit 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 main branch is the development edge — may contain unreleased changes
  • Users pinning to a tag get stability; users on main get 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

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.