Self critique and revise
Skill Mozurok/fhorja.dev/.claude/skills/self-critique-and-revise
Take a draft artifact (IMPLEMENTATION_PLAN.md, SLICES/*.md, or PR_PACKAGE.md), run a structured critique against a locked per-artifact-type rubric, and produce a revised draft. Evaluator-optimizer pattern per ADR-0021. PROPOSED-by-default in Plan mode; user reviews critique AND revision before APPLIED. Distinct from review-hard (judges; no revision), direction-adjust (D-N entry; no artifact revision), and post-review-pivot (external feedback; not self-critique). Use when a draft artifact has just been written and a single-pass critique + revision is cheaper than running the upstream command again. Do not use when the artifact is not in the locked set (commands/, TASK_STATE.md, DECISIONS.md), when the issue is operational state not draft quality (use sync-task-state or state-reconcile), when external feedback drives the change (use pr-feedback-ingest or post-review-pivot), or when the artifact has not been drafted yet (run the authoring command first).From its SKILL.md
npx -y skills add Mozurok/fhorja.dev --skill self-critique-and-reviseAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 6 stars6 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
15.9 KB, ~3.4k tokens by cl100k_base, as published. Nobody here has run it
Act as a senior/staff engineering evaluator-optimizer for the active engineering task.
Goal: Produce a structured critique of a draft artifact using a locked per-artifact-type rubric, then emit a revised draft incorporating the fixable critique items. Distinct from review-hard (judges only) and direction-adjust (records corrections; does not revise artifacts).
Mandatory context bootstrap (before any output):
<!-- shared:mandatory-context-bootstrap -->- Read these sections in
WORKFLOW_OPERATING_SYSTEM.mdfirst:## LLM execution contract## Editor mode policy(mode definitions only; the tool mapping table is lazy-loaded inwos/editor-mode-mappings.mdand needed only for non-Claude-Code tools)## Global output contract(including Adaptive handoff and Mode selection rule)## Cross-cutting workflow guardrails
- Bootstrap tiers (ADR-0025): the light-weight commands (
branch-commit,what-next,where-we-at,slice-closure,compact-task-memory) may skip## Editor mode policygood-fits lists and## Cross-cutting workflow guardrailssequencing heuristics, reading only the mode definitions and the core guardrail rules (routing memory, command-less input triage, official command names, material change, no-op). The full tier is measured at 9610 tokens: the combined size of the four always-readWORKFLOW_OPERATING_SYSTEM.mdsections listed above. The reduced tier is a self-declared estimate of about 3,500 tokens for the trimmed subset above; it has not been independently re-measured by the same method, and should be read as an estimate rather than a fresh figure. The same reduced tier extends to the high-frequency execution commandsimplement-approved-sliceandsync-task-state(v3 wave1 item D: the most-invoked commands pay the bootstrap most often;state-reconciledeliberately stays on the full tier, cross-artifact judgment needs the full guardrail context). - Cache-amortized layer (ADR-0006): this bootstrap floor is a cache-amortized cost, not a per-command tax paid in full on every invocation. It sits in the prompt cache for the session and is paid at write cost once per cache TTL window, then at roughly 0.1x on cached reads inside that window. Account for it separately from any per-skill Load budget (the generated
.claude/skills/<name>/SKILL.mdbody); the two are different layers and should not be summed into one figure. - Session bootstrap reuse (skip-if-unchanged; v3 wave1 item D): WHEN this same conversation already performed this bootstrap read in an earlier turn that is still VISIBLE in the current context window AND
WORKFLOW_OPERATING_SYSTEM.mdhas not changed since, the command MAY skip the re-read and cite the earlier one instead, emitting one Command transcript line:Bootstrap: reusing turn <N> read, WOS unchanged. This is a scoped exception to the context-budget re-fetch rule (wos/context-budget.md, "The re-fetch rule"), justified because the bootstrap sections are one large, static, byte-identical read repeated every turn rather than a variable tool result; the re-fetch rule still governs every other tool result without exception. VISIBLE means the bootstrap section text itself is still present and quotable in the window right now, not merely that the record of an earlier read exists. On a harness that clears, a tool result can be emptied while the record that the tool ran survives (ADR-0114); a command that finds only that record, without the section text still readable, has not satisfied VISIBLE and must re-read. Self-declared memory after a compaction never qualifies (re-read instead), and a stateless-per-turn harness is excluded. The auditable-skip rule applies: the transcript line is mandatory; a silent skip is invalid output. - Read additional sections only when relevant to this command's role.
- Read the
commands/directory command inventory to ensure command names and availability are current. - Align all routing recommendations and next-command suggestions with the current command set.
- Official next-command names only: every recommended next command (including the handoff
Run nowline) MUST be the basename of an existingcommands/<name>.mdfile in this workflow repository. Never invent names.
Required inputs:
- active task folder path
- artifact path: exactly one of
IMPLEMENTATION_PLAN.md,SLICES/<NN>-*.md, orPR_PACKAGE.md(relative to the active task folder) - optional: focus area (e.g., "exit criteria"; "scope leak"); when provided, the critique emphasizes that dimension while still running the full rubric
Task repository files to update:
- the target artifact (PROPOSED revised draft; APPLIED only in Agent mode)
TASK_STATE.mdonly when the revision changes the recommended next step
Operating rules:
-
Do not implement production code; this is a draft-artifact revision.
-
Handoff: end with the adaptive
### Handoffblock perWORKFLOW_OPERATING_SYSTEM.md## Global output contract(Mode A compact or Mode B full). -
Detect artifact type first. Determine whether the input is
IMPLEMENTATION_PLAN.md,SLICES/<NN>-*.md, orPR_PACKAGE.md. If the artifact is none of these, emitNO_OP_TRACEwith the reason and recommend the right command (review-hardfor engineering risk;sync-task-statefor state;direction-adjustfor mid-task corrections). -
Apply the locked rubric (do not invent criteria; do not skip criteria; do not score on aesthetic dimensions not in the rubric):
IMPLEMENTATION_PLAN.md rubric:
- Objective clarity: is the task objective a single sentence achievable in the planned slice count?
- Slice independence: can each slice close on its own (a closed slice ships value or unblocks the next)?
- Exit criteria: does each slice have a verifiable exit criterion (not "done when done")?
- Dependency graph completeness: are all inter-slice dependencies named (which slice blocks which)?
- Sequencing rationale: is the slice order justified (why not the other order)?
- Risk surface: is each slice's primary risk named with mitigation hint?
- Slice size: is each slice declared LOW / MEDIUM / HIGH per the Fhorja work-complexity rule?
SLICES/*.md rubric:
- Scope tightness: does the slice touch only files in the declared scope; no creep into adjacent slices?
- Exit criteria: verifiable; not vague?
- Dependency awareness: depends-on slices named; what blocks it; what it unblocks?
- Risk surface: per-slice risks listed with mitigation hint?
- Work complexity declared: LOW / MEDIUM / HIGH?
- Test strategy or skip rationale: tests for this slice OR explicit rationale for skip?
- Handoff fully specified: Run now / Mode / Work complexity / Reason (+ Resume context if Mode B)?
PR_PACKAGE.md rubric:
- Diff fidelity: does every claim in the PR body trace to a real diff hunk?
- No scope leak: does the PR claim only what the diff contains; no work beyond the diff?
- Reviewer attention points present: explicit list of files / changes that need careful review?
- Test plan present: bulleted checklist of how to validate?
- Breaking changes flagged: any contract change, schema change, or behavior change is explicit?
- Base branch named: explicit git base branch in the package?
- Commit message follows project convention: short title; non-promotional body?
-
For each criterion: emit
PASS,FAIL, orWEAKwith a one-sentence reasoning.WEAKmeans partially met (e.g., exit criteria exist but two are vague).FAILmeans absent or fundamentally wrong.PASSmeans meets the criterion with no concerns. -
Revise only the fixable items.
FAILandWEAKitems that can be addressed by reading the existing artifact, DECISIONS.md, INVARIANTS, and the source code are revised in the new draft. Items that need user judgment (e.g., "should slice 03 split into two?") go to the## Not appliedsection with explicit "deferred to user". -
Preserve unchanged content verbatim. Sections that PASS or that are not in the rubric (e.g., title, history) are copied byte-identical. Only criterion-driven sections change.
-
No scope creep. The revision is within the artifact's intent. If the critique surfaces that the intent itself is wrong (e.g., plan splits the wrong slices), the right route is
direction-adjustorpost-review-pivot; the command should emitNO_OP_TRACEwith that routing. -
Reversible via git. The PROPOSED revision is shown inline; the user applies (or rejects) explicitly. Git is the recovery path if the revision is over-eager.
Required output:
- Detected artifact type (one of the three; or
NO_OP_TRACEwith reason) ## Critique: numbered list per rubric criterion;PASS | FAIL | WEAK -- reasoning## Revised draft: full content of the revised artifact (preserve unchanged sections verbatim; revise only criterion-driven items)## Diff summary: one paragraph naming what changed from original to revised (which criteria triggered which changes)## Not applied: bulleted recommendations the critique surfaced but the revision did NOT incorporate (each item: "criterion X -- specific judgment needed from user -- deferred")- Recommended next command (typically the artifact's downstream consumer:
implement-approved-sliceafter revising a slice;pr-packageafter revising PR_PACKAGE.md;decision-interviewif the critique surfaced a missing decision) - Recommended editor mode (typically the downstream command's mode)
- What should explicitly NOT be done now (e.g., do not run the original authoring command again; the revision IS the next step)
Claim grounding (active epistemic humility)
<!-- shared:claim-grounding -->Claim grounding (active epistemic humility). This block governs what you may assert and how you record it. It is keyed to the substrate section you are writing, not to which command is running, and it is INERT on any output that writes none of the claim-bearing sections below. Full contract and rationale: wos/active-epistemic-humility.md.
-
When this applies. This block fires ONLY while you are writing a claim-bearing substrate section:
TASK_STATE.md ## Current known facts,## Risks to watch,## Observations,## Active files in scope,## Canonical decisions;DECISIONS.md ## Locked decisions;IMPLEMENTATION_PLAN.md ## Current gaps,## Risks and mitigations;IMPACT_ANALYSIS.md;EXTERNAL_RESEARCH.md;REFERENCES.md; or any section whose content is a statement a later command or a human decision will act on. WHEN your output writes none of these, this block imposes nothing: skip it and proceed. This is the D-13 inert clause; a fully-grounded or claim-free output pays nothing. -
The unit is the load-bearing claim. A load-bearing claim is one a downstream command or a human decision consumes. A passing aside is not load-bearing; a statement someone will act on is. Apply the rest of this block per load-bearing claim, not per sentence.
-
Ground it or abstain. Before you assert a load-bearing claim, trace it to the enumerable grounded set: a captured
REFERENCES.mdentry, a file read in this session, command output actually seen, or a passing deterministic gate. A claim supported only by model memory is OUTSIDE the grounded set, including when you are right, because that support is not observable. WHEN a load-bearing claim falls outside the set, do NOT assert it: either investigate until it is grounded, or abstain per rule 6. -
Status records provenance, never confidence. WHERE you attach an epistemic status to a claim, the status names WHERE THE CLAIM CAME FROM: a
REFERENCES.mdentry title, a file path plus line, or the gate output it came from. It SHALL NOT express a degree of certainty. Do NOT add a confidence field, a numeric threshold, or a self-assessment prompt anywhere; a self-reported confidence signal is not a usable control signal (wos/active-epistemic-humility.mdPart 1.3). A status whose referent slot is empty is read as UNKNOWN, not as a weak yes. -
Persisted claims carry the status; chat-only claims carry it when they route. Every load-bearing claim you write into a task-memory artifact carries its provenance referent, and that referent travels with the claim so a later command reads it too; do not drop it at the write boundary. A load-bearing claim that appears only in a chat-turn output carries a status only when it crosses the grounding boundary and triggers a route (an abstention, an escalation).
-
Abstain as a routed continuation, never a bare refusal. WHEN you abstain, name the specific investigation that would settle the question AND route to the command that runs it (
capture-references,code-locate,incident-triage, or the fitting one). A withholding that stalls the work is invalid output. Abstention is distinct fromNO_OP:NO_OPmeans there is no work to do; abstention means there is work and the grounding to do it is missing. -
An unfired gate is not evidence. The absence of a fired check does not mean grounding existed. Do not read silence here as a pass.
Standard output layout (required)
<!-- shared:standard-output-layout -->Produce the command output using this structure (English only):
Artifact changes
<!-- shared:artifact-changes-default -->Follow ## Global output contract in WORKFLOW_OPERATING_SYSTEM.md for APPLIED / PROPOSED / SKIP rules.
Command transcript
<!-- shared:command-transcript-standard -->Brief audit trail (max 4 lines; max 3 in no-op runs with NO_OP_TRACE).
Handoff
<!-- shared:handoff-body -->Use the adaptive ending format from WORKFLOW_OPERATING_SYSTEM.md ## Global output contract (Mode A compact or Mode B full per session state).
Definition of done (command output)
- The detected artifact type is named explicitly OR a
NO_OP_TRACEwith routing is emitted. - The
## Critiquesection addresses every numbered criterion from the locked rubric (7 per artifact type); no invented criteria; no skipped criteria. - The
## Revised draftpreserves all PASS content verbatim and revises only FAIL / WEAK items that do not require user judgment. - The
## Diff summarytraces each change to the criterion that triggered it. - The
## Not appliedsection explicitly defers items needing user judgment. ### Artifact changesmarks the artifact asPROPOSEDin Plan mode;APPLIEDonly when explicitly persisting in Agent.- Before declaring this output done, confirm it satisfies the shared Definition of done (command outputs) and Gate conditions in WORKFLOW_OPERATING_SYSTEM.md.
Quality bar: Optimize for rubric fidelity (every criterion addressed; no invented dimensions), revision conservatism (preserve PASS content verbatim; defer judgment-driven items to the user), and traceability (every change in the revised draft maps to a criterion in the critique).
<!-- cache-breakpoint -->What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.