
Release
- 113 installs
- 20.9k repo stars
- Updated August 5, 2026
- different-ai/openwork
Cut release friction for OpenWork-style agent apps: version bumps, changelog drafts, preflight checks, and coordinated publish steps before users hit production.
About
The release skill from different-ai/openwork guides Claude Code through structured shipping for agent-native projects: preparing versions, drafting changelogs, running preflight checks, and coordinating publish steps so releases stay consistent and low-risk.
- OpenWork-oriented release workflow
- Changelog and version coordination
- Preflight checks before publish
- Repeatable ship playbook for agent projects
- Reduces manual release toil
Release by the numbers
- 113 all-time installs (skills.sh)
- Ranked #108 of 248 Release Management skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/different-ai/openwork --skill releaseAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 113 |
|---|---|
| repo stars | ★ 20.9k |
| Last updated | August 5, 2026 |
| Repository | different-ai/openwork ↗ |
What it does
Cut release friction for OpenWork-style agent apps: version bumps, changelog drafts, preflight checks, and coordinated publish steps before users hit production.
Files
Prepare
Confirm the repo is on main and clean. Keep changes aligned with OpenCode primitives like .opencode, opencode.json, skills, and plugins when relevant.
---
Bump
Update versions in packages/app/package.json, packages/desktop/package.json, packages/orchestrator/package.json (publishes as openwork-orchestrator), packages/desktop/src-tauri/tauri.conf.json, and packages/desktop/src-tauri/Cargo.toml. Use one of these commands.
pnpm bump:patch
pnpm bump:minor
pnpm bump:major
pnpm bump:set -- 0.1.21---
Merge
Merge the version bump into main. Make sure no secrets or credentials are committed.
---
Tag
Create and push the tag to trigger the Release App workflow.
git tag vX.Y.Z
git push origin vX.Y.Z---
Rerun
If a tag needs a rerun, dispatch the workflow.
gh workflow run "Release App" --repo different-ai/openwork -f tag=vX.Y.Z---
Verify
Confirm the run and the published release.
gh run list --repo different-ai/openwork --workflow "Release App" --limit 5
gh release view vX.Y.Z --repo different-ai/openwork