ソース情報
- リポジトリ
- awslabs/loom
- ソースの最終更新活動
- 2026年7月9日 15:31
- 検出された SKILL.md の言語
- 英語
- スター
- 181
- フォーク
- 38
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/awslabs/loom --skill releaseコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?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.