documentation: commit orphaned local docs (ADR-017, ADR-019, design/plan docs) #292
Loading…
Reference in a new issue
No description provided.
Delete branch "documentation/2026-08-19/reconcile-orphaned-local-docs"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
Reconciles 8 documentation files that existed on disk in this local clone
but were never committed to git. Root cause: a local, untracked
.git/info/excludeentry (/docs/) silently shadowed the entiredocs/tree from git's perspective — the same underlying misconfiguration behind
issue #286 / ADR-019's docs-stage failure. The exclude entry has been
removed locally; this PR reconciles the actual content that got orphaned
by it over time.
Each file was cross-checked against current shipped code/docs for
staleness before committing (see per-file notes below).
What's included
docs/adr/017-mr-skip-when-no-changes.md— Accepted ADR (2026-08-16).Verified accurate against the shipped
hasNothingToShip()/runMrStageimplementation. Fills the 016→018 gap in the ADR sequence.docs/adr/019-fatal-docs-scope-ignore-preflight.md— Accepted ADR(2026-08-19) for the fatal docs-scope preflight shipped in PR #289;
already referenced by path from
AGENTS.md/DESIGN.mdbut never itselfcommitted until now.
docs/design-commit-model.md— per-stage commit model design doc.Fixed inline: §7/§8 referenced a nonexistent
cleanPiLoopGitignore();corrected to the actual shipped
assertPiLoopGitignore()(a fail-fastassert per ADR-009, not a mutating cleanup).
docs/design-rest-mr-creation.md— REST-based MR/PR creation designdoc. Fixed inline: the "Proposed Architecture" section described an
outdated hybrid model (LLM agent still drives git/content, code only
does the REST POST). Added a "Superseded" note clarifying the MR stage
that actually shipped is fully deterministic — no agent session at
all. The
*MrClient/REST endpoint details in §4.1 were alreadyaccurate and are unchanged.
docs/plan-A-bundle-skill-bodies.md— self-marked "STATUS: DONE";verified consistent with the current bundled-skills architecture
(
src/skills/,degradedpermanentlyfalse/[]).docs/plan-B-remove-degraded.md— verified accurate and stilloutstanding (
DegradedStage/degradedStagesremain verbatim insrc/mr/types/mr.ts). Tracked going forward by a new issue (see below).docs/plan-B1-vertex-anthropic-provider.md,docs/scope-option-B-claude-on-vertex.md— Claude-on-Vertex featureplanning docs, referenced by README.md's shipped "Claude on Vertex"
section. Verified consistent with the shipped
src/model/vertexAnthropic/implementation.Verification
corrections for accuracy, described above).
before inclusion.
Related
(the docs-scope preflight this reconciliation was prompted by).
docs/plan-B-remove-degraded.md'sstill-outstanding work.