apply-review

apply-review is a skill for Claude Code, Codex from MasonEgger/bpe-claude-code-plugin. It costs 20 tokens per session (1,248 once invoked), scanned A, original, MIT.

A command that applies saved comments from a browser-based review to the reviewed Markdown document. It reads the review decisions and changes the document after confirmation.

In plain words
What is it for?
Use it after a /bpe:review session to load its feedback file, check whether the feedback is recent, and apply the requested changes.
Why use it?
It avoids manually copying review notes and helps ensure the user's accepted edits are applied to the correct document.

Skill for Claude CodeCodex

Part of the bpe plugin — 13 skills, 3 agents shipped together

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.

agentmods
npx agentmods add skills/masonegger/bpe-claude-code-plugin/apply-review
Any agent
npx skills add MasonEgger/bpe-claude-code-plugin --skill apply-review
Clone the repo
git clone --depth 1 https://github.com/MasonEgger/bpe-claude-code-plugin

Made for: Claude Code, Codex.

Or install bpe, the plugin that ships this one along with the rest of its 13 skills, 3 agents.

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 apply-review

README.md
[![agentmods](https://agentmods.dev/badge/skills/masonegger/bpe-claude-code-plugin/apply-review.svg)](https://agentmods.dev/skills/masonegger/bpe-claude-code-plugin/apply-review)
Your own site
<a href="https://agentmods.dev/skills/masonegger/bpe-claude-code-plugin/apply-review"><img src="https://agentmods.dev/badge/skills/masonegger/bpe-claude-code-plugin/apply-review.svg" alt="Measured on agentmods" height="20"></a>
Per session 20 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,248 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 $0.00020 $0.01248
Opus 5 $0.00010 $0.00624
Sonnet 5 $0.00004 $0.00250
Haiku 4.5 $0.00002 $0.00125

Measured 5d ago against content hash d225814c1bd7, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

apply-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 5d 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.

bpe/skills/apply-review/SKILL.md · 85 lines

How it starts

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

Apply Review Command

Consume the feedback JSON written by /bpe:review and apply the user's annotations to the reviewed markdown artifact. The user has already reviewed in the browser and clicked Save; this command surfaces their decisions and applies the changes after explicit confirmation.

Step 1: Find the Feedback File

If the user passed a feedback path as an argument, use that file. This is the escape hatch for replaying an older review or for the case where the user ran two reviews in parallel and the wrong one is "most recent."

Otherwise, find the most recent feedback JSON in the temp directory (/bpe:review generates the path with mktemp, which honors $TMPDIR):

ls -t "${TMPDIR:-/tmp}"/bpe-review-*-feedback.json 2>/dev/null | head -1

If none exists, tell the user to run /bpe:review first and stop.

If the chosen file's saved_at timestamp is more than 24 hours old, surface that to the user and ask whether they meant to apply this older feedback or run /bpe:review again.

Step 2: Load and Summarize

Read the feedback JSON. Expected shape:

{
  "sections": [
    {
      "id": "section-N",
      "heading": "<heading text>",
      "decision": "ship" | "update" | "redirect" | "reject" | "unset",
      "comment": "<free-text feedback>"
    }
  ],
  "global_comment": "<free-text>",
  "artifact_path": "<absolute path to the reviewed markdown file>",
  "saved_at": "<ISO timestamp>"
}

Each entry is one decision unit; the review is intentionally fine-grained, so expect many entries. Display a summary that front-loads the destructive decisions, since those are what the user most needs to verify before saying yes in Step 3:

  • One-line counts header: N reject, N redirect, N update, N unset, N ship.
  • Then group the non-ship entries under sub-headings, in this exact order (most-destructive first):
    1. Absolutely reject and delete (reject): list each unit's heading + comment. These are about to be removed; surface them first so the user can catch a mistake before authorizing.
    2. Completely off, do this instead (redirect): list each unit's heading + comment. These are full rewrites driven by the comment.
    3. Close, but update (update): list each unit's heading + comment. These are tweaks.
    4. No decision recorded (unset): list any units that have a comment (those'll be treated as update) and any that don't (those'll be left alone).
  • The global comment, if non-empty.
  • The artifact path that will be modified.

Read the full file on GitHub · 85 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. 5d ago First seen · 85 lines · 20 tokens per session scan A d225814c1bd7

Subscribe to this mod's changes

apply-review is a skill published in the GitHub repository MasonEgger/bpe-claude-code-plugin (7 stars, last pushed 3d ago), licensed MIT. It adds 20 tokens to every session and 1,248 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-31.

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

chronicle

Analyze Copilot session history for standup reports, usage tips, session search, and session reindexing. Use when the user asks for a standup, daily summary, usage tips, workflow recommendations, wants to search or find past sessions by keyword/file/PR, wants to reindex their session store, or asks about deleting…

microsoft/vscode · 72 tokens

imagegen

Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output…

openai/codex · 113 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