agentsclimarketplace

Ss sdd receiving review findings

Skill Emrebener/Sublime-Skills/skills/spec-driven-development/ss-sdd-receiving-review-findings

Use inline by the SDD coordinator when the spec-review subagent returns its findings (Stage 3). Guides how to evaluate findings, decide what to fix vs push back on, and avoid performative agreement.From its SKILL.md

Install
npx -y skills add Emrebener/Sublime-Skills --skill ss-sdd-receiving-review-findings

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 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

11.5 KB, ~2.7k tokens by cl100k_base, as published. Nobody here has run it

Receiving Review Findings

Overview

Review feedback is input to evaluate, not orders to follow. The coordinator's job is to read the findings carefully, verify they're real, fix what's real, push back on what isn't, and surface to the user anything that needs human judgment.

Core principle: Verify before fixing. No performative agreement. Technical correctness over social comfort.

Announce at start: "I'm using the ss-sdd-receiving-review-findings skill to process the reviewer's findings."

When to Use

The coordinator loads this skill inline whenever the spec-review subagent returns output:

  • Stage 3 — auto spec-review findings

This skill does NOT cover the final implementation review — ss-sdd-implementing-plans handles that with its own re-dispatch-implementer loop. That review delegates fixes to a fresh implementer; this skill is about the coordinator directly handling the spec artifact.

Hard Gates

  • NEVER commit .sublime-skills/state.json. It is permanently gitignored. Do NOT bypass via git add -f, --force, git update-index, or any other mechanism. See state-schema.md "Git policy" for the full list.
  • Do NOT begin editing the artifact before reading ALL findings end-to-end first
  • Do NOT use phrases like "great point", "you're absolutely right", "thanks for catching that" — they're performative and worthless. State what you'll do, or push back.
  • Do NOT silently ignore a finding because "the user will probably catch it" — every finding gets handled or pushed back, with a reason
  • Do NOT proceed to the next stage with an unresolved CRITICAL or HIGH finding

Checklist

  1. Read all findings end-to-end before reacting
  2. Categorize: which are CRITICAL, HIGH, MEDIUM, LOW
  3. For each CRITICAL and HIGH: verify it's a real issue, then fix or push back
  4. For each MEDIUM: decide if trivial-fix-now or defer-to-open-questions
  5. For each LOW: note in passing; usually skip
  6. Re-dispatch reviewer if material changes were made (per stage protocol)
  7. Surface to user if a finding needs human judgment
  8. Escalate if the fix-loop cap (2 iterations) was hit with unresolved findings
  9. Update state file if state changed (e.g., fix iterations counted)

Step 1: Read Without Reacting

Read the entire findings report end-to-end before opening any file to edit. Why: findings can be related; partial reading leads to fix-then-undo cycles.

Step 2: Categorize by Severity

The reviewer skill puts findings in CRITICAL / HIGH / MEDIUM / LOW buckets. Treat them as:

SeverityTreatment
CRITICALMust be addressed. Verify, then fix or push back. Block stage advance until resolved.
HIGHMust be addressed. Same as CRITICAL.
MEDIUMAdvisory. Fix if trivial. Otherwise add to spec/plan Open Questions section or accept and document.
LOWNote. Usually skip. Fix only if it's a one-character correction.

If the reviewer mis-categorized something obviously (e.g., a typo flagged as CRITICAL), don't escalate it back to them — just treat it at the right level. Reviewers can be miscalibrated; you're the next reader.

Step 3: Verify Each CRITICAL/HIGH Before Acting

For each CRITICAL or HIGH finding:

  1. Read the section the finding cites in the spec or plan. Is the issue actually there?
  2. Check against project context — does the finding contradict the constitution or a prior ADR? (If yes, the finding is more important; the project's principles override.)
  3. Check against discovery context — was this decision deliberately made and recorded? (If yes, the finding might be wrong; reviewer may have missed context.)
  4. Decide:
    • Real and the spec/plan is wrong → fix
    • Real but it was a deliberate decision → push back to the reviewer (next dispatch) with reasoning, OR document in the artifact why it's deliberate
    • Not real → the reviewer is wrong; document why and proceed

Forbidden response patterns:

  • "Great point! Let me fix that..." → just state the fix
  • "You're absolutely right..." → if they're right, just fix it; if not, push back
  • Blind implementation before verification → always verify first
  • "I'll address all of these" without per-item evaluation → evaluate each separately

Step 4: Apply Fixes

If you're fixing a finding:

  • For spec issues: edit the spec file directly. The coordinator has the discovery context; you can resolve most issues without re-running discovery.
  • If the issue is too substantive (e.g., the spec is fundamentally underspecified in a way that requires going back to the user): STOP applying fixes. Surface to the user (see Step 7).
  • Always use atomic writes (write to .tmp, then mv) for any artifact edit.

Step 5: When to Push Back

Push back when:

  • The finding contradicts a deliberate decision recorded in the discovery context, an ADR, or the constitution
  • The reviewer is missing context that's in another section the reviewer didn't read
  • The finding is technically incorrect (e.g., reviewer says "X is unmeasurable" but X has a concrete metric two lines down)
  • The finding violates YAGNI ("you should also handle [scenario]" where the scenario is out-of-scope)

How to push back:

  • Don't argue with the reviewer's text (they're a subagent, they don't read replies)
  • Document the disagreement in the spec/plan inline (e.g., as a sentence: "Note: deferred per ADR-0007") so future readers know the issue was considered and dismissed
  • Track the push-back in the state file:
    {
      "reviewer_pushbacks": [
        {
          "stage": "spec_auto_review",
          "finding": "<short identifier>",
          "reason": "<your technical reasoning>"
        }
      ]
    }
    

Step 6: Re-Dispatch Reviewer if Material Changes Were Made

If you applied fixes to address CRITICAL or HIGH findings, re-dispatch the same reviewer (per the stage's protocol — typically capped at 2 fix iterations before escalating to user).

If you only made MEDIUM/LOW changes (or only pushed back), no re-dispatch is needed; proceed to next stage.

Step 7: Surface to User When Findings Need Judgment

Some findings require the user, not the coordinator. Surface them when:

  • A finding implies the spec needs decomposition (multiple subsystems) — user's call
  • A finding identifies a scope creep that the user requested but didn't realize was creep — user's call
  • A finding contradicts a recent user statement — clarify with user, not by guessing

Format:

"The reviewer found <N> CRITICAL/HIGH issues I can't resolve without your input:

  1. <Finding summary>: <Why it needs your input>
  2. ...

Options:

  • Address them now (tell me what to do for each)
  • Return to the spec stage and revise — I'll re-run discovery if needed
  • Override the reviewer (you'll need to give a reason; it goes in reviewer_pushbacks)"

Wait for the user's direction.

Step 8: Escalate on Cap Hit

The spec/plan review fix-loop is capped at 2 iterations (a hard ceiling — not config-overridable). At cap hit, you have:

  • Iteration 1: reviewer returned Issues Found → coordinator applied fixes → re-dispatched reviewer
  • Iteration 2: reviewer returned Issues Found again → coordinator applied fixes → re-dispatched reviewer
  • (If iteration 2's re-dispatch returns Issues Found again, the cap is hit)

At this point, do NOT iterate further. The pattern of unresolved findings says one of:

  • The artifact has a fundamental gap that needs human input, not more polishing
  • The reviewer is miscalibrated for this artifact's domain
  • Findings and fixes are oscillating (fix A creates issue B; fix B re-creates issue A)

Surface to user explicitly with the full history. Format:

"Spec review hit its fix-loop cap (2 iterations) with unresolved findings.

Fix history:

  • Iteration 1: reviewer flagged [N] CRITICAL/HIGH. Coordinator applied: [brief summary]. Re-review: [N] new/remaining issues.
  • Iteration 2: applied [brief summary]. Re-review: [N] still flagged.

Currently unresolved (CRITICAL/HIGH only):

  1. <Finding summary> — <last attempted fix and why it didn't satisfy the reviewer>
  2. ...

Options:

  1. Iterate with my guidance — you tell me exactly how to address each finding; I apply your edits literally (no further evaluation), commit, and we move on without another auto-review
  2. Override the reviewer — you say why each finding doesn't actually apply; I record each push-back in reviewer_pushbacks (with your reason) and we advance to the next stage
  3. Accept the current state — proceed despite unresolved findings; I record them in reviewer_pushbacks as 'accepted with known issues' and advance
  4. Abort the stage — pause the SDD run; you investigate manually and tell me to continue when ready"

Wait for user's selection. Whatever they choose:

  • Update .sublime-skills/state.json:
    {
      "spec_auto_review_iterations": 2,
      "reviewer_pushbacks": [
        { "stage": "spec_auto_review", "finding": "<id>", "reason": "<user-provided or 'cap-hit-iterate-with-guidance'>" }
      ]
    }
    
  • Do NOT re-dispatch the reviewer on iteration 3. The cap is hard.

Step 9: Update State

After processing, update the state file (atomic write) with any tracked information:

{
  "<stage>_review_iterations": <N>,
  "reviewer_pushbacks": [...],
  "updated_at": "<ISO-8601 timestamp>"
}

Do NOT commit. .sublime-skills/state.json is permanently gitignored and NEVER committed at any stage — not at Stage 7, not at Stage 8, not ever. Atomic writes update the file in place; do not git add -f or otherwise bypass the ignore.

Common Mistakes

MistakeFix
Performative agreement ("great point!")State the fix or push back; no agreement theater
Reading findings and immediately editing without verificationAlways verify against artifact + project context first
Fixing CRITICAL while ignoring HIGH because "I'll batch the HIGHs"Each CRITICAL/HIGH gets per-item evaluation; no batching to defer real work
Treating LOW findings as requiredLOW is "could fix"; usually skip
Re-dispatching reviewer after every minor changeOnly re-dispatch if material changes (CRITICAL/HIGH fixes); MEDIUM/LOW alone don't warrant re-review
Silently dismissing a finding without documenting whyPush-backs go in reviewer_pushbacks in state file; never silent
Looping more than the stage's cap without escalatingEach stage has a cap (typically 2-3); escalate to user when hit
Force-adding state.json with git add -fNEVER. Zero exceptions.
Editing .sublime-skills/.gitignore mid-pipelineNEVER. The ignore is permanent.

Red Flags

  • About to type "You're absolutely right" anywhere → STOP; delete; state the fix
  • About to "address all findings" without per-item evaluation → STOP; evaluate each
  • About to dispatch a 3rd fix-review iteration (cap is 2) → STOP; follow Step 8's escalation protocol
  • About to silently skip a HIGH finding → STOP; either fix or push back with reasoning
  • About to edit the artifact based only on the reviewer's quote, without reading the full section → STOP; read the full section first
  • About to ask the reviewer "could you clarify?" → STOP; reviewer is a subagent, you can't have a conversation; re-dispatch with a focused REVIEW_FOCUS instead
  • About to type git add -f .sublime-skills/state.json → STOP
  • About to edit .sublime-skills/.gitignore → STOP

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Gives 0 of the 12 instructions most review quality skills give in ~2.7k tokens

Counted across 1,048 of the 1,783 authors here whose files we hold, read 2026-08-07

  • Ask questions one at a timein 81 of 1048, across 64 files
  • Provide a recommended answer for each questionin 73 of 1048, across 50 files
  • Explore the codebase instead of asking answerable questionsin 66 of 1048, across 42 files
  • Resolve dependencies between decisions one-by-onein 42 of 1048, across 17 files
  • Interview the user relentlessly about the planin 38 of 1048, across 13 files
  • Order findings by severityin 31 of 1048
  • Resolve each branch of the decision treein 27 of 1048, across 5 files
  • Run a grilling sessionin 26 of 1048, across 5 files
  • Update CONTEXT.md immediately when a term is resolvedin 26 of 1048, across 11 files
  • Propose precise canonical terms for vague languagein 25 of 1048, across 7 files
  • Create documentation files lazilyin 24 of 1048, across 5 files
  • Assign severity to every findingin 24 of 1048

Said here and by no other author read

  • verify each critical or high finding before acting
  • fix real issues in the artifact directly
  • re-dispatch reviewer if material changes were made
  • surface findings requiring human judgment to the user
  • escalate to the user if the fix-loop cap is hit
  • update the state file after processing findings

Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.

Keep looking

Skills are one crate of 326,144. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.