소스 정보
- 저장소
- 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명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? 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.