review-clear-blocked

review-clear-blocked is a skill for Claude Code from Snowflake-Labs/cocoplus. It costs 51 tokens per session (718 once invoked), scanned A, original, MIT.

A command for resolving a blocked code-review finding by recording why it is safe to proceed and marking the finding resolved.

In plain words
What is it for?
Use it to clear a specific blocked finding with an ID and written rationale so shipping can continue when no other blockers remain.
Why use it?
It removes a blocked review item from the release process while preserving the reasoning behind the decision.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter.

Good fit Use it to clear a specific blocked finding with an ID and written rationale so shipping can continue when no other blockers remain.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/snowflake-labs/cocoplus/review-clear-blocked
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Snowflake-Labs/cocoplus --skill review-clear-blocked
Clone the repo
git clone --depth 1 https://github.com/Snowflake-Labs/cocoplus

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for review-clear-blocked

README.md
[![agentmods](https://agentmods.dev/badge/skills/snowflake-labs/cocoplus/review-clear-blocked/github.svg)](https://agentmods.dev/skills/snowflake-labs/cocoplus/review-clear-blocked)
Your own site
<a href="https://agentmods.dev/skills/snowflake-labs/cocoplus/review-clear-blocked"><img src="https://agentmods.dev/badge/skills/snowflake-labs/cocoplus/review-clear-blocked/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for review-clear-blocked

Your own site · 80×15
<a href="https://agentmods.dev/skills/snowflake-labs/cocoplus/review-clear-blocked"><img src="https://agentmods.dev/badge/skills/snowflake-labs/cocoplus/review-clear-blocked.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 51 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 718 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00051 $0.00718
Opus 5 $0.00026 $0.00359
Sonnet 5 $0.00010 $0.00144
Haiku 4.5 $0.00005 $0.00072

Measured 8d ago against content hash 7aca8486f396, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

review-clear-blocked scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.cortex/skills/cocoreview/review-clear-blocked.skill.md · 43 lines

How it starts

The opening of the file, as written. The whole thing — 43 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Your objective is to resolve a BLOCKED CocoReview finding.

Before proceeding, verify that .cocoplus/ exists. If not, output: "CocoPlus not initialized in this directory. Run $pod init to begin." Then stop.

Parse arguments: $review clear-blocked --id <finding-id> --rationale <text>. Both are required. If either is missing: output "Usage: $review clear-blocked --id --rationale " Then stop.

Steps

  1. Read .cocoplus/lifecycle/review-state.json. If it does not exist or the named finding is not present: output "Finding [id] not found in review-state.json." Then stop.
  2. Verify the finding's severity is BLOCKED. If it is not: output "Finding [id] is not a BLOCKED finding (severity: [severity]). $review clear-blocked only resolves BLOCKED findings." Then stop.
  3. If already resolved: true: output "Finding [id] is already resolved." Then stop.
  4. Record the rationale in the audit trail via the same append logic the PostToolUse hook uses for lifecycle/audit.md (if CocoAudit is enabled): event type blocked-finding-resolved, artifact the finding ID, developer input the verbatim rationale.
  5. Update the finding in review-state.json: set resolved: true, resolved_at: <ISO 8601 timestamp>, resolution_rationale: <text>.
  6. Check whether any other BLOCKING or unresolved BLOCKED finding remains in review-state.json.
    • If none remain: output "Finding [id] resolved. No other BLOCKING or BLOCKED findings remain — $ship is unblocked."
    • If others remain: output "Finding [id] resolved. [N] BLOCKING/BLOCKED finding(s) still require resolution before $ship: [list IDs]."

Exit Criteria

  • review-state.json is updated with resolved: true, a timestamp, and the verbatim rationale for the named finding
  • The rationale is recorded in the audit trail when CocoAudit is enabled
  • $ship proceeds only when zero unresolved BLOCKING or BLOCKED findings remain

Anti-Rationalization

Temptation Why Wrong
Accept an empty or placeholder rationale ("resolved", "fine") The rationale is the audit record of a human decision — a vacuous rationale defeats the purpose of requiring one
Resolve a blocking (not BLOCKED) finding through this command $review clear-blocked exists specifically for decisions outside the reviewer's authority — regular blocking findings are resolved by fixing the code, not by rationale
Skip the audit record when CocoAudit happens to be disabled Still update review-state.json — the resolution must be tracked even without the compliance audit trail

Read the full file on GitHub · 43 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 43 lines · 51 tokens per session scan A 7aca8486f396

Subscribe to this mod's changes

review-clear-blocked is a skill published in the GitHub repository Snowflake-Labs/cocoplus (720 stars, last pushed 9d ago), licensed MIT. It adds 51 tokens to every session and 718 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.