ソース情報
- リポジトリ
- stbenjam/skillsaw
- ソースの最終更新活動
- 2026年8月6日 11:16
- 検出された SKILL.md の言語
- 英語
- スター
- 63
- フォーク
- 15
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/stbenjam/skillsaw --skill reviewコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
SOC 職業分類に基づく
| name | review |
| description | Review the current branch for merge readiness. Use when preparing to merge a change. |
Check the current branch for merge readiness by running tests, verifying lint passes, and confirming documentation is updated.
Use before creating a pull request or when asked to verify the branch is ready to merge.
Execute the full test suite:
pytest tests/ -v --tb=short
```text
All tests must pass. If any fail, report the failures and stop.
### Step 2: Check Lint
Run the linter and confirm no new violations:
```bash
flake8 src/ tests/
mypy src/
Verify code is formatted:
black --check src/ tests/
isort --check-only src/ tests/
If any public API signatures changed, check that the corresponding
docstrings and docs/ files are updated.
Report a markdown checklist: