ソース情報
- リポジトリ
- 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 shipコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SOC 職業分類に基づく
SKILL.md を表示中
| name | ship |
| description | Finalize dev work on an issue branch — update docs, push, and open a PR. |
| argument-hint | <issue-number> |
| allowed-tools | Agent Bash(git *) Bash(gh *) Bash(cd *) Bash(cat *) Bash(ls *) Bash(wc *) Read Edit Write Grep Glob |
Finalize development work on a feature branch: update documentation, push, and submit a pull request.
$ARGUMENTS must be a GitHub issue number (e.g. 78). If missing or non-numeric, ask the user for the issue number.
Confirm that you are on a feature branch (not main). If on main, abort and tell the user to switch to the feature branch first.
Run git log main..HEAD --oneline to see all commits on this branch. There must be at least one commit. Display the commit list to the user.
Run git status to confirm the working tree is clean. If there are uncommitted changes, warn the user and ask how to proceed.
Run gh issue view $ARGUMENTS --json title,body,labels,number to get the issue title and number.
Also check if a matching markdown file exists under tmp/issues/ by looking for files that start with a zero-padded version of the issue number (e.g. issue 78 maps to a file starting with 078-). If the file exists, read it to understand the requirements for documentation updates.
Search for all SPECIFICATIONS.md files in the repository using Glob (**/SPECIFICATIONS.md). Update each relevant file with the latest design decisions from this branch's changes. Use git diff main..HEAD to understand what changed.
Search for all README.md files in the repository using Glob (**/README.md). Update each relevant file with the latest implementation details. Ensure no sensitive or account-specific information is included — no ARNs, account IDs, tokens, secrets, or endpoint URLs.
Stage and commit all documentation changes:
git add -A
git commit -m "docs: update specifications and readme for issue #$ARGUMENTS
Co-Authored-By: Claude <noreply@anthropic.com>"
Display the final commits with git log main..HEAD --oneline for the user to review.
Push the branch to the remote:
git push -u origin HEAD
Create a pull request using gh pr create. Derive the PR title and body from the issue and the work done:
gh pr create --title "<semantic-prefix>: <short description>" --body "$(cat <<'EOF'
## Summary
<2-4 bullet points describing what this PR does>
## Test Plan
<bullet list of how the changes were tested>
Closes #$ARGUMENTS
Co-Authored-By: Claude <noreply@anthropic.com>
EOF
)"
The PR body must include Closes #<issue-number> so the issue is automatically closed when the PR is merged.
Display the PR URL to the user.