Manus에서 모든 스킬 실행
원클릭으로
원클릭으로
원클릭으로 Manus에서 모든 스킬 실행
시작하기$pwd:
release-prep
// Bump patch version, update CHANGELOG, commit, tag, push and create GitHub release
$ git log --oneline --stat
stars:547
forks:27
updated:2026년 4월 21일 08:38
SKILL.md
// Bump patch version, update CHANGELOG, commit, tag, push and create GitHub release
Take a GitHub issue from triage through a PR on a fix/<id> branch
Classify one or all open issues, apply labels, request missing info
Review a PR against the Oikos Hard Constraints and decide close/request-changes/merge
| name | release-prep |
| description | Bump patch version, update CHANGELOG, commit, tag, push and create GitHub release |
| disable-model-invocation | true |
| user-invocable | true |
| argument-hint | [patch|minor|major] |
| allowed-tools | ["Read","Edit","Bash(npm version *)","Bash(git add *)","Bash(git commit *)","Bash(git tag *)","Bash(git push *)","Bash(gh release create *)","Bash(git status *)","Bash(git log *)","Bash(git diff *)"] |
Run from inside oikos/. Argument selects the semver bump (default: patch).
git status and git diff --staged. Abort if the tree is dirty with unrelated files. Summarise the pending changes.oikos/CHANGELOG.md. Insert a new ## [X.Y.Z] - YYYY-MM-DD block immediately below ## [Unreleased]. Use today's date from the currentDate context. Only use Keep-a-Changelog sections: ### Added, ### Changed, ### Fixed, ### Removed, ### Security. One bullet per user-facing change in English. Never invent entries that aren't in the diff.npm version ${1:-patch} --no-git-tag-version. Read the new version from oikos/package.json.git add oikos/CHANGELOG.md oikos/package.json oikos/package-lock.json plus any other files from the task. Never use git add -A or git add ..git commit -m "chore: release vX.Y.Z". Do not pass --no-verify. If a hook fails, fix the cause and create a new commit.git tag vX.Y.Z.git push && git push --tags.gh release create vX.Y.Z --repo ulsklyc/oikos --title "vX.Y.Z" --notes "<CHANGELOG block body>". Paste the new CHANGELOG section verbatim as notes.--force, never --no-verify, never --no-gpg-sign.GH_TOKEN must come from the shell environment, never from a hard-coded literal in this file or in commit messages.gh release create fails with a 401/403, stop and report — do not paste a token inline.git status shows uncommitted work unrelated to the release, stop and ask the user.