Agent skill · Documentation

skillshare-release

End-to-end release workflow for skillshare. Runs tests, generates changelog (via /changelog), optionally writes local RELEASE_NOTES, updates version numbers, commits, and drafts announcements. Use when the user says "release", "prepare release", "cut a release", "release v0.19", or any request to publish a new version. For changelog-only tasks, use /changelog instead.

runkidsgithub.com/runkidsGitHub ↗
claude-codecodexcopilotcursorMIT
Install
npx skills add runkids/skillshare --skill skillshare-release --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 5 KB
Bundled scripts: none
Path: .skillshare/skills/skillshare-release/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 2,519
Language: Go
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

End-to-end release workflow for skillshare. $ARGUMENTS specifies the version (e.g., `v0.19.0`). ## Prerequisites - All feature work merged to current branch - Working directory clean (`git status` shows no uncommitted changes) ## Workflow ### Phase 1: Validate Run full test suite and code quality checks. Fix any failures before proceeding. ```bash make check # fmt-check + lint + test (builds binary first) ``` If tests fail: fix them, don't skip. Do not ask the user — fix and re-run. ### Phase 2: Changelog Invoke `/changelog $VERSION` to generate the changelog entry. This handles: - Collecting commits since last tag - Categorizing by conventional commit type - Writing user-facing CHANGELOG.md entry - Syncing website changelog (`website/src/pages/changelog.md`) Review the output before proceeding. ### Phase 3: Release Notes Draft (Maintainer Only, Local by Default) Check if running as maintainer: ```bash git config user.name # Should match "Willie" or maintainer identity ``` **If maintainer**: Read the most recent `specs/RELEASE_NOTES_*.md` as a style reference, then generate `specs/RELEASE_NOTES_<version>.md` (no `v` prefix, e.g., `RELEASE_NOTES_0.19.0.md`). Release notes are a loca

What's inside
Steps it walks through
  1. Prerequisites
  2. Workflow
  3. Phase 1: Validate
  4. Phase 2: Changelog
  5. Phase 3: Release Notes Draft (Maintainer Only, Local by Default)
  6. Phase 4: Version Bump
  7. Phase 5: Commit & Tag
  8. Phase 6: Draft Announcements
  9. Phase 7: Present & Confirm
  10. Rules
Commands it runs
make check   # fmt-check + lint + test (builds binary first)
git config user.name  # Should match "Willie" or maintainer identity
git add CHANGELOG.md website/src/pages/changelog.md skills/skillshare/SKILL.md
Only if the user explicitly asked to commit release notes:
git add -f specs/RELEASE_NOTES_<version>.md
git commit -m "chore: release vX.Y.Z"
git tag vX.Y.Z
git push origin HEAD --tags
More from skillshare
All skills →
About this skill
What does the skillshare-release skill do?

End-to-end release workflow for skillshare. Runs tests, generates changelog (via /changelog), optionally writes local RELEASE_NOTES, updates version numbers, commits, and drafts announcements. Use when the user says "release", "prepare release", "cut a release", "release v0.19", or any request to publish a new version. For changelog-only tasks, use /changelog instead.

How do I install it?

Run `npx skills add runkids/skillshare --skill skillshare-release --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From runkids/skillshare, a repository with 2,519 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going