بنقرة واحدة
verify
tsumugiプロジェクトの動作確認を行う。ビルド、lint、フォーマット、テスト、 バイナリのスモークテストを順に実行し、結果をレポートする。 `/verify` で起動。
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
tsumugiプロジェクトの動作確認を行う。ビルド、lint、フォーマット、テスト、 バイナリのスモークテストを順に実行し、結果をレポートする。 `/verify` で起動。
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
Automatically consume open GitHub issues one by one. Fetches the oldest open issue, delegates implementation to the issue-implementer agent, runs code review via the code-reviewer agent, iterates on feedback, merges the PR, and moves on to the next issue. Invoke with `/auto-issue-worker`.
tsumugiをワンショットモードで実行し、動作確認を行う。 --event-log でイベントを記録し、stdout出力とログの両方から動作を検証する。 `/run-oneshot` で起動。引数にプロンプト文字列を指定可能。
tsumugiをTUIモードで起動し、対話的な動作確認を行う。 --event-log でイベントログを出力し、Claudeがログファイルを読んで動作を検証する。 `/run-tui` で起動。引数にテストしたいプロンプトを指定可能。
استنادا إلى تصنيف SOC المهني
| name | verify |
| description | tsumugiプロジェクトの動作確認を行う。ビルド、lint、フォーマット、テスト、 バイナリのスモークテストを順に実行し、結果をレポートする。 `/verify` で起動。 |
| allowed-tools | ["Bash","Read","Grep","Glob"] |
tsumugi (local-LLM-powered coding agent) プロジェクトの品質ゲートを一括で実行し、結果をレポートする。
以下のステップを順に実行し、各ステップの成否を記録する。 いずれかのステップが失敗しても、残りのステップは続行する。
cargo build --workspace --all-targets 2>&1
Compiling / Finished で終了cargo clippy --workspace --all-targets --all-features -- -D warnings 2>&1
cargo fmt --all -- --check 2>&1
cargo test --workspace 2>&1
ビルドが成功している場合のみ実行:
./target/debug/tmg --help 2>&1
cargo-deny がインストールされている場合のみ:
command -v cargo-deny && cargo deny check 2>&1 || echo "cargo-deny not installed, skipping"
全ステップ完了後、以下の形式でサマリを出力する:
## 動作確認レポート
| ステップ | 結果 |
|----------|------|
| ビルド | PASS / FAIL |
| Clippy | PASS / FAIL |
| フォーマット | PASS / FAIL |
| テスト | PASS / FAIL (N passed, M failed) |
| スモークテスト | PASS / FAIL / SKIP |
| 依存関係チェック | PASS / FAIL / SKIP |
### 問題の詳細
(失敗したステップがあれば、エラー内容と修正の方針を記載)