From reviw-plugin
Verifies task completion via build checks, Playwright screenshots/videos for web/fullstack, test outputs for backend, Maestro screenshots for mobile; opens artifacts and requires user approval.
npx claudepluginhub kazuph/reviw --plugin reviw-pluginThis skill is limited to using the following tools:
<command-name>tiny-done</command-name>
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
tiny-done
軽量タスクの完了検証コマンド。 スクショ・動画を撮影 → openで開く → ユーザー承認で完了。
ALL checkpoints must be passed before task completion. Do NOT report completion without user approval.
tiny-doneは/doneの軽量版です。REPORT.md・レビューエージェント・npx reviwを省略する代わりに、スクショ・動画をopenで直接開いてユーザー確認します。完了基準は同じ(ユーザー承認まで終わらない)。
| done(フル) | tiny-done(軽量) | |
|---|---|---|
| ビルド検証 | あり | あり |
| スクショ・動画撮影 | あり | あり |
| 保存先 | .artifacts/<feature>/ | /tmp/tiny-done/ |
| レビューエージェント | 4並列(code-security, e2e, ui-ux, Codex) | なし |
| REPORT.md | 作成+検証 | 作らない |
| npx reviw | 必須 | なし |
| 確認方法 | reviw上でレビュー | openコマンドで直接開く |
| ユーザー承認 | 必須 | 必須 |
# プロジェクトに応じたビルドコマンドを実行
npm run build # or pnpm build, etc.
webapp-testing skill でスクショ撮影
撮影したファイルを /tmp/tiny-done/ に保存
/tmp/tiny-done/test-output.txt に保存take_screenshot で現在の画面を撮影/tmp/tiny-done/ に保存撮影したスクショ・動画・テスト結果を必ずopenで開く。
# スクショを開く
open /tmp/tiny-done/screenshot.png
# 動画を開く
open /tmp/tiny-done/demo.mp4
# テスト結果を開く(backendの場合)
open /tmp/tiny-done/test-output.txt
openせずに完了報告することは禁止。ユーザーが目で確認できる状態にする。
AskUserQuestionでユーザーに確認を求める。
Question: "この内容でOKですか?"
Header: "確認"
Options:
1. "OK" - 承認する
2. "修正が必要" - フィードバックを伝える
ユーザーがOKと言わなかった場合:
☑ 4 → ユーザー「NG: ○○を直して」
↓
修正実装(TDDサイクル維持)
↓
再度 ☑ 2 → ☑ 3 → ☑ 4(撮影→open→ユーザー確認)
↓
ユーザーがOKと言うまでループ
中断後にセッションを再開した場合:
# worktreeの確認
git wt
# worktreeに移動
cd .worktree/<branch-name>
# TodoListで進捗確認 → 未完了タスクから再開