ContinuousClaudeV4.7: Skill for Claude Code

.claude/skills/review/SKILL.md

review is a skill for Claude Code from parcadei/ContinuousClaudeV4.7. It costs 23 tokens per session (1,604 once invoked), scanned A, original, MIT.

A code-review skill that combines automatic checks with a human-like review of the changes. It examines issues such as bugs, complexity, security risks, and affected code.

In plain words
What is it for?
Use it to review local changes, staged files, work since a branch point, or a selected path before pushing or merging.
Why use it?
It helps find problems before code is merged, including issues that simple formatting or compilation checks may miss. The review can focus on all uncommitted work, staged changes, a directory, or a security pass.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: names the AskUserQuestion tool; mentions Claude Code.

This is parcadei/ContinuousClaudeV4.7's own configuration. It tells Claude Code how to work on ContinuousClaudeV4.7 itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything ContinuousClaudeV4.7 configures →

Reuse

Borrowing it

Nothing to install: this file belongs to parcadei/ContinuousClaudeV4.7. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/parcadei/ContinuousClaudeV4.7/main/.claude/skills/review/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/parcadei/ContinuousClaudeV4.7

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/parcadei/continuousclaudev4.7/review.svg)](https://agentmods.dev/skills/parcadei/continuousclaudev4.7/review)
Your own site
<a href="https://agentmods.dev/skills/parcadei/continuousclaudev4.7/review"><img src="https://agentmods.dev/badge/skills/parcadei/continuousclaudev4.7/review.svg" alt="Measured on agentmods" height="20"></a>
Per session 23 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,604 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00023 $0.01604
Opus 5 $0.00012 $0.00802
Sonnet 5 $0.00005 $0.00321
Haiku 4.5 $0.00002 $0.00160

Measured 6d ago against content hash b9acb7a5a701, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

review 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 6d 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.

.claude/skills/review/SKILL.md · 99 lines

How it starts

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

Hybrid review anchoring LLM reasoning on deterministic structural analysis. Runs locally, no cloud, no cost per seat. You dispatch structural analysis to agents, keep main context for semantic reasoning over their findings.

Use for "review this code", "review my changes", "review my PR", "check before I merge", pre-push quality gates, "what did I break?"

Architecture: Phase 1 runs bugbot L1/L2 + tldr impact/smells/complexity/security via parallel agents for structural facts. Phase 2 applies Claude Code semantic reasoning over facts + git diff for unified review.

Arguments: /review (full review uncommitted), /review --staged (staged only), /review --base-ref main (since main), /review --quick (bugbot + smells only), /review --security (add security focus), /review <path> (specific directory).

Parse arguments setting SCOPE (default .), BASE_REF (default HEAD), STAGED_FLAG (--staged if applicable), MODE (full/quick/security). Run git diff --stat ${BASE_REF} or git diff --staged --stat to understand changes. If no changes, stop. Extract changed files and function names from diff.

Launch 3 parallel agents for structural analysis:

Agent 1 (bugbot): subagent_type: "general-purpose" with prompt "Run bugbot differential analysis and return ALL output verbatim. Commands: tldr bugbot check --format json --no-fail --quiet ${STAGED_FLAG} --base-ref ${BASE_REF} ${SCOPE}. Return complete JSON output, do not summarize or filter."

Agent 2 (impact-analysis): subagent_type: "general-purpose" with prompt "For each changed function [LIST FROM DIFF], run impact and whatbreaks analysis. Return ALL output verbatim as JSON. For each function run: tldr impact <function_name> ${SCOPE} --format json --quiet and tldr whatbreaks <function_name> ${SCOPE} --format json --quiet. Also run tldr dead ${SCOPE} --format json --quiet on each changed file. Return all results combined."

Agent 3 (quality-analysis): subagent_type: "general-purpose" with prompt "Run quality and security analysis on changed files [LIST FROM DIFF]. Commands: tldr smells ${SCOPE} --format json --quiet, tldr hotspots ${SCOPE} --format json --quiet. For each changed file with functions: tldr complexity <file> <function> --format json --quiet, tldr cognitive <file> --format json --quiet. If MODE security or full add: tldr secure ${SCOPE} --format json --quiet, tldr taint <file> <function> --format json --quiet for endpoint/handler functions. Return all results combined."

Wait for all agents. Gather context by reading agent outputs plus running git diff ${BASE_REF} --unified=5 ${SCOPE} (or git diff --staged --unified=5 ${SCOPE}). If diff >500 lines, focus on files with most bugbot/tldr findings.

Apply semantic reasoning over structural findings + actual code. You reason over computed facts, not guesses.

For bugbot L1 findings: read actual code around each finding, assess if real issue or acceptable in context, suggest concrete code changes, evaluate if linter severity matches actual risk.

For bugbot L2 findings: signature regressions check if all callers updated and which missing, born-dead code assess if intentionally staged or forgotten, complexity increases check if justified or suggest extraction, new code smells evaluate if real design problem or acceptable.

For impact analysis: identify touched high-centrality hub functions, map downstream affected code, check test coverage of affected paths using tldr change-impact if needed.

For quality metrics: find complexity hotspots (high-churn AND high-complexity functions), identify cognitive complexity spikes making functions harder to understand, spot newly introduced dead code (unreachable functions, unused imports).

For security (if mode includes): analyze taint flows for unsanitized user inputs reaching sensitive sinks, check resource leaks (opened files/connections not closed on error paths), detect vulnerability patterns (SQL injection, XSS, command injection).

Output format:

Read the full file on GitHub · 99 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. 6d ago First seen · 99 lines · 23 tokens per session scan A b9acb7a5a701

Subscribe to this mod's changes

review is a skill published in the GitHub repository parcadei/ContinuousClaudeV4.7 (48 stars, last pushed 4mo ago), licensed MIT. It adds 23 tokens to every session and 1,604 once invoked, about $0.0001 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-08-30.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…

microsoft/ai-agents-for-beginners · 200 tokens

next-cache-components-adoption

Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…

vercel/next.js · 95 tokens

chat-pet-sprite-creation

Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.

microsoft/vscode · 53 tokens

cpu-profile-analysis

Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…

microsoft/vscode · 71 tokens

insight-error-page

Write or audit an insight-kind error page for the Next.js dev overlay. Use when creating a new errors/ .mdx page, auditing an existing one, or checking that a page matches the framework fix cards. Covers page structure, title alignment, FixCard cards with Copy prompt button, code snippets, terminology verification…

vercel/next.js · 83 tokens