ソース情報
- リポジトリ
- patriceckhart/zot
- ソースの最終更新活動
- 2026年4月19日 12:32
- 検出された SKILL.md の言語
- 英語
- スター
- 327
- フォーク
- 33
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/patriceckhart/zot --skill test-fixコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SOC 職業分類に基づく
SKILL.md を表示中
| name | test-fix |
| description | Diagnose and minimally fix a failing test, then re-run. |
| allowed-tools | ["read","edit","bash"] |
When the user reports a failing test (or a test suite failure), work in this order. Resist the temptation to rewrite large chunks of code.
Run the failing test in isolation first. For Go: go test -run TestThing ./pkg/.... For Node: npm test -- --run TestThing. The
goal is a fast feedback loop, not the whole suite.
The same isolated test, then the immediate suite, then the full test command if applicable. Stop the moment you see green; don't keep poking.
Write 2–3 sentences: what was wrong, what changed, and which command verifies the fix. Include the diff inline.