.factory/skills/release/SKILL.md
Generate changelog from commits since last tag and release new version. Use when user wants to release a new version or update changelog.
npx skillsauth add sunshow/droidgear releaseInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Get the latest tag:
git tag --list --sort=-version:refname | head -1
Get commits since last tag:
git log <latest-tag>..HEAD --oneline
Calculate next version based on latest tag:
Show suggested version to user, allow modification before proceeding
Categorize commits by type:
feat: → New Features / 新功能fix: → Bug Fixes / 问题修复Update CHANGELOG.md (insert new version entry after # Changelog heading):
## vX.Y.Z followed by **New Features / 新功能** and **Bug Fixes / 问题修复** sections- English description / 中文描述(Conditional) If this release includes significant new features or major changes, update the feature descriptions in both README files:
Commit changelog changes (required before release:prepare):
# If README files were updated:
git add CHANGELOG.md README.md README_EN.md
# Otherwise:
git add CHANGELOG.md
git commit -m "docs: update changelog for <version>"
Run release workflow:
npm run release:prepare <version>
Execute git commands to complete release:
git add .
git commit -m "chore: release <version>"
git tag <version>
git push origin main --tags
development
Commit staged changes with conventional commit message. Use when user wants to commit code changes.
documentation
Fetch GitHub issues, spawn sub-agents to implement fixes and open PRs, then monitor and address PR review comments. Usage: /gh-issues [owner/repo] [--label bug] [--limit 5] [--milestone v1.0] [--assignee @me] [--fork user/repo] [--watch] [--interval 5] [--reviews-only] [--cron] [--dry-run] [--model glm-5] [--notify-channel -1002381931352]
documentation
Maintain the OpenClaw memory wiki vault with deterministic pages, managed blocks, and source-backed updates.
documentation
Feishu knowledge base navigation. Activate when user mentions knowledge base, wiki, or wiki links.