用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/awslabs/loom --skill release命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | release |
| description | Increment the release version, draft release notes, and prepare a GitHub release. |
| disable-model-invocation | true |
| argument-hint | [new-version] |
| allowed-tools | Bash(git *) Bash(gh *) Read Edit Grep Glob |
Prepare a new release for the Loom project.
Read the current version from both files:
backend/pyproject.toml — the version field under [project]frontend/package.json — the "version" fieldDisplay the current version to the user.
If $ARGUMENTS is provided and is a valid semantic version (e.g. 1.2.0), use it as the new version.
Otherwise, ask the user what the new version should be. Suggest the next patch, minor, and major versions based on the current version (e.g. if current is 1.1.0, suggest 1.1.1, 1.2.0, or 2.0.0).
Wait for the user to confirm before proceeding.
Update the version in all three files:
backend/pyproject.toml: update the version = "..." linefrontend/package.json: update the "version": "..." linebackend/app/main.py: update both version="..." occurrences (FastAPI app and health endpoint)Commit the version bumps:
git add backend/pyproject.toml frontend/package.json backend/app/main.pychore: bump version to <new-version>Identify the previous release tag by running git tag --list 'v*' --sort=-version:refname | head -1.
Generate a changelog from commits since that tag: git log <previous-tag>..HEAD --oneline.
Also run git diff <previous-tag>..HEAD --stat to summarize scope.
Draft release notes in markdown with:
# v<new-version> Release NotesPresent the draft to the user for review before proceeding.
After the user approves the release notes:
git tag v<new-version>git push && git push --tagsgh release create v<new-version> --title "v<new-version>" --notes "<release-notes>"Confirm each destructive step (push, tag, release creation) with the user before executing.