ソース情報
- リポジトリ
- 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 issueコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SOC 職業分類に基づく
SKILL.md を表示中
| name | issue |
| description | Implement a GitHub issue end-to-end — branch, code, test, docs, and commit. |
| argument-hint | <issue-number> |
| allowed-tools | Agent Bash(git *) Bash(gh *) Bash(cd *) Bash(make *) Bash(npm *) Bash(uv *) Bash(python *) Bash(cat *) Bash(ls *) Bash(mkdir *) Bash(cp *) Read Edit Write Grep Glob TaskCreate TaskUpdate TaskGet TaskList |
Implement a GitHub issue end-to-end: fetch the issue, create a feature branch, implement all requirements, test, update docs, and commit.
$ARGUMENTS must be a GitHub issue number (e.g. 78). If missing or non-numeric, ask the user for the issue number.
Run gh issue view $ARGUMENTS --json title,body,labels to get the issue details.
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 for additional context.
Display the issue title and a brief summary to the user.
Determine the branch name from the matching issue markdown filename under tmp/issues/, but without the .md extension. For example, if the file is 078-my-feature.md, the branch name is 078-my-feature.
If no matching file exists, derive the branch name from the issue number and title: zero-pad the issue number to 3 digits, kebab-case the title, and join with a hyphen (e.g. 078-my-feature-title).
Create and switch to the feature branch: git checkout -b <branch-name>.
Read the full issue body and any linked markdown file. Identify all discrete requirements.
Create a task list using TaskCreate for each requirement so progress can be tracked.
Before writing any code, present the implementation plan to the user and wait for confirmation.
Use an agent team to parallelize independent work where possible:
backend/ following project conventions (Python, FastAPI, type hints, SQLAlchemy).frontend/ following project conventions (TypeScript, ESM, shadcn, Tailwind, Vite).iac/ following AWS SAM / CloudFormation conventions.agents/ with isolated virtual environments.Update TaskUpdate as each requirement is completed.
Run existing tests to check for regressions:
cd backend && make test (or the appropriate makefile target)cd frontend && npm test (if test scripts exist)If the issue specifies new test cases, implement and run them.
All tests must pass before proceeding.
Update the following documentation files to reflect the new changes:
Run the full test suite one more time to confirm nothing was broken during documentation updates.
Review all changes with git diff to verify correctness and ensure no secrets or credentials are included.
Stage and commit all changes locally using semantic commit messages. Group related changes into logical commits:
feat: for new featuresfix: for bug fixesdocs: for documentation updatestest: for test additionsrefactor: for code restructuringchore: for build/config changesDo NOT push to remote. Only commit locally.
Append Co-Authored-By: Claude <noreply@anthropic.com> to each commit message.
Report a summary of all commits created.