Architecture Code Review — Structured API Only
Goal: review diffs for correctness, drift, data consistency, side-effect boundaries, contract compatibility, and tests using YAML artifacts from the resolved structured docs root.
Structured Artifact API Contract
Legacy prose artifacts are deprecated. Do not create, update, or rely on docs/agent/*.md, scoped prose docs, or generated human-readable Markdown views. Use structured YAML for canonical artifacts. Root AGENTS.md remains a harness interoperability file and may be generated/updated only by workflows that explicitly say so.
Resolved structured docs root:
Treat docs/agent/api as a logical layout rooted at a resolved structured docs root, not a fixed repo path.
Resolution rules:
- Resolve
workspace_root with git rev-parse --show-toplevel 2>/dev/null or fallback to pwd.
- Canonicalize
workspace_root before fingerprinting when possible (realpath, pwd -P, Path(...).resolve(), or equivalent).
safe-start always creates and uses the initial repo-local root: <workspace_root>/docs/agent/api.
- Review reads repo-local only when
<workspace_root>/docs/agent/api already exists.
- Otherwise read the global overlay root:
~/.pi/agent/workspaces/<workspace-fingerprint>/docs/agent/api.
- Compute
<workspace-fingerprint> exactly from canonical workspace_root: strip one leading slash/backslash, replace every slash, backslash, and colon with -, then wrap with --. This keeps the same workspace stable.
- Example:
/data/data/com.termux/files/home/CodeProjects/pi-mono -> --data-data-com.termux-files-home-CodeProjects-pi-mono--.
- Do not create new repo-local structured docs in unadopted repos unless the user explicitly asks for repo-local adoption there.
Logical structured layout under the resolved docs root:
repo/
scopes.yaml
repo-inventory.yaml
project-intent.yaml
architecture.yaml
data-flow.yaml
data-model.yaml
invariants.yaml
dependency-rules.yaml
design-issues.yaml
risk-register.yaml
change-guide.yaml
testing-strategy.yaml
validation-baseline.yaml
contracts.yaml
adr.yaml
agent-operating-guide.yaml
scopes/
by-path/<repo-relative-path>/...
by-domain/<slug>/...
Every structured artifact must conform to ../_shared/references/schemas/common.schema.json plus its artifact-specific schema. Do not inline, invent, or vary envelope fields.
Stable IDs required: scope:*, component:*, entity:*, invariant:*, risk:*, contract:*, flow:*, command:*, issue:*, adr:*, testplan:*.
Ownership rules:
scopes: scope routing, ownership, cross-scope discovery only.
repo-inventory: file tree, commands index, entry points, external boundaries, configs.
validation-baseline: command status, blockers, recommended validation order.
project-intent: goals, users, journeys, non-goals, constraints, assumptions.
architecture: components, architecture style, side-effect boundaries, high-level flow refs.
data-flow: typed flow graph/steps, inputs, outputs, error states.
data-model: entities, IDs, schemas, relationships, lifecycles, serialized formats.
invariants: rules, forbidden states, enforcement locations, invariant-test refs.
dependency-rules: layers, allowed/forbidden dependencies, violations, coupling hotspots.
design-issues: structural drift, deferred decisions, ambiguity, ownership gaps.
risk-register: failure modes, severity/confidence, affected refs, suggested tests/fixes.
contracts: cross-scope APIs, schemas, events, generated clients, DB/file/deployment/env contracts.
testing-strategy: test topology, coverage gaps, risk-to-test priorities.
change-guide: workflow routing and checklists; references owner artifacts, duplicates no facts.
adr: structured decision records with bounded prose fields.
agent-operating-guide: structured source for agent operating rules. Root AGENTS.md may mirror this in compact harness-readable Markdown when produced by safe-start or codebase-recon Pass 6.
Redundancy rule: define each fact in its owner artifact exactly once. Other artifacts reference IDs.
Prose rule: bounded prose allowed only in summary, notes, rationale, context, decision, recommended_action, and similar scalar fields.
Scope rule: if focus is path-like, read under <docs-root>/scopes/by-path/<focus>/; otherwise under <docs-root>/scopes/by-domain/<slug>/. Always resolve scope from <docs-root>/repo/scopes.yaml when present.
Runtime Schema Loading
When a workflow creates, updates, migrates, or validates structured artifacts, read ../_shared/references/artifact-api.md first. Then read only the shared skill package schemas needed for the artifacts being written:
../_shared/references/schemas/common.schema.json
../_shared/references/schemas/<artifact-file-base>.schema.json
Do not read all schemas. Do not use templates. Schemas are runtime API contracts; project docs outside the shared runtime refs are maintainer aids unless the user asks about this package itself.
Structured Artifact Write/Update Protocol
Use this protocol whenever creating or updating YAML artifacts.
1. Scope and owner resolution
- Resolve scope first from task/focus and
<docs-root>/repo/scopes.yaml when present.
- Path focus uses longest prefix match; domain focus requires explicit domain/contract/task evidence.
- Select the single owner artifact for each fact using the ownership rules above.
- Never duplicate owner facts in router/checklist artifacts; reference stable IDs instead.
2. Read-before-write
- Read the existing target YAML if it exists.
- Read directly referenced owner artifacts needed to preserve refs and avoid duplication.
- If target YAML is absent, create it with the common envelope and artifact-specific top-level keys.
- Preserve unknown fields unless they conflict with this protocol; do not silently drop agent/user-added structured data.
3. Stable ID generation
- Reuse existing IDs whenever the semantic object is the same, even if name/path changed.
- New IDs use deterministic slugs from owner scope + semantic name:
risk:<slug>, entity:<slug>, component:<slug>, etc.
- If two objects slug-collide, append shortest stable discriminator from path/component/contract, not a random suffix.
- Never renumber IDs because order changed.
4. Upsert semantics
For each discovered fact/object:
- Match existing record by ID first.
- If no ID match, match by stable source-of-truth fields: path+symbol, contract source path, command string+cwd, entity name+owner scope, rule owner+kind.
- If matched, update only changed fields, append/refresh evidence, and preserve unrelated fields.
- If unmatched, insert new record in deterministic order by ID or explicit
order field.
- If an existing observed record is no longer supported, do not delete it by default. Mark
status: stale or deprecated, add evidence/unknown explaining why, and link replacement ID when known.
- Delete only records known to be accidental duplicates or malformed, and mention deletion in final response.
5. Evidence and confidence
- Every observed record needs at least one evidence ref with file/symbol/command/doc/diff observation.
- Planned records may use
evidence_mode: planned and confidence low or medium.
- Mixed records must separate observed fields from planned/assumed fields via evidence refs or
unknowns.
- Do not upgrade
status: current or confidence high without source or command evidence.
6. Reference integrity
Before writing final artifacts:
- Check every
*_ref, *_refs, and depends_on ID points to a record in the same artifact set or is explicitly listed as external/unknown.
- Prefer adding missing owner records as compact stubs over leaving dangling refs.
- For cross-scope refs, ensure
scopes.yaml and contracts.yaml identify owner/consumer relationship.
- If ownership is ambiguous, create/update
design-issues.yaml with kind: ownership_gap and reference it.
7. Status transitions
Allowed transitions:
planned -> partial -> current
current -> stale -> current
current|stale|partial -> deprecated
Rules:
current requires sufficient observed evidence for the represented scope.
partial means useful but incomplete evidence.
stale means contradicted by newer source evidence or missing source path.
deprecated means superseded; include replacement_ref when known.
8. Deterministic formatting
- Use YAML with two-space indentation.
- Use stable top-level key order: envelope keys first, artifact-specific keys next.
- Sort unordered arrays by
id; keep ordered flow/checklist arrays by order.
- Use
null, [], or {} consistently rather than omitting required envelope fields.
- Keep prose scalar fields concise; no long narrative blocks.
9. Validation before completion
Perform best-effort validation after writing:
- Re-read changed YAML for parse/syntax sanity when practical.
- Validate against the shared schemas by inspection/re-read: envelope keys, artifact-specific top-level keys, required arrays/items, stable ID prefixes, and obvious dangling refs.
- Verify no legacy Markdown artifacts were created or updated by the workflow, except root
AGENTS.md when explicitly produced for harness interoperability.
- Report changed YAML files, validation performed, unresolved unknowns, and any intentionally stale/deprecated records.
Invocation
Use this skill directly or use /review-arch as the prompt-template shortcut for architecture-aware diff review.
Rules
- Read-only. Do not edit code or artifacts.
- Review current diff unless user specifies target.
- Do not read legacy prose Markdown docs.
- Read
repo/scopes.yaml first if present; match changed paths by longest prefix; then read relevant owner YAML artifacts.
- Every finding needs severity, location, evidence, owner artifact refs, why it matters, suggested fix.
- Prioritize correctness, invariants, contracts, dependency rules, side-effect boundaries, known risks, and tests.
Review Checklist
- Diff matches
architecture.yaml components/boundaries.
- Diff respects
dependency-rules.yaml.
- Data/schema changes update
data-model.yaml and contracts.yaml as owner artifacts.
- Flow/error-state changes update
data-flow.yaml.
- Invariants in
invariants.yaml remain enforced/tested.
- Known risks in
risk-register.yaml are not worsened.
- Design drift in
design-issues.yaml is addressed or not worsened.
- Tests align with
testing-strategy.yaml and validation-baseline.yaml commands.
- Scope ownership and contract owner/consumer refs remain valid in
scopes.yaml and contracts.yaml.
Output
- Verdict: approve | approve with comments | request changes
- Findings: severity, location, problem, evidence, owner refs, impact, suggested fix
- Missing tests
- Structured artifact updates needed
- Architecture drift risk
- Final recommendation
1---2name: arch-code-review3description: Architecture-aware review against canonical structured YAML artifacts. Read-only workflow; no legacy prose docs.4---5
6# Architecture Code Review — Structured API Only
7
8Goal: review diffs for correctness, drift, data consistency, side-effect boundaries, contract compatibility, and tests using YAML artifacts from the resolved structured docs root.
9
10
11## Structured Artifact API Contract
12
13Legacy prose artifacts are deprecated. Do not create, update, or rely on `docs/agent/*.md`, scoped prose docs, or generated human-readable Markdown views. Use structured YAML for canonical artifacts. Root `AGENTS.md` remains a harness interoperability file and may be generated/updated only by workflows that explicitly say so.
14
15Resolved structured docs root:
16
17Treat `docs/agent/api` as a logical layout rooted at a resolved structured docs root, not a fixed repo path.
18
19Resolution rules:
201. Resolve `workspace_root` with `git rev-parse --show-toplevel 2>/dev/null` or fallback to `pwd`.
212. Canonicalize `workspace_root` before fingerprinting when possible (`realpath`, `pwd -P`, `Path(...).resolve()`, or equivalent).
223. `safe-start` always creates and uses the initial repo-local root: `<workspace_root>/docs/agent/api`.
234. Review reads repo-local only when `<workspace_root>/docs/agent/api` already exists.
245. Otherwise read the global overlay root: `~/.pi/agent/workspaces/<workspace-fingerprint>/docs/agent/api`.
256. Compute `<workspace-fingerprint>` exactly from canonical `workspace_root`: strip one leading slash/backslash, replace every slash, backslash, and colon with `-`, then wrap with `--`. This keeps the same workspace stable.
267. Example: `/data/data/com.termux/files/home/CodeProjects/pi-mono` -> `--data-data-com.termux-files-home-CodeProjects-pi-mono--`.
278. Do not create new repo-local structured docs in unadopted repos unless the user explicitly asks for repo-local adoption there.
28
29Logical structured layout under the resolved docs root:
30
31```text
32repo/
33 scopes.yaml
34 repo-inventory.yaml
35 project-intent.yaml
36 architecture.yaml
37 data-flow.yaml
38 data-model.yaml
39 invariants.yaml
40 dependency-rules.yaml
41 design-issues.yaml
42 risk-register.yaml
43 change-guide.yaml
44 testing-strategy.yaml
45 validation-baseline.yaml
46 contracts.yaml
47 adr.yaml
48 agent-operating-guide.yaml
49scopes/
50 by-path/<repo-relative-path>/...
51 by-domain/<slug>/...
52```
53
54Every structured artifact must conform to `../_shared/references/schemas/common.schema.json` plus its artifact-specific schema. Do not inline, invent, or vary envelope fields.
55
56Stable IDs required: `scope:*`, `component:*`, `entity:*`, `invariant:*`, `risk:*`, `contract:*`, `flow:*`, `command:*`, `issue:*`, `adr:*`, `testplan:*`.
57
58Ownership rules:
59- `scopes`: scope routing, ownership, cross-scope discovery only.
60- `repo-inventory`: file tree, commands index, entry points, external boundaries, configs.
61- `validation-baseline`: command status, blockers, recommended validation order.
62- `project-intent`: goals, users, journeys, non-goals, constraints, assumptions.
63- `architecture`: components, architecture style, side-effect boundaries, high-level flow refs.
64- `data-flow`: typed flow graph/steps, inputs, outputs, error states.
65- `data-model`: entities, IDs, schemas, relationships, lifecycles, serialized formats.
66- `invariants`: rules, forbidden states, enforcement locations, invariant-test refs.
67- `dependency-rules`: layers, allowed/forbidden dependencies, violations, coupling hotspots.
68- `design-issues`: structural drift, deferred decisions, ambiguity, ownership gaps.
69- `risk-register`: failure modes, severity/confidence, affected refs, suggested tests/fixes.
70- `contracts`: cross-scope APIs, schemas, events, generated clients, DB/file/deployment/env contracts.
71- `testing-strategy`: test topology, coverage gaps, risk-to-test priorities.
72- `change-guide`: workflow routing and checklists; references owner artifacts, duplicates no facts.
73- `adr`: structured decision records with bounded prose fields.
74- `agent-operating-guide`: structured source for agent operating rules. Root `AGENTS.md` may mirror this in compact harness-readable Markdown when produced by safe-start or codebase-recon Pass 6.
75
76Redundancy rule: define each fact in its owner artifact exactly once. Other artifacts reference IDs.
77Prose rule: bounded prose allowed only in `summary`, `notes`, `rationale`, `context`, `decision`, `recommended_action`, and similar scalar fields.
78Scope rule: if focus is path-like, read under `<docs-root>/scopes/by-path/<focus>/`; otherwise under `<docs-root>/scopes/by-domain/<slug>/`. Always resolve scope from `<docs-root>/repo/scopes.yaml` when present.
79
80
81
82## Runtime Schema Loading
83
84When a workflow creates, updates, migrates, or validates structured artifacts, read `../_shared/references/artifact-api.md` first. Then read only the shared skill package schemas needed for the artifacts being written:
85- `../_shared/references/schemas/common.schema.json`
86- `../_shared/references/schemas/<artifact-file-base>.schema.json`
87
88Do not read all schemas. Do not use templates. Schemas are runtime API contracts; project docs outside the shared runtime refs are maintainer aids unless the user asks about this package itself.
89
90## Structured Artifact Write/Update Protocol
91
92Use this protocol whenever creating or updating YAML artifacts.
93
94### 1. Scope and owner resolution
95
961. Resolve scope first from task/focus and `<docs-root>/repo/scopes.yaml` when present.
972. Path focus uses longest prefix match; domain focus requires explicit domain/contract/task evidence.
983. Select the single owner artifact for each fact using the ownership rules above.
994. Never duplicate owner facts in router/checklist artifacts; reference stable IDs instead.
100
101### 2. Read-before-write
102
1031. Read the existing target YAML if it exists.
1042. Read directly referenced owner artifacts needed to preserve refs and avoid duplication.
1053. If target YAML is absent, create it with the common envelope and artifact-specific top-level keys.
1064. Preserve unknown fields unless they conflict with this protocol; do not silently drop agent/user-added structured data.
107
108### 3. Stable ID generation
109
1101. Reuse existing IDs whenever the semantic object is the same, even if name/path changed.
1112. New IDs use deterministic slugs from owner scope + semantic name: `risk:<slug>`, `entity:<slug>`, `component:<slug>`, etc.
1123. If two objects slug-collide, append shortest stable discriminator from path/component/contract, not a random suffix.
1134. Never renumber IDs because order changed.
114
115### 4. Upsert semantics
116
117For each discovered fact/object:
1181. Match existing record by ID first.
1192. If no ID match, match by stable source-of-truth fields: path+symbol, contract source path, command string+cwd, entity name+owner scope, rule owner+kind.
1203. If matched, update only changed fields, append/refresh evidence, and preserve unrelated fields.
1214. If unmatched, insert new record in deterministic order by ID or explicit `order` field.
1225. If an existing observed record is no longer supported, do not delete it by default. Mark `status: stale` or `deprecated`, add evidence/unknown explaining why, and link replacement ID when known.
1236. Delete only records known to be accidental duplicates or malformed, and mention deletion in final response.
124
125### 5. Evidence and confidence
126
1271. Every observed record needs at least one evidence ref with file/symbol/command/doc/diff observation.
1282. Planned records may use `evidence_mode: planned` and confidence `low` or `medium`.
1293. Mixed records must separate observed fields from planned/assumed fields via evidence refs or `unknowns`.
1304. Do not upgrade `status: current` or confidence `high` without source or command evidence.
131
132### 6. Reference integrity
133
134Before writing final artifacts:
1351. Check every `*_ref`, `*_refs`, and `depends_on` ID points to a record in the same artifact set or is explicitly listed as external/unknown.
1362. Prefer adding missing owner records as compact stubs over leaving dangling refs.
1373. For cross-scope refs, ensure `scopes.yaml` and `contracts.yaml` identify owner/consumer relationship.
1384. If ownership is ambiguous, create/update `design-issues.yaml` with `kind: ownership_gap` and reference it.
139
140### 7. Status transitions
141
142Allowed transitions:
143- `planned -> partial -> current`
144- `current -> stale -> current`
145- `current|stale|partial -> deprecated`
146
147Rules:
148- `current` requires sufficient observed evidence for the represented scope.
149- `partial` means useful but incomplete evidence.
150- `stale` means contradicted by newer source evidence or missing source path.
151- `deprecated` means superseded; include `replacement_ref` when known.
152
153### 8. Deterministic formatting
154
1551. Use YAML with two-space indentation.
1562. Use stable top-level key order: envelope keys first, artifact-specific keys next.
1573. Sort unordered arrays by `id`; keep ordered flow/checklist arrays by `order`.
1584. Use `null`, `[]`, or `{}` consistently rather than omitting required envelope fields.
1595. Keep prose scalar fields concise; no long narrative blocks.
160
161### 9. Validation before completion
162
163Perform best-effort validation after writing:
1641. Re-read changed YAML for parse/syntax sanity when practical.
1652. Validate against the shared schemas by inspection/re-read: envelope keys, artifact-specific top-level keys, required arrays/items, stable ID prefixes, and obvious dangling refs.
1663. Verify no legacy Markdown artifacts were created or updated by the workflow, except root `AGENTS.md` when explicitly produced for harness interoperability.
1674. Report changed YAML files, validation performed, unresolved unknowns, and any intentionally stale/deprecated records.
168
169
170## Invocation
171
172Use this skill directly or use `/review-arch` as the prompt-template shortcut for architecture-aware diff review.
173
174## Rules
175
176- Read-only. Do not edit code or artifacts.
177- Review current diff unless user specifies target.
178- Do not read legacy prose Markdown docs.
179- Read `repo/scopes.yaml` first if present; match changed paths by longest prefix; then read relevant owner YAML artifacts.
180- Every finding needs severity, location, evidence, owner artifact refs, why it matters, suggested fix.
181- Prioritize correctness, invariants, contracts, dependency rules, side-effect boundaries, known risks, and tests.
182
183## Review Checklist
184
185- Diff matches `architecture.yaml` components/boundaries.
186- Diff respects `dependency-rules.yaml`.
187- Data/schema changes update `data-model.yaml` and `contracts.yaml` as owner artifacts.
188- Flow/error-state changes update `data-flow.yaml`.
189- Invariants in `invariants.yaml` remain enforced/tested.
190- Known risks in `risk-register.yaml` are not worsened.
191- Design drift in `design-issues.yaml` is addressed or not worsened.
192- Tests align with `testing-strategy.yaml` and `validation-baseline.yaml` commands.
193- Scope ownership and contract owner/consumer refs remain valid in `scopes.yaml` and `contracts.yaml`.
194
195## Output
196
1971. Verdict: approve | approve with comments | request changes
1982. Findings: severity, location, problem, evidence, owner refs, impact, suggested fix
1993. Missing tests
2004. Structured artifact updates needed
2015. Architecture drift risk
2026. Final recommendation