Review
Review procedure for task PRs — deterministic tool output first, LLM judgment second, verdict on the board. Use when reviewing a task's pull request or when asked for a task-agent review.From its SKILL.md
npx -y skills add digitaldreams/tuhin --skill reviewAssembled 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
2.0 KB, 453 tokens by cl100k_base, as published. Nobody here has run it
Review
Review one draft PR produced by the task workflow. Output: PR comments plus a single verdict. Reviewers never push fixes — they report.
Order matters: tools before opinions
- Gather deterministic signal first (in the PR's worktree or a fresh checkout
of the branch):
vendor/bin/pint --test— stylevendor/bin/phpstan analyse— types/bugs (if installed)php artisan test— behaviorgh pr diff <number>— the actual change Any gate failure is an automatic fail verdict; report the output, done.
- LLM review only for what tools can't catch, anchored to diff lines:
- does the change do what the task + approved plan say, nothing more?
- missing test cases for the changed behavior (not style preferences)
- security at trust boundaries: validation, authorization, mass assignment, query injection
- N+1 queries, unbounded queries, missing indexes for new query paths
- conventions: follows Laravel Boost guidelines,
docs/conventions.md, and the code-standards skill (cite CS-n in findings)
- Skip entirely: style nits Pint already enforces, hypothetical refactors, scope expansion ("while you're here…"), praise padding.
Report
Post one PR comment via gh pr comment (or reply inline where supported):
task-agent review — TASK-<n>
Gates: pint ✓ / phpstan ✓ / tests ✓
Findings:
1. <file:line> — <problem> — <required fix> (only real findings; empty is fine)
Verdict: PASS | FAIL — <one-line reason>
Verdict → board
- PASS → task
status: done. Note "ready for human merge" in the comment — the reviewer never marks the PR ready and never merges. - FAIL → task
status: blockedwith the findings summary as an indented board comment. Fixes are a new run's job (human resets status after triage).
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.