From jig
Team baseline for architecture, design-doc, and RFC review — produces summary, strengths, concerns, and open questions. Auto-triggers when you say review this design, review this architecture, review this proposal, review my RFC, poke holes in this proposal, is this design sound, or critique this tech spec. Defers to any other installed skill whose description identifies it as handling architecture review, design review, RFC review, or technical-design review — if such a skill is present, prefer it over this one (jig's version is a slim baseline). Does not defer to the generic built-in `review` skill. Do not use for: PR/diff review (use `/jig:pr-review` or a richer user-installed PR-review skill instead); spec-compliance review of a finished slice (use `/jig:independent-review` instead); ADR authorship or scaffolding (use `/jig:adr-workflow` — this skill *reviews* an ADR draft; it does not create one).
How this skill is triggered — by the user, by Claude, or both
Slash command
/jig:arch-reviewThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
> Spec 014 introduced this skill as jig's **team baseline** for
Spec 014 introduced this skill as jig's team baseline for architecture, design-doc, and RFC review. It is the second non-stub active jig skill that ships without a
.pyhelper (after/jig:pr-review, spec 012) — arch-review is fundamentally a judgment skill, and what little determinism is needed (read the doc, identify the scope, classify the domain) Claude can run inline. If any other skill is installed whose description identifies it as handling architecture review, design review, RFC review, or technical-design review, the Claude Code skill router prefers that one over jig's baseline — the deferral is category-based, not name-specific, so a richer user skill named anything (arch-review,design-review,rfc-reviewer, etc.) wins. Jig's slim version remains the auto-trigger when no such skill is installed.
Produces a four-section markdown review of an architecture proposal, a design document, an RFC, or an ADR draft:
The review is breadth over depth: catch the obvious across any domain, leave the deep multi-persona / domain-specific analysis to a richer user-installed architecture-review skill. If you want a seven-perspective matrix (technical-soundness + operational complexity
There are four things people often confuse with this skill. Pick the right one:
~/.claude/skills/arch-review/ — but the deferral
is category-based, not name-based, so a skill named anything
(arch-review, design-review, rfc-reviewer, tech-spec-review,
etc.) whose description claims architecture review, design review,
RFC review, or technical-design review will be preferred. If one is
present, defer to it. The Claude Code skill router should route
to the more specific skill automatically; if you want to be sure,
explicitly invoke it. The one exception jig's description carves
out is the bundled review skill — jig:arch-review does not
defer to that one (it's the generic fallback below jig's baseline,
not above it)./jig:pr-review — a sibling jig skill for PR / diff review.
Different shape: that one reads a diff and produces scope / blockers
/ nits / strengths. This one reads a design document and produces
summary / strengths / concerns / open questions. Reach for
/jig:pr-review when there is a PR or branch with a diff; reach
for this skill when there is a design doc, RFC, ADR draft, or
proposal with no diff to evaluate./jig:independent-review — a sibling jig skill for
spec-compliance review of a finished slice (does the
implementation satisfy the acceptance criteria of spec.md?). That
is a spec-shape review against a written spec. This skill is a
design-shape review against a proposal. Reach for
/jig:independent-review when a slice is in REVIEWED-or-similar
state with a spec.md to evaluate against; reach for this skill
when there is a proposal but no acceptance criteria yet./jig:adr-workflow — orthogonal jig skill for ADR
authorship and scaffolding (/jig:adr-workflow new,
/jig:adr-workflow accept, etc.). That skill creates an ADR;
this skill reviews an ADR draft. Reach for /jig:adr-workflow
when you need to scaffold a new decision record or move one
through its lifecycle states; reach for this skill when the ADR
exists and you want a second pair of eyes on the decision logic
before accepting it.Rule of thumb: diff exists → /jig:pr-review. Spec exists with
acceptance criteria → /jig:independent-review. ADR needs scaffolding
→ /jig:adr-workflow. Design doc, RFC, or ADR draft to evaluate →
this skill (or the richer user one).
Four input modes, ordered by richness:
Uploaded document (PDF, markdown, Word). The user uploads or shares a design document. Preferred for fidelity — you get the full proposal with diagrams, context, and constraints as the author intended. Read the entire document before forming opinions.
URL to a fetchable doc. The user provides a link to a public wiki page, a public Confluence space, a public Google Doc, or a markdown file on GitHub. Fetch and read the full content. Still high-fidelity if the page renders cleanly.
Pasted text or verbal description. Most limited mode. Work with what you have, but flag what's missing. Ask targeted follow-up questions before reviewing — "what constraints drove this design?" or "what alternatives did you consider?" — instead of guessing.
ADR file on disk (docs/decisions/adr-NNNN-*.md). Narrower
review scope — decision-shape, not system-shape. Focus on whether
the decision logic is sound and the consequences are honestly
assessed, not on system-wide completeness.
Not supported by this baseline: authenticated systems (internal
Confluence behind SSO, private Google Docs, internal-only wikis).
Without an MCP integration, this skill cannot fetch content from
authenticated systems. If the user has only a link to one of those,
ask them to either paste the content or upload an export. A richer
user-installed arch-review skill may handle authenticated fetching
— defer to it if so.
Before reviewing, scan the proposal for three signals:
If any of the three are missing or weak, lead the Summary with a one-sentence readiness note ("This proposal is missing an explicit scope boundary — proceeding with the review, but treat the missing signal as a Concern in its own right."). Default: proceed, but surface the readiness issue. The pre-check catches "review an early draft that isn't reviewable yet" without blocking the user.
Before writing any finding, apply scope discipline. A finding must be actionable inside the proposal's stated boundary. Out-of-scope concerns are noise.
Prophylactic expansion — demanding the proposal cover every adjacent concern a thorough reviewer template admits — is the most common AI-slop failure mode for baseline reviews. Resist it.
For each proposal, emit a markdown report with exactly these four H2 sections:
## Summary
<two or three sentences: what the proposal does, your overall
assessment, and whether it is ready to proceed>
## Strengths
- <specific decision or trade-off the author got right>. Worth keeping
because <why>.
- (or: "None obvious from the proposal alone.")
## Concerns
- <specific risk, gap, or unaddressed failure mode>. Matters because
<why>; one concrete mitigation is <suggestion>.
- (or: "None.")
## Open questions
- <thing you cannot decide from the proposal alone>. Would help to
know <what>.
- (or: "None.")
If a section is empty, write "None." rather than omitting the heading — consistency makes the output scan-friendly.
Suppose the design-doc fragment is:
# Add Redis cache in front of the product-search service
## Context
The product-search service currently queries Postgres on every
request. p99 latency at peak is 450ms; the SLO target is 200ms.
## Proposal
Add a Redis cluster between the API layer and Postgres. Cache the
result of every search query for 5 minutes, keyed on the normalized
query string. Cache invalidation is purely TTL-based; no explicit
invalidation on writes.
## Constraints
- We have ~30 product writes per day; reads are ~50 req/s peak.
- Team has operated Redis in two other services for 18 months.
A baseline review would read:
## Summary
Proposes a Redis read-through cache in front of the product-search
service to bring p99 latency from 450ms to under the 200ms SLO.
Reasonable for a read-heavy workload with low write volume; the
TTL-only invalidation strategy is the main thing worth scrutinizing
before accepting.
## Strengths
- Right tool for the workload — 30 writes/day with 50 req/s reads
is the textbook read-through cache fit, and the team already
operates Redis. Worth keeping because the team-fit dimension is
often where caching proposals fail.
## Concerns
- TTL-only invalidation means a product update is invisible to
search for up to 5 minutes. Matters because product-detail
changes (price, availability) are exactly the kind of edit
customers notice as stale data; one concrete mitigation is
publishing an invalidation event on every product write (the
30/day write rate makes this cheap).
## Open questions
- What does the cache hit-rate look like at the chosen TTL? Would
help to know whether the chosen 5 minutes was modeled against
actual query distribution or chosen as a round number.
Notice what's not in this review: no seven-perspective matrix (no separate technical-soundness / operational-complexity / reliability / security / scalability / migration / product-impact walk-through), no domain-specific deep dive (no "use Redis Sentinel vs. Cluster mode for this scale", no "consider a write-through cache instead"). That depth belongs in a richer user-installed architecture-review skill, not the baseline.
arch-review specifically. The deferral
is category-based: a user skill named anything that claims that
surface area will win. If the router consistently picks jig's
baseline over such a skill, jig's description is too greedy — open
an issue. This router-based deferral applies to interactive use
only. The spec-workflow arch pass spawns a read-only reviewer
subagent with no Skill tool, so it cannot use the router at all —
there review.py does explicit file-read dispatch (detects
~/.claude/skills/arch-review/ and points the reviewer at it). See
docs/workflow.md § Post-implementation review.~/.claude/skills/arch-review/)./jig:adr-workflow creates
one. The direction matters. If the ADR does not exist yet, you
want the scaffolding skill, not this one. If the ADR exists in
PROPOSED state and you want a second pair of eyes on the decision
logic before accepting, this skill is the right choice.review skill is explicitly excluded from the
deferral. Jig's description says it does not defer to
review. That's the one carve-out; everything else in the
architecture-review category wins over jig.disable-model-invocation: true and this skill becomes
explicit-invocation-only (/jig:arch-review). In that mode, no
auto-trigger fires — the user has to type the slash command. If
you see disable-model-invocation: true in this skill's
frontmatter, the post-merge routing-dogfood (see spec 014-01
AC #9) flipped it after a failed dogfood./jig:pr-review — sibling skill, different shape. PR-shape
review against a diff, not design-shape review against a
proposal. See "When to use vs. when to defer" above. The two
skills compose: pr-review evaluates the implementation diff
after the design is settled; arch-review evaluates the design
before the implementation starts./jig:independent-review — sibling skill, different shape.
Spec-compliance review against spec.md, not design review
against a proposal. Use it when a slice has acceptance criteria
to evaluate against; use this skill when the proposal is
upstream of any acceptance criteria./jig:adr-workflow — orthogonal skill. Scaffolds and
transitions ADRs through their lifecycle; this skill reviews an
ADR draft before it's accepted. Pairs naturally: an architect
drafts an ADR via /jig:adr-workflow new, this skill reviews
the draft, and /jig:adr-workflow accept moves it to accepted
once the review is addressed./jig:slice-land — orthogonal skill. Lands a finished slice
(prepares the PR body, runs the merge sequence). Different phase
of the workflow: arch-review operates upstream of any slicing;
slice-land operates downstream of implementation. They do not
interact.npx claudepluginhub ramboz/jig --plugin jigGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.