Request Review logo

Request Review

Community
danielvm-git
request-review

Dispatch a fresh reviewer agent with a clean context to critique the code after audit-code passes. The reviewer has no shared state with the coding agent and gives a genuine second opinion. Use after audit-code passes, before committing, or when user wants an independent code review.

Overview

Publisherdanielvm-git
Repositorybigpowers
Skill namerequest-review
Stars
206
Forks
18
Bundled files
Instructions only
LicenseMIT
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • Self-contained

    Everything the model needs lives in the instructions — no extra files to sync.

  • Open source

    Published by danielvm-git on GitHub. Read the source before you install it.

Installation

Install the Request Review AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/danielvm-git/bigpowers.git /tmp/bigpowers
mkdir -p .claude/skills
cp -r /tmp/bigpowers/skills/request-review .claude/skills/request-review
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Request Review in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Request Review on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Request Review is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

story: e45s28

Request Review

Dispatch fresh reviewer agents with clean contexts. Reviewers have no shared state — they find what the coding agent missed.

Distinct from audit-code: audit-code is self-review (internal). This skill dispatches external agents.

Solo developer note: Reviewer agents replace the human reviewer.

Run audit-code first. Don't waste reviewer attention on hygiene issues you could have caught yourself.

Santa Method — Dual-Blind AND Gate (e45s07)

Use two independent reviewers (Reviewer A and Reviewer B) with no shared context between them or the coding agent.

ParameterValue
Reviewers2 (mandatory)
MAX_REVIEW_ITERATIONS5 (hard cap — e45s28; iteration 6 forbidden)
Pass ruleAND-gate — both reviewers must pass independently
BlindnessNeither reviewer sees the other's report until both complete

Iteration loop (max MAX_REVIEW_ITERATIONS):

  1. Dispatch Reviewer A and Reviewer B in parallel with identical briefs but separate contexts.
  2. Collect both reports. Each categorizes findings: must-fix / should-fix / consider.
  3. AND-gate: If either reviewer has must-fix findings → FAIL round. Run respond-review, fix, re-dispatch both reviewers.
  4. If both pass (zero must-fix, score ≥ 94% each) → review complete.
  5. After 5 iterations without dual pass → stop; report "Review cap exhausted (5/5). Human decision required." Do not merge.

HARD GATE — Single-reviewer pass is insufficient. Partial agreement does not satisfy the AND-gate.

Process

1. Prepare the review brief

Write a self-contained brief for each reviewer. Include:

  • What was built (feature description, not implementation)
  • Which files changed (the diff context)
  • What specs/ artifacts are relevant (active epics/eNN-*.yaml, requirements/SCOPE_LATEST.yaml, bugs/BUG-*.md)
  • What CONVENTIONS.md requires
  • What the verify command is
  • What you're most uncertain about (where you want fresh eyes)
  • Security focus — If the epic has a specs/security/epics/<id>/THREAT_MODEL.md, include the relevant vulnerability categories as reviewer focal points. Also include the false-positive exclusion rules so the reviewer avoids known-safe patterns. Tag the review as security-sensitive: true if THREAT_MODEL risk is HIGH+.

2. Fan-out parallel reviewers (e45s17)

Beyond the mandatory dual-blind pair (e45s07), optionally dispatch N dimension-specific subagents in one message — one check per agent for broader coverage (OpenAI Codex code-review-* pattern):

AgentFocus
R-correctnessLogic, edge cases, verify command result
R-conventionsCONVENTIONS.md, test quality (F.I.R.S.T)
R-securityInjection, auth, secrets (when security-sensitive)
R-designSimpler alternatives, API shape

Santa Method still applies: each agent is blind; AND-gate uses Reviewer A + B scores. Fan-out agents feed findings into respond-review but do not replace the dual-blind pair.

2b. Dispatch both reviewer agents (parallel)

Use the Agent tool twice with completely fresh contexts. Each prompt must be self-contained — no references to "our conversation" or "what we discussed."

You are code reviewer [A|B]. Review the following code changes independently.

Context: [feature description]
CONVENTIONS.md rules: [paste relevant sections]
Active epic shard: [paste or summarize from specs/epics/]

Diff: [paste git diff or describe changed files]

Verify command: [runnable command]

Review for:
1. Correctness — does the code do what was intended?
2. CONVENTIONS.md compliance — are all rules followed?
3. Test quality — do tests verify behavior (not implementation)?
4. Design — are there simpler or more robust approaches?
5. Edge cases — what inputs or states could cause failures?
6. Security — any injection, auth, or data exposure risks?
7. Refactoring smells — explicitly name any detected Fowler smells: Mysterious Name, Duplicated Code, Feature Envy, Data Clumps, Primitive Obsession, Message Chains, Middle Man

For each finding, categorize as: must-fix / should-fix / consider.
Run the verify command and report the result.

3. Collect both reports

When reviewers return:

  • Read every finding from both reports before acting on any
  • Note each verify command result
  • Compute quality score per reviewer: 100 × (total_items − must_fix − should_fix) / total_items
  • AND-gate check: both scores ≥ 94% and zero must-fix from both?

HARD GATE — If either score < 94% or either has must-fix → FAIL round. Run respond-review first. The 94% threshold also applies to npm run compliance (scripts/audit-compliance.sh).

4. Hand off to respond-review

Pass combined findings to respond-review to categorize and apply fixes. Increment iteration counter. Re-dispatch both reviewers until AND-gate passes or iteration 3 exhausted.

Report to user: "Review round [N/3]. Reviewer A: [score], Reviewer B: [score]. AND-gate: [PASS|FAIL]."

Verify

→ verify: test -f scripts/lib/parallel-review-worktrees.sh && test -f skills/request-review/SKILL.md

Frequently asked questions

What does the Request Review AI skill do?

Dispatch a fresh reviewer agent with a clean context to critique the code after audit-code passes. The reviewer has no shared state with the coding agent and gives a genuine second opinion. Use after audit-code passes, before committing, or when user wants an independent code review.

Why use Request Review on TypingMind?

Because you install it once and use it with any model. Request Review is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Request Review in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/danielvm-git/bigpowers/tree/main/skills/request-review. TypingMind reads its SKILL.md and installs it as a skill you can enable per chat.

Which AI models can use Request Review?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Request Review?

As many as you like. As long as a model supports skills, you can use Request Review with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Request Review AI skill free?

Yes. It is published on GitHub by danielvm-git under the MIT license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇