release
SkillDev toolsThis skill guides your AI through the steps of putting out a software release: raising the version number, tagging the code, and verifying that everything checks out. Once added, your AI can take a release from start to finish, following each step in order so nothing gets missed.
Available today. Use it from your connected AI after setup.
No other account needed.
Add the skill, then ask your AI to prepare your next release. It will walk through bumping the version, tagging, and verification step by step.
Then ask your AI: use the release skill
What your AI can do with it
- Bump the version number for a new release
- Tag the code at the release point
- Run verification steps to confirm the release is ready
- Work through versioning, tagging, and verification in the right order
What this skill tells your AI
The instructions your AI receives, as published by devin-axis/ipollowork in .opencode/skills/release/SKILL.md and read by ahel’s review.
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 ipollowork-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 Devin-AXIS/iPolloWork -f tag=vX.Y.Z
Verify
Confirm the run and the published release.
gh run list --repo Devin-AXIS/iPolloWork --workflow "Release App" --limit 5
gh release view vX.Y.Z --repo Devin-AXIS/iPolloWork
Signals
- GitHub stars
- 6k
- Forks
- 1k
- Last commit
- Sep 2026
- Hacker News mentions
- 20
Advanced
- Catalog kind
- skill
- Gateway key
release-devin-axis- Source
- github.com/devin-axis/ipollowork