.agents/skills/harness-reviewer/SKILL.md
Use when acting as a dedicated reviewer subagent for one assigned harness review slot in an existing review round and you need to inspect the change, write structured findings, and submit them through `harness review submit`. This skill is only for reviewer subagents, not for the controller agent.
npx skillsauth add catu-ai/easyharness harness-reviewerInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Use this skill only in reviewer subagents, including a reviewer subagent that the controller later resumes for the same slot within the same tracked step review boundary or for the same finalize review title in the same revision.
The reviewer agent owns exactly one review slot in an existing review round. It
does not start rounds, aggregate rounds, orchestrate other reviewers, or infer
workflow current_node on the controller's behalf.
This is a strong-reviewer role, not a passive checklist runner. Read the full active plan, use the repository tools needed to inspect the change properly, and use the round-local submission artifact to keep enough review state that you do not stop after the first one or two findings.
Submit exactly one structured payload with:
harness review submit --round <round-id> --slot <slot> --by <reviewer-name> --input <path>
Use this payload shape:
{
"summary": "Short review summary.",
"findings": [
{
"severity": "important",
"title": "Short finding title",
"details": "Concrete explanation of the issue and why it matters.",
"locations": [
"path/to/file.go",
"path/to/file.go#L123",
"path/to/file.go#L1-L3"
]
}
],
"worklog": {
"full_plan_read": true,
"checked_areas": [
"docs/plans/active/2026-04-09-example.md",
"internal/review/service.go"
],
"open_questions": [],
"candidate_findings": [
"Verify whether the delta anchor guidance matches the implementation."
]
}
}
Rules:
summary is requiredfindings may be empty when the slot finds no issues--by is required and should name the reviewer thread that owns the slot
submissionworklog are allowed and remain in the stored
submission artifact, but aggregate still only uses canonical summary and
findingslocations is optional on each findingblocker, important, and minorlocations should use repo-relative paths and only these
lightweight forms:
path/to/file.gopath/to/file.go#L123path/to/file.go#L1-L3submission.json as the progressive working artifact for the roundUse severities like this:
blocker
important
minor
Prefer no finding over a vague finding. If the issue is real, say exactly what is wrong and why it matters to your assigned slot.
If the current plan explicitly defers a risk and the implementation still matches that deferral, you do not need to raise it again as a finding. Raise it only if the change contradicts the deferral, expands the risk, or makes the deferral stale.
plan_path, review title, revision context when present, slot, assigned
instructions, reviewer-owned submission_path, anchor SHA when present,
and change summary.plan_path and read the full plan
before reviewing.submission_path. That path is the reviewer-owned
working artifact for the round.submission.json progressively while you review. Keep
checked areas, open questions, candidate findings, or similar review
progress in top-level worklog-style fields instead of a separate scratchpad.delta review, start from the anchored change since Anchor SHA.
Treat that diff as the default starting lens, not a hard boundary.submission.json with harness review submit.
Include --by <reviewer-name> using a short stable name for your reviewer
thread, such as reviewer-correctness or another clear slot-owned label.harness review submit.delta review.documentation
Use when acting as a dedicated reviewer subagent for one assigned harness review slot in an existing review round and you need to inspect the change, write structured findings, and submit them through `harness review submit`. This skill is only for reviewer subagents, not for the controller agent.
data-ai
Create or update a tracked harness plan once the direction is clear enough to execute. Use this when work needs a self-contained plan that a future agent can complete from the repository alone, without relying on discovery chat or hidden session memory.
testing
Use when a tracked harness plan has been approved and the controller agent should drive implementation, review, archive closeout, publish/CI/sync evidence work, and merge-readiness follow-up until the archived candidate is genuinely ready to wait for merge approval. This is the main controller skill for day-to-day execution after approval.
testing
Run interactive, Socratic discovery before planning or execution when the objective, boundaries, tradeoffs, success criteria, size, or workflow direction are unclear, or when archived work may need to reopen. Do not use for casual Q&A, simple repo orientation, status checks, or already-approved execution.