arkgate 4.3.0 → 4.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +81 -10
- package/README.md +11 -7
- package/bin/ark-check-runtime.mjs +50 -14
- package/bin/ark-layer-match.mjs +25 -12
- package/bin/lib/agent-projection.mjs +1 -1
- package/bin/lib/analysis-engine.mjs +5 -5
- package/bin/lib/ci-and-commands.mjs +11 -5
- package/bin/lib/doctor-plan.mjs +25 -0
- package/bin/lib/html-report-advisories.mjs +33 -0
- package/bin/lib/html-report-depth.mjs +24 -0
- package/bin/lib/html-report.mjs +8 -1
- package/bin/lib/improvement-compass-doctor.mjs +106 -0
- package/bin/lib/improvement-compass-map.mjs +507 -0
- package/bin/lib/improvement-compass-types.mjs +85 -0
- package/bin/lib/improvement-compass.mjs +79 -0
- package/bin/lib/managed-upgrade-honesty.mjs +201 -0
- package/bin/lib/managed-upgrade.mjs +37 -4
- package/bin/lib/status-command.mjs +127 -2
- package/bin/lib/status-manifest.mjs +187 -1
- package/dist/eslint/index.cjs +2 -2
- package/dist/eslint/index.js +2 -2
- package/dist/index.cjs +35 -35
- package/dist/index.d.ts +267 -5
- package/dist/index.js +35 -35
- package/docs/README.md +7 -6
- package/docs/agent-guide.md +50 -7
- package/docs/develop.md +9 -4
- package/docs/diagnostics.md +1 -1
- package/docs/package-surface.md +38 -34
- package/docs/product-voice.md +30 -1
- package/docs/use.md +67 -1
- package/package.json +1 -1
- package/schemas/ark.status-manifest.schema.json +53 -0
- package/server.json +2 -2
- package/templates/agent-skills/README.md +2 -2
- package/templates/agent-skills/ark-adopt/SKILL.md +20 -0
- package/templates/agent-skills/ark-architect/SKILL.md +21 -1
- package/templates/agent-skills/ark-autopilot/SKILL.md +25 -5
- package/templates/agent-skills/ark-contract/SKILL.md +20 -0
- package/templates/agent-skills/ark-coverage/SKILL.md +20 -0
- package/templates/agent-skills/ark-explain/SKILL.md +20 -0
- package/templates/agent-skills/ark-explore/SKILL.md +23 -3
- package/templates/agent-skills/ark-fix/SKILL.md +22 -2
- package/templates/agent-skills/ark-loop/SKILL.md +22 -2
- package/templates/agent-skills/ark-place/SKILL.md +20 -0
- package/templates/agent-skills/ark-runtime/SKILL.md +7 -0
- package/templates/agent-skills/ark-think/SKILL.md +20 -0
- package/templates/agent-skills/ark-upgrade/SKILL.md +20 -0
- package/templates/skills/ark-adopt.md +20 -0
- package/templates/skills/ark-architect.md +21 -1
- package/templates/skills/ark-autopilot.md +25 -5
- package/templates/skills/ark-contract.md +20 -0
- package/templates/skills/ark-coverage.md +20 -0
- package/templates/skills/ark-explain.md +20 -0
- package/templates/skills/ark-explore.md +23 -3
- package/templates/skills/ark-fix.md +22 -2
- package/templates/skills/ark-loop.md +22 -2
- package/templates/skills/ark-place.md +20 -0
- package/templates/skills/ark-runtime.md +7 -0
- package/templates/skills/ark-think.md +20 -0
- package/templates/skills/ark-upgrade.md +20 -0
package/docs/README.md
CHANGED
|
@@ -19,10 +19,10 @@ Product site: [arkgate.online](https://www.arkgate.online/) · npm: [`arkgate`](
|
|
|
19
19
|
### Use (product)
|
|
20
20
|
| Doc | What it is |
|
|
21
21
|
|-----|------------|
|
|
22
|
-
| [use.md](use.md) | One flow: install → doctor → day-to-day |
|
|
22
|
+
| [use.md](use.md) | One flow: install → doctor (+ improvement compass) → day-to-day |
|
|
23
23
|
| [enthusiast/](enthusiast/README.md) | Tutorials and plain-language track |
|
|
24
24
|
| [demos/](demos/) | Short end-to-end demos |
|
|
25
|
-
| [product-voice.md](product-voice.md) | How ArkGate should sound in English UI |
|
|
25
|
+
| [product-voice.md](product-voice.md) | How ArkGate should sound in English UI (compass = lenses, not scores) |
|
|
26
26
|
|
|
27
27
|
### Develop (integrate)
|
|
28
28
|
| Doc | What it is |
|
|
@@ -53,14 +53,15 @@ These are **not** the day-to-day product path. They stay in the repo for evidenc
|
|
|
53
53
|
| Area | Path |
|
|
54
54
|
|------|------|
|
|
55
55
|
| Release notes (by version) | [releases/](releases/) · [CHANGELOG.md](../CHANGELOG.md) |
|
|
56
|
-
| Epic plans (seeded + shipped) | [plans/](plans/)
|
|
56
|
+
| Epic plans (seeded + shipped) | [plans/](plans/) — maintainer seeds (e.g. domain fitness & session truth for **4.5.0** with honesty modes / mandatory domain split / self-service residual, improvement compass for **4.4.0**, agent contract surface for **4.3.0**). Product how-to stays in use/develop/agent-guide; plans are not required reading to use the package. |
|
|
57
57
|
| Claims audit | [audit/claims-matrix.md](audit/claims-matrix.md) |
|
|
58
58
|
| Field adoption kit (scaffolding, not closed) | [field/](field/) |
|
|
59
59
|
| Runtime hardening (experimental) | [production-hardening.md](production-hardening.md) |
|
|
60
60
|
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
61
|
+
Current published: [releases/4.4.0.md](releases/4.4.0.md) (`arkgate@4.4.0` on npm `latest`).
|
|
62
|
+
Next prepare: [releases/4.5.0.md](releases/4.5.0.md) (Status: prepared — not on npm until publish verify).
|
|
63
|
+
Prior: [releases/4.3.0.md](releases/4.3.0.md) (`arkgate@4.3.0`).
|
|
64
|
+
Previous: [releases/4.2.1.md](releases/4.2.1.md) · [releases/4.2.0.md](releases/4.2.0.md) · [releases/4.1.1.md](releases/4.1.1.md).
|
|
64
65
|
Previous major: [releases/4.0.0.md](releases/4.0.0.md) (`arkgate@4.0.0`).
|
|
65
66
|
Config: [configuration.md](configuration.md) · Agent skills dual-plane: [agent-guide.md](agent-guide.md).
|
|
66
67
|
|
package/docs/agent-guide.md
CHANGED
|
@@ -59,10 +59,52 @@ path is authoritative only when that matching project id is also supplied. Only
|
|
|
59
59
|
`binding.status: "matched"` with `authoritative: true` is authoritative; calls that omit the
|
|
60
60
|
expectation remain compatible but are explicitly `unverified`.
|
|
61
61
|
|
|
62
|
-
###
|
|
62
|
+
### Session recipe (agent turn)
|
|
63
|
+
|
|
64
|
+
Default loop for each agent session (product language — no inventing residual):
|
|
65
|
+
|
|
66
|
+
1. **Bind identity** — call `ark_identity` with `project.expectedRoot` = exact absolute project
|
|
67
|
+
root. Reuse root + returned `projectId` on later tools. Only `binding.status: "matched"` with
|
|
68
|
+
`authoritative: true` is authoritative.
|
|
69
|
+
2. **Read status** — `ark status --json` / MCP `ark_status` for identity, write-path activation,
|
|
70
|
+
last-check summary, residual lens ids (`improvementCompass`), and primary next action.
|
|
71
|
+
3. **Act** — address residual / next action / stable `findingRef` from diagnostics. Never invent
|
|
72
|
+
green residual lenses. Projection, skills, and AGENTS.md never enforce.
|
|
73
|
+
4. **Doctor when compass mode is not full** — if `improvementCompass.mode` is `subset` or
|
|
74
|
+
`unavailable`, run `ark-check --doctor` (and `--json` for the full 15-lens map) before treating
|
|
75
|
+
residual as complete. When mode is `full`, status residual ids are a subset of doctor residual
|
|
76
|
+
for the same facts.
|
|
77
|
+
|
|
78
|
+
```bash
|
|
79
|
+
npx ark status --json --expected-root /abs/project/root
|
|
80
|
+
# mode !== full → full residual map:
|
|
81
|
+
npx ark-check --doctor --json
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
Product path: [use.md — Session recipe](use.md#session-recipe-agent-turn).
|
|
85
|
+
|
|
86
|
+
### Improvement compass (doctor + status)
|
|
87
|
+
|
|
88
|
+
`ark-check --doctor` (human + `--json`) projects residual architecture work as a closed set of
|
|
89
|
+
**lenses** (`doctor.improvementCompass`). Always `notAScore: true`. Never feeds `valid`,
|
|
90
|
+
strict-merge exit, or plan `goal.met`. Out-of-scope lenses (scalability, app security tooling,
|
|
91
|
+
full resilience) stay honest. Product path: [use.md — Improvement compass](use.md#improvement-compass-not-a-score).
|
|
92
|
+
Package surface row: [package-surface.md](package-surface.md).
|
|
93
|
+
|
|
94
|
+
**Status snapshot:** `ark status --json` / MCP `ark_status` project a thin `improvementCompass`
|
|
95
|
+
with explicit honesty **`mode`**: `full` \| `subset` \| `unavailable` (always `notAScore: true`).
|
|
96
|
+
Incomplete facts → `subset` / `unavailable` + reason — **never invent green residual**. Residual
|
|
97
|
+
never flips gate verdicts and never alone rewrites status `nextAction` as a score. When mode is
|
|
98
|
+
not `full`, follow the [session recipe](#session-recipe-agent-turn) and run doctor.
|
|
99
|
+
|
|
100
|
+
Compact router and skills read residual lenses in plain language; green edges alone are never
|
|
101
|
+
“architecture finished” while residual remains.
|
|
102
|
+
|
|
103
|
+
### Unified status snapshot (4.3+)
|
|
63
104
|
|
|
64
105
|
For one machine-readable session/project manifest (identity binding, honest write-path activation,
|
|
65
|
-
last-check summary, rules residual counts, primary next action)
|
|
106
|
+
last-check summary, rules residual counts, primary next action, improvement-compass residual map)
|
|
107
|
+
use:
|
|
66
108
|
|
|
67
109
|
```bash
|
|
68
110
|
npx ark status --json
|
|
@@ -72,10 +114,10 @@ npx ark status --json --expected-root /abs/project/root
|
|
|
72
114
|
|
|
73
115
|
MCP parity tool: **`ark_status`** (same envelope; pass `project.expectedRoot` after `ark_identity`).
|
|
74
116
|
Schema: `arkgate/schema/status-manifest`. Never prompts; under `CI=1` JSON is forced. **Not a
|
|
75
|
-
score** — counts and
|
|
76
|
-
[Write-path honesty](#write-path-honesty).
|
|
117
|
+
score** — counts, honesty modes, and residual ids only. Write-path interpretation of activation vs
|
|
118
|
+
merge teeth is under [Write-path honesty](#write-path-honesty).
|
|
77
119
|
|
|
78
|
-
**Stable finding refs (4.3
|
|
120
|
+
**Stable finding refs (4.3):** every factory-emitted diagnostic on CLI JSON, MCP analysis
|
|
79
121
|
envelopes, and opt-in hook repair payloads (`ARK_REPAIR_JSON`) carries:
|
|
80
122
|
|
|
81
123
|
| Field | Meaning |
|
|
@@ -88,7 +130,7 @@ Line/message drift across agent turns does not change `findingRef` / `targetKey`
|
|
|
88
130
|
`arkgate/schema/analysis-result` **`1.5`**. Multi-turn fixture:
|
|
89
131
|
`tests/fixtures/finding-refs/multi-turn-stability.json`.
|
|
90
132
|
|
|
91
|
-
**Version-matched agent projection (4.3
|
|
133
|
+
**Version-matched agent projection (4.3):** install/upgrade embeds a managed AGENTS.md
|
|
92
134
|
block stamped with the installed `arkgate` version plus a compact contract summary (layers +
|
|
93
135
|
diagnostic short list). Regenerate after package upgrade without clobbering customized regions
|
|
94
136
|
outside the markers:
|
|
@@ -104,10 +146,11 @@ The projection is **non-authoritative**. Enforcement is `ark-check` / host write
|
|
|
104
146
|
CI (`--strict-merge`) — never AGENTS.md, skills, or this projection. Root API:
|
|
105
147
|
`buildAgentProjectionBlock` / `mergeAgentProjectionDocument`.
|
|
106
148
|
|
|
107
|
-
**Agent Skills packaging (4.3
|
|
149
|
+
**Agent Skills packaging (4.3):** the same frozen **13** skill names are also shipped as
|
|
108
150
|
an Agent Skills–compatible package under `templates/agent-skills/<name>/SKILL.md` for hosts that
|
|
109
151
|
install via `npx skills` (in addition to Ark `--install-agent-gates`). See
|
|
110
152
|
[Install skills — Ark and ecosystem](#install-skills-ark-and-ecosystem). No new skill names.
|
|
153
|
+
Skill bodies coach residual lenses and anti false-done; they never enforce.
|
|
111
154
|
|
|
112
155
|
## Architecture playbook and `ark-check --recommend`
|
|
113
156
|
|
package/docs/develop.md
CHANGED
|
@@ -69,7 +69,9 @@ can show `runtimeObserved: true` even when branch-protection policy is plan-unav
|
|
|
69
69
|
| Rules inventory (brownfield) | `arkgate-check --rules-inventory` · MCP `ark_rules_inventory` |
|
|
70
70
|
| Stable package API | [package-surface.md](package-surface.md) |
|
|
71
71
|
| Diagnostic codes (`ruleId` why/fix) | [diagnostics.md](diagnostics.md) · root `DIAGNOSTIC_CATALOG` |
|
|
72
|
-
| Session / project status snapshot | `ark status --json` · MCP `ark_status` · [
|
|
72
|
+
| Session / project status snapshot | `ark status --json` · MCP `ark_status` · [session recipe](agent-guide.md#session-recipe-agent-turn) · schema `arkgate/schema/status-manifest` |
|
|
73
|
+
| Status compass honesty | `improvementCompass.mode`: `full` \| `subset` \| `unavailable` · residual ⊆ doctor when `full` · [package-surface](package-surface.md) |
|
|
74
|
+
| Managed upgrade self-service | `ark upgrade --json` → `selfService` (activation labels + customized preserve) · [package-surface](package-surface.md) |
|
|
73
75
|
| Version-matched AGENTS projection | `ark agents-md` · [agent-guide](agent-guide.md) · **non-authoritative** (never enforces) |
|
|
74
76
|
| Stable finding refs (`findingRef` / `targetKey`) | analysis-result schema **1.5** · [agent-guide](agent-guide.md) · [package-surface](package-surface.md) |
|
|
75
77
|
| Agent Skills layout (same 13 names) | `templates/agent-skills/` · [agent-guide](agent-guide.md#install-skills-ark-and-ecosystem) · `npx skills add …` |
|
|
@@ -100,9 +102,12 @@ Sensors:
|
|
|
100
102
|
```bash
|
|
101
103
|
npx arkgate-check --plan
|
|
102
104
|
npx arkgate-check --coverage
|
|
103
|
-
npx arkgate-check --doctor --json
|
|
105
|
+
npx arkgate-check --doctor --json # improvementCompass (notAScore lenses) + status light
|
|
104
106
|
```
|
|
105
107
|
|
|
108
|
+
Doctor residual lenses never flip `valid` / strict-merge alone. Product path:
|
|
109
|
+
[use.md — Improvement compass](use.md#improvement-compass-not-a-score).
|
|
110
|
+
|
|
106
111
|
Agent reference (tools, skills, dual path): [agent-guide.md](agent-guide.md).
|
|
107
112
|
|
|
108
113
|
---
|
|
@@ -122,8 +127,8 @@ npx arkgate-check --doctor --json
|
|
|
122
127
|
npx arkgate-check --plan --json
|
|
123
128
|
npx arkgate-check --coverage
|
|
124
129
|
npx arkgate-check --baseline
|
|
125
|
-
npx arkgate status --json #
|
|
126
|
-
npx arkgate agents-md #
|
|
130
|
+
npx arkgate status --json # session/project snapshot (not a score)
|
|
131
|
+
npx arkgate agents-md # preview managed AGENTS block
|
|
127
132
|
npx arkgate agents-md --write # embed/refresh projection markers
|
|
128
133
|
npx arkgate preflight --changes changes.json --json
|
|
129
134
|
npx arkgate upgrade --json # managed content preview
|
package/docs/diagnostics.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# ArkGate diagnostic code catalog
|
|
2
2
|
|
|
3
|
-
> **Source of truth:** Domain module `src/domain/diagnosticCatalog.ts` (
|
|
3
|
+
> **Source of truth:** Domain module `src/domain/diagnosticCatalog.ts` (public diagnostic catalog).
|
|
4
4
|
> Generated CLI mirror: `bin/lib/diagnostic-catalog.mjs`. Catalog schema `1.0`.
|
|
5
5
|
> Enforcement remains CLI / hooks / CI — this page is documentation only.
|
|
6
6
|
|
package/docs/package-surface.md
CHANGED
|
@@ -16,47 +16,49 @@ hardening guide remains repository-hosted rather than duplicated in the gate tar
|
|
|
16
16
|
|
|
17
17
|
| Surface | How you use it | Stability notes |
|
|
18
18
|
|---------|----------------|-----------------|
|
|
19
|
-
| **CLI** | `arkgate` / `arkgate-check` (aliases `ark` / `ark-check`) | Flags and human text may improve; **JSON output shapes** for `--json` (check, doctor, plan, coverage, recommend, **status**, **agents-md**) are stable within a major. Additive fields OK; removals/renames are major.
|
|
19
|
+
| **CLI** | `arkgate` / `arkgate-check` (aliases `ark` / `ark-check`) | Flags and human text may improve; **JSON output shapes** for `--json` (check, doctor, plan, coverage, recommend, **status**, **agents-md**) are stable within a major. Additive fields OK; removals/renames are major. From 4.2, `--require-gates` implies strict config and verifies semantic Ark AGENTS, project-rooted MCP/compact Codex registration, and fail-closed CI rather than file presence alone. `ark status --json` is the unified status snapshot. `ark agents-md` is the version-matched agent projection (non-authoritative). |
|
|
20
20
|
| **Programmatic gate API** | `import { analyzeProject, loadContract, createAICodeGate, ... } from 'arkgate'` | The root export is the static gate/config/analysis contract listed below. It intentionally contains no runtime-kernel implementation. |
|
|
21
|
-
| **
|
|
22
|
-
| **
|
|
23
|
-
| **
|
|
24
|
-
| **
|
|
25
|
-
| **
|
|
26
|
-
| **
|
|
27
|
-
| **
|
|
28
|
-
| **
|
|
29
|
-
| **
|
|
30
|
-
| **
|
|
31
|
-
| **
|
|
32
|
-
| **
|
|
33
|
-
| **
|
|
34
|
-
| **
|
|
35
|
-
| **
|
|
21
|
+
| **Improvement compass (4.4; status honesty 4.5)** | `ark-check --doctor --json` → `doctor.improvementCompass`; human doctor section **Improvement compass (not a score)**; HTML report `data-advisory="improvementCompass"`. **`ark status --json` / MCP `ark_status`** project a thin `improvementCompass` residual map with explicit honesty **`mode`**: `full` \| `subset` \| `unavailable` (always `notAScore: true`). When `mode` is `full`, status residual lens **ids** are a **subset of** doctor residual for the same facts (report snapshot stores the thin slice after `--report`). Incomplete or missing session facts → `subset` / `unavailable` + `reasonCode` / `reason` — **never invent green residual**. Residual never flips `valid` / strict-merge / `goal.met`. When status mode ≠ full, run doctor for full 15-lens detail. | Additive schema `1.0`. Closed **15** lens ids (`soc`, `cohesion`, `coupling`, `srp`, `dip`, `ocp`, `encapsulation`, `modularity`, `scalability`, `resilience`, `security`, `maintainability`, `testability`, `domain`, `stack`) with status `ok` \| `residual` \| `not-instrumented` \| `out-of-scope`, evidence refs, optional `nextAction`, capped `topResidual`, always **`notAScore: true`**. Projection from existing smells / walls / cohesion / ArkRules / design-weak only — **never** a gate input. Out-of-scope locked for scalability, resilience, and app security (no residual invent from missing SAST/APM). Root API: `buildImprovementCompass` / `IMPROVEMENT_LENS_IDS`; status: `projectStatusImprovementCompass` / `STATUS_COMPASS_MODES`. |
|
|
22
|
+
| **Doctor design fitness** | `ark-check --doctor --json` → `doctor.designFitness`, `doctor.designSmells[]` | Additive. Stable smell `id`s: `io-under-application`, `handler-in-persistence`, `god-module`, `domain-logic-in-ui`, `facade-sql-in-routes`, `mixed-pattern-cluster`, `soft-contract`. `handler-in-persistence` covers static ES imports/re-exports of framework HTTP surfaces (`next/server`), `defineRoute` calls, and existing handler bodies inside Persistence-role layers or specific persistence paths; `require()` and dynamic `import()` are outside this narrow advisory, and a generic `Infrastructure` role alone is not Persistence. Persistence candidates are filtered and sorted before the bounded content scan so large application prefixes cannot hide the advisory. The detector inspects the first 800 sorted Persistence candidates; later candidates are uninspected, so **absence of a smell is not full-tree proof** above that envelope (incomplete/`partial` analysis also never proves “no smells”). **4.2 feedback hardening:** mode labels preserve the observed SUGGEST/ADAPT/ENFORCE state; a local permission/UI-state `canEdit` name alone is not a domain smell; real UI business rules route Domain → Application → UI; seed/fixture/demo/migration/generated files are not god-module pilots. Each smell has `evidence[]`, `fix`, technical `message`, and plain-language **`outcome`**. Does **not** fail the gate by itself. |
|
|
23
|
+
| **Post-green Shape door** | `doctor.postGreenPath`, `doctor.primaryNextAction`, `doctor.healthyFinishedForbidden` | Additive when `designFitness.designWeak`. Single Shape door (`id: clarify-for-ai`): explore shape-focus → dual-plan B → autopilot only with OK. Never empty plan A = healthy finished. |
|
|
24
|
+
| **Golden pattern (new code)** | Optional `.ark/golden-pattern.json`; doctor JSON `doctor.goldenPattern`; MCP `ark_place` / `ark_prepare_write` → `goldenPattern` | Additive, **advisory for NEW code only**. Required fields: `name`, `norm`; optional `newCodeHome`, `examplePath`, `schemaVersion`. **Absent is normal** (no claim). Never ENFORCE; never clears design-weak. Malformed → `invalid: true`, not silent guidance. |
|
|
25
|
+
| **Plan pattern B (Shape bets)** | `ark-check --plan --json` → `plan.patternBets[]`, `plan.goal.designWeak` | Additive. Each bet: `id`, `smellId`, `pilot`, `evidence`, `successSignal`, `killSwitch`, **`neverMechanicalSafe: true`**, `class: "judgment"`. **Never** auto-applied by loop/autoPatch; not a `remediationKind` mechanical-safe. `goal.met` remains edge honesty only. |
|
|
26
|
+
| **Pilot loop (one at a time)** | `plan.pilotLoop` / `doctor.pilotLoop` | Additive. When design-weak: `active`, `oneAtATime`, `neverMechanicalSafe`, **`nextPilot`** extraction-card fields (`pilotTarget`, `smellId`, `move`, `successSignal`, `killSwitch`, `doNot[]`). **One pilot → re-doctor**; never multi-pilot batch; never mechanical-safe. |
|
|
27
|
+
| **AI-velocity eval (maintainer)** | Repository-only evidence: `npm run eval:ai-velocity` → `eval/ai-velocity-report.json` | Fixture-measured (no live LLM). Same feature scenario on design-weak vs golden-path arms; metric **`placementTurns`** (agent-equivalent). Golden must be strictly better. Method string lives next to the number. Does not weaken the gate. |
|
|
28
|
+
| **Contract health** | `ark-check --doctor --json` → `doctor.contractHealth`; optional `.ark/contract-smell-acks.json` | Additive, **advisory only** — meta-lint of the contract itself (layer-name heuristics; imprecision costs a warning line, never a verdict); never changes the verdict, `designFitness`, or `patternBets`. Stable smell ids: `contract-bidirectional-allow`, `contract-peripheral-depends-core`, `contract-lateral-adapter-allow`, `contract-dead-rule`; each smell has `severity`, `evidence[]` (sorted, honest `…(+N more)` truncation), `fix`, `message`, plain-language `outcome`, and `acknowledgedEdges` (acks applied to that id). **X03/X06**: the lateral smell does not fire on an adapter reaching its **own family's infra base** — the target reads `<Family><InfraWords…>` (**every** remaining target token an infra word: `Infra(structure)`/`Base`/`Core`/`Shared`/`Common`/`Kernel`/`Platform`/`Foundation`) and the source carries the family token **anywhere** in its name (X06, field: `HoursPersistenceAdapters -> PersistenceInfrastructure` — mid-name families). `PaymentsCoreAdapters` is still a sibling; cross-family edges, non-infra siblings, and the reverse (base → member) still fire. Acknowledgments live in the bounded sidecar (`{ acks: [{ id, edge, reason, reviewBy? }] }`, ≤64 KB / ≤200 entries; bidirectional edges order-insensitive, exact two segments); `contractHealth.acknowledged` counts **applied** acks only (stale acks count 0). **X02 ack lifecycle**: optional `reviewBy` (`YYYY-MM-DD`, strict round-trip validation — `2026-02-30` is malformed) — past the date the ack **stops applying** and the smell returns with `(ack expired …)` annotated evidence; among dated entries a fresh re-ack wins over a dead one, but once ANY dated ack exists for an edge the dated entries govern — a leftover undated duplicate cannot resurrect an expired exception. `detectContractSmells` defaults `today` to the real clock (pass `null` to disable expiry); `analyzeContractSmells` stays pure (clock injected). `contractHealth.ackLifecycle` reports `{ undated, malformed, expiredCount, expired[], staleCount, stale[] (lists capped at 12) }`; undated acks apply (backward compatible) but surface in doctor, report, and the fossilization note even when every smell is suppressed. **X05**: an ack matching **no detected edge** (orphaned by a fixed contract or quieted heuristic, unknown id, or typo'd edge) is `stale` — it suppresses nothing and doctor/report list the exact entries to fix or delete, even at zero visible smells. Malformed `reviewBy` never applies (fail-loud, like a sloppy edge); non-string `reviewBy` → whole file `invalid`. **Absent is normal**; malformed file or edge grammar → ignored + `ackFile.invalid` where applicable, never silent suppression. |
|
|
29
|
+
| **Effect capabilities** | Public root API: `analyzeProject(...).ir.capabilityUses`; the CLI/hook adapters add symbol-aware ambient evidence internally | Additive within IR `1.0`. Seven **closed** ids: `network`, `filesystem`, `clock`, `randomness`, `environment`, `process`, `persistence` (ADR 0009). `collectCapabilityUses` and the Domain vocabulary are internal implementation exports, **not** exports from `arkgate`; the related public low-level helper is `collectForbiddenCapabilityUses`. Direct evidence only — transitive inference never detects. The symbol-aware adapter path covers ambient globals (shadowing/type-only/globalThis-alias precision from the S05/C04 machinery) plus imports; the compiler-free IR engine carries **import-based** uses only (exact module or subpath match, never substring; textual `import type`/`export type` erasure and all-type named lists (`import { type A }`) are type-only there; mixed `{ type A, B }` stays a value import; template-literal bodies are skipped entirely (specifiers inside `${…}` are the symbol path's job); package `require(…)` counts as capability evidence only, while relative `require(…)` also emits a pure-path graph edge). **U04 walls are opt-in:** per-layer `capabilities: { deny: [...] }` or the dual-depth sugar `pure: true` (denies all seven); absence changes no verdict. `CAPABILITY_VIOLATION` is judgment-class (never mechanical-safe) with a port-injection `nextAction`; D7 dedup — evidence already owned by the layer's `forbiddenGlobals` reports only `FORBIDDEN_GLOBAL`. Y08 adds one deliberately narrow import dual: `forbiddenGlobals: ["process"]` owns exact value imports of `process` and `node:process`, but not subpaths or `child_process`; statement-level `import type` / `export type` remains erased on every path (pure-IR residual envelope: mixed `{ type A, B }`, default+named type lists, and comment-interrupted forms stay value imports; symbol path owns full precision). Atomic preflight blocks denied capabilities and that exact dual across a complete multi-file candidate (import-based on the pure path; other ambient evidence adds on the symbol-aware CLI/hook path). T01 policy-delta classifies the surface on **coverage atoms** (`ambient:<entry>` prefix-expanded, narrow `import-exact:<specifier>` duals, and `import:<capability>` for a complete wall): any lost atom is weakening (`fetch`→`XMLHttpRequest`, `Date`→`Date.now`, wall→fg all weaken; finding path `$.layers[name].capabilities`); fg → equivalent-or-stronger wall never needs an acknowledgment; unlowerable custom globals keep raw key comparison. |
|
|
30
|
+
| **Ambient state (pure layers)** | `ark-check --doctor --json` → `doctor.ambientState`; optional `.ark/ambient-state-acks.json` | Additive, **advisory only and opt-in**: only layers declared `pure: true` are scanned; the MVP shape is module-scope `let`/`var`. Findings carry `file`/`line`/`name`/`kind` (sorted, capped with honest `truncated` count). Acknowledgments live in the bounded sidecar (`{ acks: [{ file, name, reason }] }`, ≤64 KB / ≤200 entries); `acknowledged` counts applied acks; malformed file suppresses nothing. When TypeScript is unavailable the sensor reports `available: false` instead of guessing. **No strict mode exists** — A5: strictness requires a completed corpus and an explicit later decision. |
|
|
31
|
+
| **Parse health + analysis completeness** | `ark-check --doctor --json` → `doctor.parseHealth` + `doctor.completeness`; check JSON → `completeness`; report section `data-advisory="parseHealth"` | The resolved candidate facts contribute only `parseDiagnosticCount` per governed file (no raw diagnostics, second parser pass, or `tsc`). Z04's correctness path ignores legacy v9 caches and parses the complete candidate on every invocation; Z07 owns any future identity-keyed warm snapshot. Doctor remains diagnostic: parse health adds no architecture violation and does not change `designFitness` or `patternBets`. Verdict surfaces consume the evidence fail-closed: affected governed files mean `partial`, plan `goal.met: false`, normal JSON `valid:false`/`ok:false`, and strict merge exit `1`; the non-strict process exit remains advisory for compatibility. No usable host means `unavailable`, plan false, and CLI exit `2`. JSON reports `scannedFiles`, `affectedFiles`, `diagnosticCount`, deterministic top-12 `{ file, diagnosticCount }` entries, and honest `truncated`/`overflow`; missing/unsafe evidence never becomes a clean claim. |
|
|
32
|
+
| **Physical cohesion + reshape pilot** | `ark-check --doctor --json` → `doctor.physicalCohesion` (`reshapePilot`, `reshapeDecisions`); optional `.ark/reshape-decisions.json`; report section `data-advisory="physicalCohesion"` | Additive, **advisory only** — `notAScore`; never feeds the verdict, `designFitness`, or `patternBets`. Signal is **concentration, not volume**: concept clusters per anchor directory (deterministic path/name tokenization; framework filenames like `route.ts` take the topmost meaningful path segment — ADR 0010 D2). Fixed corpus-calibrated thresholds (`maxCluster ≥ 40` OR ≥2 anchors ≥ 20, ADR 0010 D3); findings ranked and capped (top 5, honest `truncated`). Anchors under `app/`/`pages/` are `fixedByConvention` and never move (D7). `reshapePilot` is **proposed, never applied** (`neverMechanicalSafe`): one Q04-style pilot card at a time targeting the smallest convention-free anchor, with `moveSample`/`movesTotal`, `successSignal`, `killSwitch`, `doNot[]`; real moves run only through the write gate + atomic preflight via `/ark-loop`; merges are `/ark-architect` judgment cards, never a codemod (D6). **Y01 verdict memory:** bounded sidecar `{ schemaVersion?: "1", decisions: [{ concept, anchors, verdict: "accepted"|"deferred"|"rejected", reason, reviewBy? }] }` (≤64 KiB / ≤200 unique targets). Identity is concept + complete sorted anchor set, never counts/change-map evidence. Current rejected/deferred records suppress pilot pressure only; accepted keeps the existing path. Expired/malformed/stale/invalid records suppress nothing; lifecycle and decisions render in doctor/report. Explicit only — golden-pattern prose never infers a verdict. |
|
|
33
|
+
| **Capability walls, every adapter** | CLI scan, pure IR engine, atomic preflight, `ark-mcp --hook` / MCP gate (`capabilityWalls`), ESLint `ark/no-denied-capabilities` | The same opt-in deny set enforces across every surface: hook/MCP and CLI cover ambient + import evidence (symbol-aware); the pure engine, preflight, and ESLint cover the import dimension (documented envelope). Dual depth everywhere: plain port hint (`FIX_HINTS`/`suggestion`) + stable JSON (`ruleId`, `capability`, `fixClass: inject-port`, deterministic `nextAction`). |
|
|
34
|
+
| **Hook-path budgets (maintainer)** | Repository-only evidence: `npm run bench:hook-path`; `eval/performance/hook-budgets.v1.json`; CI job "Hook-path end-to-end budgets" | Measures the COMPLETE pre-tool paths as fresh child processes (hook cold/warm, doctor cold) at 1k/10k. D5 method locked: ceilings are Linux-baseline p95 + fixed headroom, set once per cycle, never ratcheted; scenarios without a recorded baseline stay in RECORDING mode and cannot fail CI. |
|
|
35
|
+
| **Governance weight** | `ark-check --doctor --json` → `doctor.contractHealth.governanceWeight` | Additive, **advisory only** — raw facts (`declaredLayers`, `populatedLayers`, `governedFiles`, `rules`, `deniedEdges`, `allowedEdges`, `filesPerLayer`, `rulesPerLayer`) plus a fixed comparative band `weight: heavy | typical | light | unknown` and its fixed `note`. Fixed deterministic thresholds: **heavy** = fewer than 25 governed files per declared layer AND (6+ layers OR 4+ well-formed rules per layer); **light** = at most 2 layers over 150+ governed files; **unknown** = no layers or no governed files; everything else is **typical** (banding uses raw ratios; the reported ratios are rounded for display). `notAScore: true` is explicit: never a composite score, ranking, or gate input; the heavy note asks to justify NEW layers/rules and never suggests deleting working ones. Human doctor prints a line only for `heavy`/`light`. |
|
|
36
|
+
| **Report parity and snapshot evidence (4.2)** | `ark-check --report` → advisory sections (`data-advisory="contractHealth\|ambientState\|parseHealth"`, nested `governanceWeight`) + layer wall badges; `.ark/reports/*.json` | The report is a rendering of doctor truth. **Standing rule:** every doctor advisory ships with its report section — enforced by the `reportParity` guard, which enumerates the doctor's advisory keys and fails on any missing section. Snapshots add best-effort Git `HEAD`/branch/dirty provenance without a shell; unavailable Git is explicit. Evolution renders the Ark score delta only when both snapshots name the same ArkGate version, while retaining raw facts across versions. |
|
|
36
37
|
| **MCP project identity (4.2)** | `ark_identity`; `arkgate/schema/project-identity` or `arkgate/schema/ark.project-identity.schema.json`; root API constants/helpers/types | Schema `1.0`. `projectId` hashes canonical root + config path and stays stable across contract edits/restarts; runtime id/start time are separate. Every project-bound tool result and error carries `projectIdentity`, `binding` (`matched` / `unverified` / `mismatch`), and `authoritative`. Canonical out-of-root config/file evidence fails before project data. |
|
|
37
|
-
| **MCP tools and compatibility resource** | `arkgate-mcp`; `ark_manifest`; `ark_status`; `ark://manifest` | Tool names and primary argument shapes are stable within a major. Every tool accepts additive `project.expectedRoot` / optional `expectedProjectId`. The initial handshake requires the exact project root; a contained descendant is authoritative only together with the matching project id. Legacy tool calls remain callable but `unverified` and non-authoritative. `ark_manifest` is the authoritative contract surface after binding. **`ark_status`** returns the
|
|
38
|
+
| **MCP tools and compatibility resource** | `arkgate-mcp`; `ark_manifest`; `ark_status`; `ark://manifest` | Tool names and primary argument shapes are stable within a major. Every tool accepts additive `project.expectedRoot` / optional `expectedProjectId`. The initial handshake requires the exact project root; a contained descendant is authoritative only together with the matching project id. Legacy tool calls remain callable but `unverified` and non-authoritative. `ark_manifest` is the authoritative contract surface after binding. **`ark_status`** returns the status manifest envelope (parity with `ark status --json`). Standard `resources/read` cannot portably carry the expectation, so `ark://manifest` remains compatibility-only and always unverified/non-authoritative. The server never retargets from input. |
|
|
38
39
|
| **`ark.config.json`** | Layer globs, rules, include/exclude, forbiddenGlobals, intent prefixes, `peerIsolation`, `dynamicImportAllowlist`, `safety` thresholds; optional **`arkRules`** map (schema `1.1+`) | Versioned by `schemaVersion`; unknown fields fail closed and migrations preserve the previous supported major. Absence of `arkRules` is byte-for-byte silent on inter-layer verdicts. |
|
|
39
40
|
| **ArkRules inventory / under-contract (4.0; layer context 4.2)** | `ark-check --rules-inventory [--json]`; doctor `rulesUnderContract`; MCP `ark_rules_inventory` | Additive. Honest counts (inventoried / under-contract / frozen) — **never a score**. When configured layer evidence exists it overrides filename role guesses: a Domain file named `handler` is not a controller candidate. Test/fixture/seed/migration/exclusion surfaces plus narrow development-identity, PostgreSQL OID, and technical I/O constants are silent. Without layer evidence, backward-compatible path/content heuristics remain. Structure/invariant diagnostics use adapter `1.4` provenance. |
|
|
40
41
|
| **`arkgate/schema/project-identity`** or **`arkgate/schema/ark.project-identity.schema.json`** | MCP canonical project, contract, runtime, expectation, and binding envelope | Schema `1.0`. Initial `expectedRoot` must be the exact project root. A contained descendant can match only when `expectedProjectId` is also present and correct; id-only matching stays non-authoritative. Mismatch codes are `PROJECT_ROOT_MISMATCH`, `PROJECT_ID_MISMATCH`, and `INVALID_PROJECT_EXPECTATION`. |
|
|
41
42
|
| **Package pin dual-truth (4.0)** | doctor JSON `packageVersionTruth`; upgrade JSON/human note when pin behind CLI | Additive, advisory. Surfaces after `upgrade --no-install` when managed CLI is ahead of package.json. |
|
|
42
|
-
| **
|
|
43
|
-
| **
|
|
44
|
-
| **
|
|
45
|
-
| **
|
|
46
|
-
| **
|
|
47
|
-
| **
|
|
48
|
-
| **Enforcement
|
|
49
|
-
| **
|
|
50
|
-
|
|
|
51
|
-
|
|
|
52
|
-
| **
|
|
53
|
-
| **
|
|
54
|
-
| **
|
|
55
|
-
| **Agent
|
|
43
|
+
| **Managed upgrade self-service honesty (4.5 / DF05)** | `ark upgrade [--json]` → `selfService` (+ human “Self-service honesty” lines) | Additive, advisory. Answers without a maintainer: write-path activation labels per selected host (`hard`\|`advisory`\|`unavailable`) and customized content-identity preserve (`customizedPaths` / `customizedContentPreserved`). Soft hosts never hard; upgrade never invents `hardWriteActive` from disk alone. Always `notAScore: true`. Not a gate input; not part of `planDigest`. |
|
|
44
|
+
| **Product honesty readiness split (4.1.1)** | doctor JSON `productHonesty` | Additive. `unfinished` / `headline` / `primaryNextAction` / `reasonIds` remain; EH adds `contractReadiness` (`ready`\|`partial`\|`not-ready`), `localWriteBoundary` (`advisory`\|`hard`\|`unverified`\|`unknown`), `architectureReasonIds`, `environmentResidualIds` / `environmentResiduals`. Soft-write hosts stay in evidence without alone forcing global **Not finished**. `notAScore: true` always. |
|
|
45
|
+
| **Policy transition analysis (3.1.0)** | `analyzePolicyDelta(...)`; MCP `ark_policy_delta`; CLI `--policy-base` / `--policy-base-ref` / `--policy-ack`; check JSON `policyDelta` | Additive schema `1.0`. Classifications and finding ids are deterministic. Weakening/judgment requires an acknowledgement bound to both policy hashes and the exact blocking finding set. |
|
|
46
|
+
| **Atomic change preflight (3.1.0)** | `preflightChange(...)`; CLI `ark preflight --changes <file> --json`; MCP `ark_prepare_change` | Additive schema `1.0`. One complete governed production-source `{path,content}` / `{path,delete:true}` batch; read-only; returns operation, content/tree/policy/compiler fingerprints and stable graph findings. MCP availability alone is advisory. |
|
|
47
|
+
| **Architecture change map (3.1.0)** | `arkgate/schema/change-map` or `arkgate/schema/ark.change-map.schema.json`; CLI `ark preflight --change-map <file>`; MCP `ark_prepare_change.changeMap` | Optional strict schema `1.0`. Canonical planned paths + operations + resolved Ark layers + dependencies between planned files. Preflight returns `changeMapHash`; absence is normal and adds no project file. Structural intent only, never behavioral completion. |
|
|
48
|
+
| **Structural convergence (3.1.0)** | `analyzeArchitectureConvergence(...)`; map-enabled `preflightChange(...)`; existing CLI/MCP preflight adapters | Additive `convergence` result with stable `satisfied`, `missing`, `contradictory`, and `unplanned` findings. Uses the supplied/current project tree as base and the explicit complete change set as candidate; no implicit Git or LLM input. `readOnly: true`; `behavioralCompletion: "not-evaluated"`. Structural mismatch makes preflight invalid. |
|
|
49
|
+
| **Enforcement ladder + fixed journey (3.1.0)** | `doctor.writePath.enforcementLadder`; hook repair `enforcement`; `npm run eval:change-integrity` | Additive schema `1.0` separates supported/installed/active/bypassable state and evidence. Hard is operation-scoped only for a supported covered hook; MCP is advisory; required CI status stays unverified locally. Fixed no-context fixture proves CLI/MCP/hook/final parity, one casual denial, acceptance behavior, and strict Ark. |
|
|
50
|
+
| **Enforcement state** | `doctor.writePath.enforcementState`; schema/type | Schema `1.1`: runtime observation, operation coverage, and operation-scoped `hard`. Only fresh covered active-host evidence permits `hard:true`; unverified assets and MCP remain non-hard. |
|
|
51
|
+
| **Design delta (opt-in ratchet)** | `--fail-on-new-smells --base-ref <ref>`; hook/MCP; schema/types | Schema `1.0`: identities, touched paths, stable evidence/verdict. Missing base fails closed; only new/worsened `domain-logic-in-ui` blocks; global doctor smells stay advisory. |
|
|
52
|
+
| **`arkgate/schema/analysis-result`** or **`arkgate/schema/ark.analysis-result.schema.json`** | Public CLI/MCP/hook diagnostic envelope (`schemaVersion`, `mode`, `valid`, `completeness`, `completenessReasons`, `diagnostics`, resolved identities) | Schema **`1.5`** adds optional stable finding refs on diagnostics: `findingRef` (`fnv1a-` + hex), `targetKey` (baseline-compatible freeze identity), `docsCodePath` (`docs/diagnostics.md#RULE_ID`). Factory-emitted diagnostics always include them; consumer-owned 1.0–1.4 values remain valid without them. `1.4` added optional `evidence.arkruleId` / `evidence.arkruleSource` for ArkRules; `1.3` distinguished `resolved-candidate-facts` from `lexical-compatibility`; partial/unavailable analysis is always non-green, and resolved complete/partial results require policy/resolver/facts/tree identities. `1.2` added completeness and remains accepted alongside consumer-owned 1.0/1.1 values. |
|
|
53
|
+
| **Stable finding refs (4.3)** | Root API `adapterFindingTargetKey` / `adapterFindingRefFromTargetKey` / `toAdapterDiagnostic` / `createAdapterResult`; CLI/MCP/repair envelopes via analysis-result diagnostics | Multi-turn re-address without fuzzy message match. `targetKey` **is** the baseline (occurrence) key so freeze identity is never orphaned; `findingRef` is a compact FNV-1a of that key. Line/message drift does not change the ref. Multi-turn fixture: `tests/fixtures/finding-refs/multi-turn-stability.json`. |
|
|
54
|
+
| **Diagnostic code catalog** | Root API `DIAGNOSTIC_CATALOG` / `getDiagnosticCatalogEntry` / `diagnosticDocsPath`; docs [diagnostics.md](diagnostics.md) (`#RULE_ID` anchors) | Closed vocabulary of public `ruleId`s with why/fix anchors. Cataloguing only — no new rule semantics. Remediation parity is test-guarded. Docs ship in the npm tarball. |
|
|
55
|
+
| **Status manifest** | CLI `ark status [--json]`; MCP `ark_status`; `arkgate/schema/status-manifest`; root API `buildStatusManifest` / `ARK_STATUS_MANIFEST_SCHEMA` / `projectStatusImprovementCompass` | Schema `1.0`. One session/project snapshot: identity binding, honest write-path activation (`hard`\|`advisory`\|`unavailable`), last-check summary, rules residual counts, primary next action, and **`improvementCompass`** with honesty **`mode`** `full`\|`subset`\|`unavailable` (residual ids only; always `notAScore: true`; optional `reasonCode`/`reason`/`factsSource`/`contractHash`). **Not a score.** Residual never changes gate verdicts. Never prompts (`CI=1` forces JSON). Optional `--expected-root` / `--expected-project-id` (MCP `project`) for matched vs stale identity. |
|
|
56
|
+
| **Agent contract projection** | CLI `ark agents-md [--write] [--check] [--stdout] [--json]`; install/upgrade AGENTS templates; root API `buildAgentProjectionBlock` / `mergeAgentProjectionDocument` | Schema `1.0` (projection markers). Version-stamped managed block (`arkgateVersion` + contract summary + diagnostic short list). **Non-authoritative** — not a gate input; enforcement is ark-check / hooks / CI. Content-identity merge preserves customized regions outside markers. Drift: `--check` vs package version. |
|
|
57
|
+
| **Agent Skills packaging** | `templates/agent-skills/<name>/SKILL.md` (+ package README); root API `ARK_SKILL_NAMES` / `validateAgentSkillsPackage`; `npm run check:agent-skills` | Schema `1.0` (package contract). Same **13** skill names as flat templates; Agent Skills–compatible layout for `npx skills add`. No new skill names. Layout is generated 1:1 from `templates/skills/*.md`. |
|
|
56
58
|
| **`arkgate/schema/arkrules`** or **`arkgate/schema/ark.arkrules.schema.json`** | Per-layer structure sensors + invariant catalog (ADR 0012) | Schema `1.0`. Opt-in via root `arkRules` map (`ark.config` schema `1.1`). |
|
|
57
59
|
| **`arkgate/schema/resolved-candidate-facts`** or **`arkgate/schema/ark.resolved-candidate-facts.schema.json`** | Versioned parity-capable input for `analyzeResolvedProject` / `preflightResolvedChange` | Schema `1.0` is serializable and deterministic. Tooling owns filesystem/compiler resolution; Domain/Kernel validate and evaluate supplied facts without importing those effects. Facts name resolver/compiler inputs, governed files, dependency evidence, completeness reasons, and candidate tree/facts hashes. |
|
|
58
60
|
| **Config JSON Schema** | `arkgate/schema` or `arkgate/schema/ark.config.schema.json` | Stable package resource subpaths for editor completion and contract tooling. |
|
|
59
|
-
| **Agent skills** | `/ark-*` templates; install via `--install-agent-gates` (often `--skills-only` on top of compact) **or** Agent Skills ecosystem path | **Day zero** is the compact router from `ark start` / `start --apply` + doctor control plane — not the full skill pack. Skill *names* (frozen **13**) and the guided expert path (`/ark-autopilot` after pack install) are stable; internal skill prose may evolve. **4.0:** all skills except experimental `/ark-runtime` integrate **layers + ArkRules** and must label residual `[Layer]` vs `[ArkRules]`. **4.2:** repo catalogs are content-idempotent; the optional shared Codex home catalog is monotonic across 4.2.0+ installers. Pre-4.2 writers are outside that protocol and must be upgraded first. A durable pending-catalog journal preserves the floor across an interrupted install and is cleared only by its owning same/newer recovery. **4.3
|
|
61
|
+
| **Agent skills** | `/ark-*` templates; install via `--install-agent-gates` (often `--skills-only` on top of compact) **or** Agent Skills ecosystem path | **Day zero** is the compact router from `ark start` / `start --apply` + doctor control plane — not the full skill pack. Skill *names* (frozen **13**) and the guided expert path (`/ark-autopilot` after pack install) are stable; internal skill prose may evolve. **4.0:** all skills except experimental `/ark-runtime` integrate **layers + ArkRules** and must label residual `[Layer]` vs `[ArkRules]`. **4.2:** repo catalogs are content-idempotent; the optional shared Codex home catalog is monotonic across 4.2.0+ installers. Pre-4.2 writers are outside that protocol and must be upgraded first. A durable pending-catalog journal preserves the floor across an interrupted install and is cleared only by its owning same/newer recovery. **4.3:** Agent Skills–compatible layout at `templates/agent-skills/<name>/SKILL.md` (1:1 with flat `templates/skills/*.md`); install via `npx skills add ./node_modules/arkgate/templates/agent-skills` (or the GitHub tree). Domain `ARK_SKILL_NAMES` + `validateAgentSkillsPackage`; drift `npm run check:agent-skills`. Skills never enforce. |
|
|
60
62
|
| **ESLint subpath** | `arkgate/eslint` | Config-driven layer/import rules; loads consumer `ark.config.json`. |
|
|
61
63
|
| **GitHub Action** | `pedroknigge/arkgate` (see `action.yml`) | The `uses:` tag/SHA selects the checker source; `version` remains an optional exact npm compatibility override. |
|
|
62
64
|
| **Package metadata** | `arkgate/package.json` | Stable resource subpath for tooling that needs the installed manifest. |
|
|
@@ -203,8 +205,10 @@ production deployment would need to satisfy; it is not a readiness certification
|
|
|
203
205
|
## Release notes (maintainers)
|
|
204
206
|
|
|
205
207
|
Ship notes for a version live under [releases/](https://github.com/pedroknigge/arkgate/tree/main/docs/releases)
|
|
206
|
-
(
|
|
207
|
-
|
|
208
|
+
(current published: [4.4.0.md](https://github.com/pedroknigge/arkgate/blob/main/docs/releases/4.4.0.md);
|
|
209
|
+
next prepare: [4.5.0.md](https://github.com/pedroknigge/arkgate/blob/main/docs/releases/4.5.0.md);
|
|
210
|
+
prior published: [4.3.0.md](https://github.com/pedroknigge/arkgate/blob/main/docs/releases/4.3.0.md),
|
|
211
|
+
[4.2.1.md](https://github.com/pedroknigge/arkgate/blob/main/docs/releases/4.2.1.md);
|
|
208
212
|
previous: [4.2.0.md](https://github.com/pedroknigge/arkgate/blob/main/docs/releases/4.2.0.md),
|
|
209
213
|
[4.1.1.md](https://github.com/pedroknigge/arkgate/blob/main/docs/releases/4.1.1.md),
|
|
210
214
|
[4.1.0.md](https://github.com/pedroknigge/arkgate/blob/main/docs/releases/4.1.0.md),
|
package/docs/product-voice.md
CHANGED
|
@@ -24,6 +24,11 @@ because the design space is small and honest.
|
|
|
24
24
|
- **Agent contract surface (4.3.0):** agents read **guardrail catalogs** and **scan** evidence;
|
|
25
25
|
they **process** (judge / coach) outside the package. Projection and skills never become the
|
|
26
26
|
pass/fail gate.
|
|
27
|
+
- **Improvement compass (4.4.0):** residual architecture work is named as **lenses** (SoC, DIP,
|
|
28
|
+
domain alignment, …) projected from existing sensors — **never** a 0–10 score or Excellent/Good
|
|
29
|
+
rank. Out-of-scope lenses (perf, app security tooling, full resilience) stay honest.
|
|
30
|
+
- **Vibe-coder dual depth:** human doctor and skills lead with plain outcomes and one next move;
|
|
31
|
+
experts keep full JSON. Full-AI workflows get the same single door — not a skill menu exam.
|
|
27
32
|
- **False done is forbidden:** Enforce ≠ elegant design. `design-weak` / residual must not
|
|
28
33
|
read as “healthy finished.” Empty ArkRules inventory is not a score. MCP configuration on
|
|
29
34
|
disk is not proof that the current process belongs to this project.
|
|
@@ -92,7 +97,31 @@ Examples:
|
|
|
92
97
|
| **diagnostic code** / **ruleId** | Stable public violation id (e.g. `LAYER_IMPORT_VIOLATION`) with shared why/fix anchors — catalog-linked, not prose-only ([diagnostics.md](diagnostics.md)) |
|
|
93
98
|
| **agent projection** | Version-matched AGENTS/CLAUDE (or equivalent) block generated from package + contract; **non-authoritative** — enforcement is ark-check / hooks / CI |
|
|
94
99
|
| **finding ref** | Stable id for a finding across turns (ruleId + target key), so agents re-address without fuzzy message match |
|
|
95
|
-
| **status snapshot** | One machine-readable project/session manifest (`ark status --json` shape): identity, activation honesty, last check, residual counts — not a numeric score |
|
|
100
|
+
| **status snapshot** | One machine-readable project/session manifest (`ark status --json` shape): identity, activation honesty, last check, residual counts, thin compass residual map — not a numeric score |
|
|
101
|
+
| **session recipe** | Agent loop: bind identity → read status → act on residual / findingRef; run doctor when status compass mode is not `full` |
|
|
102
|
+
| **compass mode** | Status honesty label for the projected residual map: `full` \| `subset` \| `unavailable` — never invent green residual |
|
|
103
|
+
| **improvement compass** | Closed projection of residual architecture work across fixed **lenses** (aligned to 15 common principles). Always `notAScore`. Never a gate input. |
|
|
104
|
+
| **lens** | One named principle dimension (`soc`, `dip`, `domain`, …) with status `ok` / `residual` / `not-instrumented` / `out-of-scope` and evidence refs from existing sensors |
|
|
105
|
+
| **topResidual** | Deterministic short list of residual lens ids — what to improve next, not a ranking score |
|
|
106
|
+
| **out-of-scope lens** | Principle Ark does not instrument (e.g. scalability APM, SAST) — say so; do not invent residual |
|
|
107
|
+
| **AI-easy architecture** | Small, pure, placeable modules and a golden pattern so the next agent turn stays ordered under the contract |
|
|
108
|
+
| **self-service upgrade honesty** | After managed upgrade, consumers can see write-path activation labels and customized-content preserve without asking a maintainer |
|
|
109
|
+
|
|
110
|
+
## Public docs are product-only (from 4.4.0)
|
|
111
|
+
|
|
112
|
+
Consumer-facing prose (README, use/develop/agent-guide, skills, compact router, doctor/CLI human
|
|
113
|
+
lines, CHANGELOG user bullets, release notes bodies) explains **what ArkGate does and how to use
|
|
114
|
+
it**. It does **not** explain features by roadmap item codes, phase numbers, or internal queue
|
|
115
|
+
jargon (`IC02`, `ACS08`, `Z09`, `RB-11`, “Phase X shipped…”).
|
|
116
|
+
|
|
117
|
+
| Put here | Not here (for consumers) |
|
|
118
|
+
|----------|---------------------------|
|
|
119
|
+
| Commands, lenses, gates, skills, honest limits | Roadmap ids as the story |
|
|
120
|
+
| Stable API names (`ruleId`, JSON fields) | Ticket dumps in CHANGELOG |
|
|
121
|
+
| `ROADMAP.md` / `docs/plans/` / archive (maintainers) | Required reading of epic codes to use the product |
|
|
122
|
+
|
|
123
|
+
Historical maintainer files may keep engineering ids. **Do not regress** public lanes with new
|
|
124
|
+
id-heavy narrative after 4.4.0.
|
|
96
125
|
|
|
97
126
|
## Scan vs process (dual depth)
|
|
98
127
|
|
package/docs/use.md
CHANGED
|
@@ -93,7 +93,7 @@ list: [configuration.md](configuration.md).
|
|
|
93
93
|
|
|
94
94
|
That is **Shape** work (plan B) — suggested, never auto-applied as silent magic.
|
|
95
95
|
|
|
96
|
-
1. Doctor confirms design-weak
|
|
96
|
+
1. Doctor confirms design-weak (and residual lenses on the improvement compass)
|
|
97
97
|
2. Guided map / dual plan (skill pack: `/ark-explore` then `/ark-autopilot` with your OK)
|
|
98
98
|
3. One pilot at a time · re-run doctor
|
|
99
99
|
|
|
@@ -105,6 +105,71 @@ npx arkgate-check --install-agent-gates --skills-only --force
|
|
|
105
105
|
|
|
106
106
|
---
|
|
107
107
|
|
|
108
|
+
## Session recipe (agent turn)
|
|
109
|
+
|
|
110
|
+
Short loop so agents do not invent residual or re-run doctor every message:
|
|
111
|
+
|
|
112
|
+
1. **Bind identity** — MCP: call `ark_identity` with `project.expectedRoot` set to the project’s
|
|
113
|
+
exact absolute root; reuse that root plus the returned `projectId` on later Ark tools. CLI:
|
|
114
|
+
pass `--expected-root /abs/project/root` on `ark status` when you need matched vs stale binding.
|
|
115
|
+
2. **Read status** — `npx ark status --json` (or MCP `ark_status`) for identity, write-path
|
|
116
|
+
activation honesty, last-check summary, residual lens ids, and primary next action.
|
|
117
|
+
3. **Act** — work the residual / next action / stable `findingRef` from check diagnostics. Do not
|
|
118
|
+
invent green residual lenses. Green edges alone are never “architecture finished.”
|
|
119
|
+
4. **Doctor when status is incomplete** — if status `improvementCompass.mode` is **`subset`** or
|
|
120
|
+
**`unavailable`** (or compass facts are missing), run `npx ark-check --doctor` (add `--json` for
|
|
121
|
+
the full 15-lens map) before treating residual as complete. When mode is **`full`**, status
|
|
122
|
+
residual ids are a safe subset of doctor residual for the same facts.
|
|
123
|
+
|
|
124
|
+
```bash
|
|
125
|
+
npx ark status --json --expected-root /abs/project/root
|
|
126
|
+
# when mode is not full:
|
|
127
|
+
npx ark-check --doctor
|
|
128
|
+
npx ark-check --doctor --json # doctor.improvementCompass
|
|
129
|
+
```
|
|
130
|
+
|
|
131
|
+
Details: [agent-guide — Session recipe](agent-guide.md#session-recipe-agent-turn) ·
|
|
132
|
+
[package surface — status / compass](package-surface.md).
|
|
133
|
+
|
|
134
|
+
---
|
|
135
|
+
|
|
136
|
+
## Improvement compass (not a score)
|
|
137
|
+
|
|
138
|
+
Doctor shows an **improvement compass**: a closed set of architecture **lenses** (separation of
|
|
139
|
+
concerns, dependency inversion, domain alignment, …) projected from existing sensors.
|
|
140
|
+
|
|
141
|
+
```text
|
|
142
|
+
Improvement compass (not a score)
|
|
143
|
+
Residual: Separation of concerns · Dependency inversion · Domain alignment
|
|
144
|
+
Out of scope (honest): Scalability · App security tooling · Full resilience patterns
|
|
145
|
+
Next: /ark-explore — one pilot at a time after map
|
|
146
|
+
```
|
|
147
|
+
|
|
148
|
+
| Fact | Meaning |
|
|
149
|
+
|------|---------|
|
|
150
|
+
| Always `notAScore` | No 0–10, no Excellent/Good ranks, no averages |
|
|
151
|
+
| Residual lenses | What still matters for cleaner, AI-easy code |
|
|
152
|
+
| Out of scope | Performance/APM, SAST, full resilience — use other tools |
|
|
153
|
+
| Never a gate input | Residual alone does **not** fail CI or flip `valid` |
|
|
154
|
+
|
|
155
|
+
JSON: `ark-check --doctor --json` → `doctor.improvementCompass` (full lenses + `topResidual`).
|
|
156
|
+
Status also projects a thin residual map with honesty **`mode`**: `full` \| `subset` \| `unavailable`
|
|
157
|
+
(always `notAScore`) — see [Session recipe](#session-recipe-agent-turn).
|
|
158
|
+
Human doctor prints the short section above.
|
|
159
|
+
|
|
160
|
+
### Align → Stabilize → Shape
|
|
161
|
+
|
|
162
|
+
| Phase | Goal | Done when (plain English) |
|
|
163
|
+
|-------|------|---------------------------|
|
|
164
|
+
| **Align** | Contract matches the tree | Include/layers honest; no false-green freeze |
|
|
165
|
+
| **Stabilize** | Edges under Enforce | Real debt only in baseline; write path + CI honest |
|
|
166
|
+
| **Shape** | One golden pattern + pilots | Residual lenses shrink pilot by pilot — never silent multi-pilot |
|
|
167
|
+
|
|
168
|
+
Green edges under **Enforce · design-weak** mean Align/Stabilize may be fine while Shape remains open.
|
|
169
|
+
Empty plan A is **not** “architecture finished.”
|
|
170
|
+
|
|
171
|
+
---
|
|
172
|
+
|
|
108
173
|
## Tutorials and demos
|
|
109
174
|
|
|
110
175
|
- Plain-language track: [enthusiast/](enthusiast/README.md)
|
|
@@ -118,6 +183,7 @@ npx arkgate-check --install-agent-gates --skills-only --force
|
|
|
118
183
|
| Need | Doc |
|
|
119
184
|
|------|-----|
|
|
120
185
|
| Hosts, CI, MCP, brownfield, power CLI | [develop.md](develop.md) |
|
|
186
|
+
| Agent/CLI/MCP reference (status, skills, compass JSON) | [agent-guide.md](agent-guide.md) |
|
|
121
187
|
| Wire a specific agent host | [ai-gates.md](ai-gates.md) |
|
|
122
188
|
| Improve the library | [CONTRIBUTING.md](../CONTRIBUTING.md) |
|
|
123
189
|
|