Verification loop
Skill MasashiFukuzawa/agent-toolbox/plugins/toolbox/skills/verification-loop
実装中に型チェック、lint、テストを短い間隔で繰り返す。変更途中の継続検証に使う。完了時の最終品質ゲートには done を使う。「変更ごとに検証して」「lintとtestを回し続けて」を正のトリガーとし、出荷可否を確定する完了時の署名には使わない。From its SKILL.md
npx -y skills add MasashiFukuzawa/agent-toolbox --skill verification-loopAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.1 KB, 269 tokens by cl100k_base, as published. Nobody here has run it
Verification loop
手順
- リポジトリの指示と
.agents/done.ymlから最小の quick 検証セットを特定する。 - 意味のある変更単位ごとに、最も局所的で速い検証を実行する。
- 失敗したら新しい変更を重ねず、最初の根本原因を直して同じ検証を再実行する。
- 影響範囲が広がった時だけ関連テスト、型チェック、lint へ段階的に広げる。
- 実行コマンドと結果を記録し、未検証事項を明示する。
検証を通すために assertion、型安全性、lint rule を無効化しない。完了報告の直前はこのスキルではなく done の最終ゲートを実行する。