responding-to-review-on-a-stack

responding-to-review-on-a-stack is a skill for Claude Code, Codex from arch3rPro/dsh-skills. It costs 71 tokens per session (863 once invoked), scanned A, original, MIT.

A procedure for handling code-review comments across a dependent stack of pull requests, where each pull request builds on the one before it. It places each fix on the pull request that introduced the problem and carries that fix through later branches.

In plain words
What is it for?
Use it when review comments affect several stacked pull requests, especially when branches must be rebased, fixes propagated upward, and review threads, approvals, and checks rechecked.
Why use it?
It prevents fixes from being hidden in a later pull request or losing their review history. It also keeps separate review fixes as separate commits and checks the stack again after rewrites.

Skill for Claude CodeCodex

Written for Claude Code and Codex: shipped in a Claude Code plugin, but also agents/openai.yaml present. Also seen: mentions subagents.

Part of the dsh-skills plugin — 15 skills shipped together

Good fit Use it when review comments affect several stacked pull requests, especially when branches must be rebased, fixes propagated upward, and review threads, approvals, and checks rechecked.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/arch3rpro/dsh-skills/responding-to-review-on-a-stack
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 arch3rPro/dsh-skills --skill responding-to-review-on-a-stack
Clone the repo
git clone --depth 1 https://github.com/arch3rPro/dsh-skills

Made for: Claude Code, Codex.

Or install dsh-skills, the plugin that ships this one along with the rest of its 15 skills.

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 responding-to-review-on-a-stack

README.md
[![agentmods](https://agentmods.dev/badge/skills/arch3rpro/dsh-skills/responding-to-review-on-a-stack/github.svg)](https://agentmods.dev/skills/arch3rpro/dsh-skills/responding-to-review-on-a-stack)
Your own site
<a href="https://agentmods.dev/skills/arch3rpro/dsh-skills/responding-to-review-on-a-stack"><img src="https://agentmods.dev/badge/skills/arch3rpro/dsh-skills/responding-to-review-on-a-stack/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 responding-to-review-on-a-stack

Your own site · 80×15
<a href="https://agentmods.dev/skills/arch3rpro/dsh-skills/responding-to-review-on-a-stack"><img src="https://agentmods.dev/badge/skills/arch3rpro/dsh-skills/responding-to-review-on-a-stack.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 71 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 863 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.00071 $0.00863
Opus 5 $0.00036 $0.00432
Sonnet 5 $0.00014 $0.00173
Haiku 4.5 $0.00007 $0.00086

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

Security

Grade A, and why

responding-to-review-on-a-stack 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 11d 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.

skills/process/responding-to-review-on-a-stack/SKILL.md · 45 lines

How it starts

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

Responding to Review on a Stack

A discipline for acting on review comments that span several PRs in a dependent stack (A ← B ← C …). It owns review-fix placement and propagation; pr-history-hygiene owns linkage checks and landing, and code-review owns finding the issues.

The defining constraint: a fix lands on the PR that introduced the issue, then flows up-stack — never downstream, where the introducing PR ships the unfixed code and the fix is hidden from its reviewer.

Ground rules

  • One worktree per PR branch. Each PR's fixes happen in that PR's own worktree; parallel fixes never share a checkout.
  • The stack object is authoritative. Base branches establish the expected dependency order; the platform's stack metadata proves it is recognized. Do not treat a matching branch chain as an official stack without checking that metadata.
  • A fix lands on the introducing PR, then flows up-stack. When a comment on PR B points at code B introduced, fix it on B and propagate into C — even if C also carries the file.
  • Each review fix remains a distinct commit. A later rebase may change its OID, but do not amend a reviewed fix out of the branch history. Amend only your own not-yet-pushed, not-yet-reviewed work.
  • Choose merge-forward or rebase deliberately. Both are allowed after review. A rewritten push must be lease-protected and must abort rather than overwrite a concurrently advanced remote head; raw force is forbidden.

Resolve comments through the stack

  1. Triage every comment on the merits before acting: verify the claim against the code — a reviewer flagging the right symptom can still misdiagnose the cause.
  2. Map each accepted finding to its originating PR and fix it there.
  3. Propagate the fixed layer through every affected child in order — merge-forward (merge the fixed parent into the child, validate, continue upward) or a native cascading rebase (validate the rewritten layers, then publish).
  4. Trust but verify delegated fixes — a sub-agent's report describes intent, not necessarily what landed. Re-run the gates on the actual tree; prove a regression guard fails on the unfixed code.
  5. Reply in the review thread, not as a top-level comment, stating the fix and the current commit or head that carries it.
  6. After any rewritten push, re-read unresolved threads, approvals, mergeability, and checks. A force-pushed OID or outdated inline anchor is not current evidence that the finding remains resolved.

Read the full file on GitHub · 45 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 11d ago First seen · 45 lines · 71 tokens per session scan A d29da1c2ce66

Subscribe to this mod's changes

responding-to-review-on-a-stack is a skill published in the GitHub repository arch3rPro/dsh-skills (4 stars, last pushed 23d ago), licensed MIT. It adds 71 tokens to every session and 863 once invoked, about $0.0004 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

suede-code-review

Suede Labs AI findings-only code review with full context: changed files, callers, contracts, and deploy surface. Covers TypeScript, React, Next.js, database, Swift/iOS, OWASP, accessibility, SEO, observability, commit hygiene, and deploy risk, ranked P0-P3 with file:line evidence and a fix path. Use when asked to…

JasonColapietro/suede-creator-skills · 191 tokens

suede-code

Suede Labs AI combined code review and ship grade in one pass: findings with file:line evidence plus an A-F lane grade, Instant-F security triggers, OWASP checks, a deploy-safety gate, and fix briefs. Use when asked to review this, grade this, security-check this, is this safe to ship, or check this PR before merge …

JasonColapietro/suede-creator-skills · 167 tokens

suede-code-grader

Suede Labs AI blunt A-F ship grade for a code change across correctness, security and permissions, data and state, domain truth, UX and release behavior, tests and verification, and deploy readiness, with Instant-F triggers and evidence-based grade caps on auth, payment, migration, and public-API surfaces. Use when…

JasonColapietro/suede-creator-skills · 156 tokens

review-arch

Conduct a principal-level architecture review of a system, specification, diagram, or set of design decisions. Use when asked to review an architecture, evaluate a design, assess coupling/cohesion, check for anti-patterns, audit system boundaries, or produce an Architecture Review Board (ARB) style verdict. Also use…

sergeyklay/.agents · 199 tokens

review-impl

Review implementation changes for a given task against architectural standards. Use when reviewing a PR, evaluating recently committed code, assessing whether implementation changes are correct and architecturally sound, or when asked to 'review my changes', 'check this implementation', 'review what I built', 'is this…

sergeyklay/.agents · 155 tokens

survey

After building a feature (or evaluating a plan), verify it matches what was planned, respects the project's declared architecture and standards, and is production-ready. Reports issues clearly and routes broken behavior to dredge or contested judgment calls to watershed.

partikularwaters/Banka · 49 tokens