project-tiny-context-harness 0.2.49 → 0.2.51

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/assets/README.md CHANGED
@@ -1,5 +1,5 @@
1
- # Project Tiny Context Harness
2
-
1
+ # Project Tiny Context Harness
2
+
3
3
  [![npm version](https://img.shields.io/npm/v/project-tiny-context-harness.svg)](https://www.npmjs.com/package/project-tiny-context-harness)
4
4
  [![Package CI](https://github.com/Seven128/project-tiny-context-harness/actions/workflows/package.yml/badge.svg)](https://github.com/Seven128/project-tiny-context-harness/actions/workflows/package.yml)
5
5
  [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/Seven128/project-tiny-context-harness/badge)](https://securityscorecards.dev/viewer/?uri=github.com/Seven128/project-tiny-context-harness)
@@ -11,7 +11,7 @@ Translations: [Chinese (Simplified)](README.zh-CN.md)
11
11
  Project Tiny Context Harness is repo-native project memory for AI coding agents.
12
12
 
13
13
  `project-tiny-context-harness` ships Project Tiny Context Harness through the `sdlc-harness` CLI. It installs **Minimal Context Harness**: a compact `project_context/**` fact source, a short `AGENTS.md` startup router, role Skills and a `validate-context` gate so fresh agents can recover project intent, boundaries, verification entry points and next safe actions quickly.
14
-
14
+
15
15
  It is not another full SDLC ceremony. The Harness maintains context quality; project tests, reviews, CI and human acceptance still own product quality.
16
16
 
17
17
  Think of it as durable project memory behind `AGENTS.md`, not another agent, process framework or task manager.
@@ -94,7 +94,7 @@ That smoke packs the local workspace, installs it into a disposable repo, runs `
94
94
  ```sh
95
95
  npm run preview:pack
96
96
  cd /path/to/your/test-repo
97
- npm install -D /path/to/project-tiny-context-harness/tmp/sdlc/source-preview/package/project-tiny-context-harness-0.2.49.tgz
97
+ npm install -D /path/to/project-tiny-context-harness/tmp/sdlc/source-preview/package/project-tiny-context-harness-0.2.51.tgz
98
98
  npx --no-install sdlc-harness init --adopt
99
99
  make validate-context
100
100
  ```
@@ -104,9 +104,9 @@ If the source preview path fails, open a [Source preview report](https://github.
104
104
  Use it when coding agents repeatedly lose project intent across new chats, handoffs, RFC/debug turns or tool changes. The intended tradeoff is: keep durable intent and recovery paths; leave execution evidence to code, tests and review.
105
105
 
106
106
  ## Why It Exists
107
-
108
- Coding agents can move quickly inside one thread and still drift when a new chat, model, tool, reviewer or debugging session loses the project-specific facts that were never encoded anywhere stable.
109
-
107
+
108
+ Coding agents can move quickly inside one thread and still drift when a new chat, model, tool, reviewer or debugging session loses the project-specific facts that were never encoded anywhere stable.
109
+
110
110
  Most repositories already have README files, specs, tests and issue history, but fresh agents need a small, explicit recovery path: what the project is trying to do, what it must not do, where architecture boundaries live, how to validate changes and what durable facts changed after the last task. Minimal Context Harness makes that recovery path a first-class repo surface without adding a full planning ceremony.
111
111
 
112
112
  The product lesson is: **keep the memory, drop the ceremony**. Earlier stage-based workflows externalized requirements, design, implementation, review, test and release into explicit phase artifacts. Modern coding agents already internalize much of that ordinary software loop. Project Tiny Context Harness keeps the useful part: the smallest high-density repo context that survives fresh chats without forcing every task through phase transitions, work-product validation or SDLC-stage context splits.
@@ -114,56 +114,56 @@ The product lesson is: **keep the memory, drop the ceremony**. Earlier stage-bas
114
114
  ## Positioning
115
115
 
116
116
  | Adjacent tool type | Use it for | Harness stance |
117
- |---|---|---|
118
- | Spec-first kits | Turning a feature idea into structured specs and implementation plans. | Complementary. Keep final durable project facts in `project_context/**`; do not require spec documents for every task. |
119
- | BMAD-style workflows and full SDLC processes | Coordinated role/process ceremonies on high-risk work. | Lighter default. Preserve context quality without shipping phase gates or work-product trees. |
120
- | Task Master-style planners | Backlog decomposition and task execution state. | Complementary. Harness does not own task state; it owns durable project memory. |
121
- | Context7/Serena-style retrieval or code-intelligence tools | Pulling external docs, symbols or repository facts on demand. | Complementary. Harness keeps the local project truth that should travel with the repo. |
122
- | IDE or agent memory | Tool-specific continuity inside one product surface. | Portable fallback. Harness files are plain repo assets that any agent can read. |
123
-
124
- ## Try It In 60 Seconds
125
-
126
- ```sh
127
- mkdir project-tiny-context-harness-demo
128
- cd project-tiny-context-harness-demo
129
- git init
130
- npm init -y
131
- npm install -D project-tiny-context-harness@latest
132
- npx --yes --package project-tiny-context-harness@latest sdlc-harness init
133
- make validate-context
134
- ```
135
-
136
- Then open `AGENTS.md`, `project_context/global.md` and `project_context/architecture.md`. Those files are the small recovery surface a fresh agent should read before changing the project.
137
-
138
- Expected result:
139
-
140
- ```text
141
- AGENTS.md
142
- project_context/
143
- context.toml
144
- global.md
145
- architecture.md
146
- areas/main.md
147
- areas/main/verification.md
148
- ```
149
-
150
- Fresh-agent test prompt:
151
-
152
- ```text
153
- Read AGENTS.md and project_context/** first. Summarize the project goal, non-goals, architecture boundaries, validation entry points and next safe action before proposing code changes.
154
- ```
155
-
117
+ |---|---|---|
118
+ | Spec-first kits | Turning a feature idea into structured specs and implementation plans. | Complementary. Keep final durable project facts in `project_context/**`; do not require spec documents for every task. |
119
+ | BMAD-style workflows and full SDLC processes | Coordinated role/process ceremonies on high-risk work. | Lighter default. Preserve context quality without shipping phase gates or work-product trees. |
120
+ | Task Master-style planners | Backlog decomposition and task execution state. | Complementary. Harness does not own task state; it owns durable project memory. |
121
+ | Context7/Serena-style retrieval or code-intelligence tools | Pulling external docs, symbols or repository facts on demand. | Complementary. Harness keeps the local project truth that should travel with the repo. |
122
+ | IDE or agent memory | Tool-specific continuity inside one product surface. | Portable fallback. Harness files are plain repo assets that any agent can read. |
123
+
124
+ ## Try It In 60 Seconds
125
+
126
+ ```sh
127
+ mkdir project-tiny-context-harness-demo
128
+ cd project-tiny-context-harness-demo
129
+ git init
130
+ npm init -y
131
+ npm install -D project-tiny-context-harness@latest
132
+ npx --yes --package project-tiny-context-harness@latest sdlc-harness init
133
+ make validate-context
134
+ ```
135
+
136
+ Then open `AGENTS.md`, `project_context/global.md` and `project_context/architecture.md`. Those files are the small recovery surface a fresh agent should read before changing the project.
137
+
138
+ Expected result:
139
+
140
+ ```text
141
+ AGENTS.md
142
+ project_context/
143
+ context.toml
144
+ global.md
145
+ architecture.md
146
+ areas/main.md
147
+ areas/main/verification.md
148
+ ```
149
+
150
+ Fresh-agent test prompt:
151
+
152
+ ```text
153
+ Read AGENTS.md and project_context/** first. Summarize the project goal, non-goals, architecture boundaries, validation entry points and next safe action before proposing code changes.
154
+ ```
155
+
156
156
  If the agent can answer that without rediscovering the repo from scratch, the Harness is doing its job.
157
157
 
158
158
  A useful first answer should recover the project goal, non-goals, architecture boundaries, validation entry points and next safe action. It should not invent benchmark results or claim tests passed.
159
159
 
160
160
  Maintainers can verify the local package artifact with the same flow:
161
-
162
- ```sh
163
- npm run launch:check
164
- npm run smoke:quickstart
165
- ```
166
-
161
+
162
+ ```sh
163
+ npm run launch:check
164
+ npm run smoke:quickstart
165
+ ```
166
+
167
167
  Copy-ready launch materials live in [docs/launch/README.md](https://github.com/Seven128/project-tiny-context-harness/blob/main/docs/launch/README.md).
168
168
 
169
169
  For the stable product/design rationale, see [PROJECT_SPEC.md](PROJECT_SPEC.md).
@@ -194,57 +194,57 @@ For existing repositories, read the [adoption guide](docs/adopt-existing-repo.md
194
194
  For common launch and adoption questions, see the [FAQ](docs/faq.md).
195
195
 
196
196
  ## Repository Scope
197
-
198
- This repository is both the source workspace and a reference workspace for `project-tiny-context-harness`. It contains three product areas:
199
-
200
- - Harness source code: `packages/sdlc-harness/src/**`, package assets, validators, migrations and source-sync logic.
201
- - npm package release logic: package metadata, build/test scripts and source asset drift checks for `project-tiny-context-harness`.
202
- - Delivery benchmark logic: `examples/delivery-benchmark/**`, used to compare baseline coding against Harness-assisted delivery under the same quality bar.
203
-
204
- Earlier stage-based workflow assets have been removed from the current source tree. The historical design and convergence reason are summarized in [PROJECT_SPEC.md](PROJECT_SPEC.md); new package consumers default to `project_context/**`.
205
-
206
- ## Install
207
-
208
- ```sh
209
- npm install -D project-tiny-context-harness@latest
210
- npx --yes --package project-tiny-context-harness@latest sdlc-harness init
211
- ```
212
-
213
- For an existing project:
214
-
215
- ```sh
216
- npx --yes --package project-tiny-context-harness@latest sdlc-harness init --adopt
217
- ```
218
-
219
- `init` creates:
220
-
221
- - `AGENTS.md`
222
- - `project_context/context.toml`
223
- - `project_context/global.md`
224
- - `project_context/architecture.md`
225
- - `project_context/areas/main.md`
226
- - `project_context/areas/main/verification.md`
227
- - `<harnessRoot>/config.yaml`
228
- - `<harnessRoot>/skills/context_product_plan/SKILL.md`
229
- - `<harnessRoot>/skills/context_uiux_design/SKILL.md`
230
- - `<harnessRoot>/skills/context_development_engineer/SKILL.md`
231
- - `<harnessRoot>/skills/context_full_project_export/SKILL.md`
232
- - `<harnessRoot>/pjsdlc_managed/context_templates/**`
233
- - `<harnessRoot>/pjsdlc_managed/make/sdlc-harness.mk`
234
- - `tools/**`
235
- - a root `Makefile` include block
236
- - `.github/workflows/harness.yml`
237
-
238
- The generated workflow runs only the selected Harness gate, `validate-context` or `validate-harness`. Maintainer-only package tests and source-drift checks are intentionally kept out of consumer projects.
239
-
240
- `init` does not create lifecycle state, plan state, stage skills or stage work-product trees by default.
241
-
242
- ## FAQ
243
-
244
- **Why not just write a better README?**
245
-
246
- README is for humans and broad orientation. Minimal Context is a smaller machine-readable recovery path for fresh agents: durable intent, non-goals, boundaries, validation commands and context drift notes.
247
-
197
+
198
+ This repository is both the source workspace and a reference workspace for `project-tiny-context-harness`. It contains three product areas:
199
+
200
+ - Harness source code: `packages/sdlc-harness/src/**`, package assets, validators, migrations and source-sync logic.
201
+ - npm package release logic: package metadata, build/test scripts and source asset drift checks for `project-tiny-context-harness`.
202
+ - Delivery benchmark logic: `examples/delivery-benchmark/**`, used to compare baseline coding against Harness-assisted delivery under the same quality bar.
203
+
204
+ Earlier stage-based workflow assets have been removed from the current source tree. The historical design and convergence reason are summarized in [PROJECT_SPEC.md](PROJECT_SPEC.md); new package consumers default to `project_context/**`.
205
+
206
+ ## Install
207
+
208
+ ```sh
209
+ npm install -D project-tiny-context-harness@latest
210
+ npx --yes --package project-tiny-context-harness@latest sdlc-harness init
211
+ ```
212
+
213
+ For an existing project:
214
+
215
+ ```sh
216
+ npx --yes --package project-tiny-context-harness@latest sdlc-harness init --adopt
217
+ ```
218
+
219
+ `init` creates:
220
+
221
+ - `AGENTS.md`
222
+ - `project_context/context.toml`
223
+ - `project_context/global.md`
224
+ - `project_context/architecture.md`
225
+ - `project_context/areas/main.md`
226
+ - `project_context/areas/main/verification.md`
227
+ - `<harnessRoot>/config.yaml`
228
+ - `<harnessRoot>/skills/context_product_plan/SKILL.md`
229
+ - `<harnessRoot>/skills/context_uiux_design/SKILL.md`
230
+ - `<harnessRoot>/skills/context_development_engineer/SKILL.md`
231
+ - `<harnessRoot>/skills/context_full_project_export/SKILL.md`
232
+ - `<harnessRoot>/pjsdlc_managed/context_templates/**`
233
+ - `<harnessRoot>/pjsdlc_managed/make/sdlc-harness.mk`
234
+ - `tools/**`
235
+ - a root `Makefile` include block
236
+ - `.github/workflows/harness.yml`
237
+
238
+ The generated workflow runs only the selected Harness gate, `validate-context` or `validate-harness`. Maintainer-only package tests and source-drift checks are intentionally kept out of consumer projects.
239
+
240
+ `init` does not create lifecycle state, plan state, stage skills or stage work-product trees by default.
241
+
242
+ ## FAQ
243
+
244
+ **Why not just write a better README?**
245
+
246
+ README is for humans and broad orientation. Minimal Context is a smaller machine-readable recovery path for fresh agents: durable intent, non-goals, boundaries, validation commands and context drift notes.
247
+
248
248
  **Is this only for Codex?**
249
249
 
250
250
  No. The generated files are plain repository assets. Codex, Claude Code, Cursor, Gemini CLI, Cline, Roo or a human reviewer can read the same facts.
@@ -258,79 +258,116 @@ Neither. Public docs, npm copy and launch posts are English-first so new visitor
258
258
  **Does `validate-context` prove the project works?**
259
259
 
260
260
  No. It checks that recovery facts exist and avoids fake test-result claims. Product quality still belongs to tests, CI, review and human acceptance.
261
-
262
- **Will this create documentation burden?**
263
-
264
- It should stay smaller than a full process. Ordinary bug fixes and local refactors do not update Context unless they produce durable product, architecture, API, state or validation facts.
265
-
261
+
262
+ **Will this create documentation burden?**
263
+
264
+ It should stay smaller than a full process. Ordinary bug fixes and local refactors do not update Context unless they produce durable product, architecture, API, state or validation facts.
265
+
266
266
  The default Skills are Minimal Context helpers for explicit product-planning, UI/UX-design, development-engineering and full-project-export requests. Product, screen-flow and durable engineering conclusions go to `project_context/**`; visual identity and design tokens go to root `DESIGN.md`. Export artifacts are temporary files under `tmp/sdlc/context-exports/**`, not Context.
267
267
 
268
268
  Multilingual trigger phrases and local-language export filenames are compatibility details. Public README, npm and launch copy stay English-first; literal non-English examples are documented only where they explain generated Skill matching or default export filenames.
269
-
269
+
270
270
  For product, UI/UX and engineering tasks that touch design intent, API/Schema, state/runtime behavior, architecture boundaries or verification design, the default Skills compile a short current-task contract before implementation. The contract starts with `Context Delta: none|required`; `required` preserves context-first behavior, while `none` means the task can proceed against existing Context. For module design work, the development engineer Skill also compiles `Applicable Module Design`: the relevant principles, minimal design logic and durable rationale that control the current implementation or verification choice. The task contract and Contract Conformance are handoff evidence, not new PRD, tech-plan, validator or gate surfaces.
271
-
272
- For complex task-contract work, agents may use `plan.md` or an equivalent temporary plan surface as scratch space for `Context Delta`, `Task Contract`, implementation steps and Conformance notes. It is execution cache only: durable facts must be extracted into `project_context/**` or `DESIGN.md`, and temporary plans are not Context, not registered in `context.toml` and not default project assets.
273
-
274
- For Web pages, frontend layout, UI/UX, product module boundaries or decisions about where information belongs, agents should run a lightweight page product-positioning check before deciding whether the change is context-first. The check asks what judgment the user needs to make on the page, what information/actions/feedback the product must provide, what should not be persistent, what belongs in downstream consumption, ops, detail or another page, and whether layout and information density match the page task. If ownership is unclear, inspect the relevant pages and Context first. The check is input to change classification: it does not by itself require a Context update, new document chain or validator gate.
275
-
276
- The expected Context Priority Ladder is: read Context first, run the page product-positioning check when applicable, classify durable-fact impact or use `Context Delta` inside task-contract scenarios, choose context-first or code-first, then perform Contract Conformance when applicable and Context drift check before handoff. This is prompt-level guidance, not an edit-order validator.
277
-
278
- Managed `AGENTS.md` guidance is intentionally a startup router, not a full manual. It should contain fact-source entry points, hard boundaries, key triggers and shortest validation commands; package consumers default long design reasoning to Context unless they already have a local spec/design convention. In this source workspace, `PROJECT_SPEC.md` holds stable Harness workflow rationale. Role procedures belong in Skills and human usage guidance in README. The recommended 40-70 line range is a soft budget, not a validator gate.
279
-
280
- The default `context_*` Skills are package-managed generated files. `sync` overwrites them, so project-specific product/design/development rules should live in separate project-local Skills such as `.codex/skills/product_plan/SKILL.md`, `.codex/skills/uiux_design/SKILL.md` or `.codex/skills/development_engineer/SKILL.md`. When a project-local Skill and a default Skill both apply, agents should use the more specific project-local Skill first while keeping durable conclusions in `project_context/**` and `DESIGN.md`. Keep the project-local Skill front matter `description` triggers aligned with the matching default `context_*` Skill and the project `AGENTS.md` role-trigger rule; if a project adds or narrows product/design/development keywords, update both the local Skill and the agent guidance together.
281
-
282
- ## CLI Entry Safety
283
-
284
- The canonical npm package is `project-tiny-context-harness`; `sdlc-harness` is the bin name. Prefer package-qualified `npx` commands for ad hoc use because bare `npx sdlc-harness` can resolve an older package name or a stale local install. After `init`, the managed Makefile wrapper uses the canonical latest CLI by default and can be overridden with `SDLC_HARNESS=...` when a project intentionally pins a local package.
285
-
286
- Use `npx --no-install sdlc-harness ...` only when you explicitly want the already installed local package, such as release smoke tests against a packed tarball.
287
-
288
- ## Core Commands
289
-
271
+
272
+ For complex task-contract work, agents may use `plan.md` or an equivalent temporary plan surface as scratch space for `Context Delta`, `Task Contract`, implementation steps and Conformance notes. It is execution cache only: durable facts must be extracted into `project_context/**` or `DESIGN.md`, and temporary plans are not Context, not registered in `context.toml` and not default project assets.
273
+
274
+ For Web pages, frontend layout, UI/UX, product module boundaries or decisions about where information belongs, agents should run a lightweight page product-positioning check before deciding whether the change is context-first. The check asks what judgment the user needs to make on the page, what information/actions/feedback the product must provide, what should not be persistent, what belongs in downstream consumption, ops, detail or another page, and whether layout and information density match the page task. If ownership is unclear, inspect the relevant pages and Context first. The check is input to change classification: it does not by itself require a Context update, new document chain or validator gate.
275
+
276
+ The expected Context Priority Ladder is: read Context first, run the page product-positioning check when applicable, classify durable-fact impact or use `Context Delta` inside task-contract scenarios, choose context-first or code-first, then perform Contract Conformance when applicable and Context drift check before handoff. This is prompt-level guidance, not an edit-order validator.
277
+
278
+ Managed `AGENTS.md` guidance is intentionally a startup router, not a full manual. It should contain fact-source entry points, hard boundaries, key triggers and shortest validation commands; package consumers default long design reasoning to Context unless they already have a local spec/design convention. In this source workspace, `PROJECT_SPEC.md` holds stable Harness workflow rationale. Role procedures belong in Skills and human usage guidance in README. The recommended 40-70 line range is a soft budget, not a validator gate.
279
+
280
+ The default `context_*` Skills are package-managed generated files. `sync` overwrites them, so project-specific product/design/development rules should live in separate project-local Skills such as `.codex/skills/product_plan/SKILL.md`, `.codex/skills/uiux_design/SKILL.md` or `.codex/skills/development_engineer/SKILL.md`. When a project-local Skill and a default Skill both apply, agents should use the more specific project-local Skill first while keeping durable conclusions in `project_context/**` and `DESIGN.md`. Keep the project-local Skill front matter `description` triggers aligned with the matching default `context_*` Skill and the project `AGENTS.md` role-trigger rule; if a project adds or narrows product/design/development keywords, update both the local Skill and the agent guidance together.
281
+
282
+ ## CLI Entry Safety
283
+
284
+ The canonical npm package is `project-tiny-context-harness`; `sdlc-harness` is the bin name. Prefer package-qualified `npx` commands for ad hoc use because bare `npx sdlc-harness` can resolve an older package name or a stale local install. After `init`, the managed Makefile wrapper uses the canonical latest CLI by default and can be overridden with `SDLC_HARNESS=...` when a project intentionally pins a local package.
285
+
286
+ Use `npx --no-install sdlc-harness ...` only when you explicitly want the already installed local package, such as release smoke tests against a packed tarball.
287
+
288
+ ## Core Commands
289
+
290
290
  | Command | Purpose |
291
291
  |---|---|
292
292
  | `npx --yes --package project-tiny-context-harness@latest sdlc-harness init` | Non-destructively installs Minimal Context Harness into the current project. |
293
- | `make sdlc-sync` or `npx --yes --package project-tiny-context-harness@latest sdlc-harness sync` | Refreshes managed guidance, default Skills, Makefile include, tools and templates. It does not generate project semantics. |
294
- | `make sdlc-upgrade` or `npx --yes --package project-tiny-context-harness@latest sdlc-harness upgrade` | Runs safe package migrations and `sync`, including Schema v4 Context graph manifest creation when missing. |
293
+ | `make sdlc-sync` or `npx --yes --package project-tiny-context-harness@latest sdlc-harness sync` | Refreshes managed guidance, default Skills, Makefile include, tools and templates. It does not run migrations or generate project semantics; when migration work is pending it refuses to write and tells you to run `upgrade`. |
294
+ | `make sdlc-upgrade` or `npx --yes --package project-tiny-context-harness@latest sdlc-harness upgrade` | Default command after updating the npm package. Builds an upgrade plan, applies `safe_pending` migrations, runs `sync` and `doctor`, and exits non-zero when manual or blocked follow-up remains. |
295
+ | `npx --yes --package project-tiny-context-harness@latest sdlc-harness upgrade --check [--json]` | Checks the upgrade plan without writing files. Reports `safe_pending`, `manual_required` and `blocked`; exits non-zero when any work remains. |
295
296
  | `npx --yes --package project-tiny-context-harness@latest sdlc-harness export-context --all [--check]` | Creates both default temporary exports under `tmp/sdlc/context-exports/**`. |
296
297
  | `npx --yes --package project-tiny-context-harness@latest sdlc-harness export-context --full [--output tmp/sdlc/context-exports/name.md] [--check]` | Creates a temporary project Context summary Markdown artifact. |
297
298
  | `npx --yes --package project-tiny-context-harness@latest sdlc-harness export-context --code [--output tmp/sdlc/context-exports/name.md] [--check]` | Creates a temporary single-file code implementation Markdown artifact. |
298
299
  | `npx --yes --package project-tiny-context-harness@latest sdlc-harness validate-context` | Checks minimum project recovery fields, Context graph metadata, declared paths/roles and fake test-execution claims. |
299
- | `make validate-context` | Makefile wrapper for `validate-context`. |
300
- | `make validate-harness` | Compatibility alias for `validate-context` in vNext projects. |
300
+ | `make validate-context` | Makefile wrapper for `validate-context`. |
301
+ | `make validate-harness` | Compatibility alias for `validate-context` in vNext projects. |
301
302
  | `sdlc-harness package sync-source` | Maintainer-only command to sync source workspace assets into `packages/sdlc-harness/assets/**`. |
302
303
  | `sdlc-harness package check-source` | Maintainer-only drift check for package canonical assets. |
303
304
 
304
- ## Minimal Context Files
305
+ ## Updating Existing Projects
305
306
 
306
- `project_context/global.md` is the first file a fresh agent should read. It contains:
307
+ After updating the package, run `sdlc-harness upgrade`. Use `sync` only when release notes say the update is `sync-only`; sync does not run migrations.
307
308
 
308
- - project goal
309
- - non-goals / boundaries
310
- - background
311
- - design rationale, including former ADR-level decisions that still matter
312
- - architecture context link
313
- - product / delivery brief for durable product goals, users, flows and acceptance signals
314
- - UX / screen brief for durable screen, interaction, responsive and accessibility facts
315
- - short verification context pointers
316
- - current state
317
- - next safe action
318
- - context index
319
-
320
- `project_context/architecture.md` is the restrained architecture document. It contains:
321
-
322
- - system boundary
323
- - component map
324
- - data / control flow
325
- - architecture-level design rationale
326
- - constraints and tradeoffs
327
- - verification implications
328
- - open risks
309
+ ```sh
310
+ npm install -D project-tiny-context-harness@latest
311
+ npx --yes --package project-tiny-context-harness@latest sdlc-harness upgrade --check
312
+ npx --yes --package project-tiny-context-harness@latest sdlc-harness upgrade
313
+ ```
314
+
315
+ Release notes and release readiness use this update mode vocabulary:
316
+
317
+ | Update mode | What to run | Meaning |
318
+ |---|---|---|
319
+ | `sync-only` | `sdlc-harness sync` | The release changes only package-managed assets. No migrations are required. |
320
+ | `upgrade-required` | `sdlc-harness upgrade` | The release includes safe mechanical migrations and managed asset refresh. |
321
+ | `manual-required` | `sdlc-harness upgrade`, then manual follow-up | The release includes items that cannot be mechanically changed without user intent. |
322
+
323
+ `upgrade --check` prints the plan without writing files. The plan groups work as:
324
+
325
+ | Status | Meaning |
326
+ |---|---|
327
+ | `safe_pending` | The Harness can prove the change is inside a known Harness-owned schema, config or path convention and can apply it mechanically. |
328
+ | `manual_required` | The file is in migration scope, but the Harness cannot prove the right semantic role or user intent. It prints the path and follow-up. |
329
+ | `blocked` | A safe target cannot be written, usually because the destination already exists or another conflict would require overwriting user content. |
330
+
331
+ `upgrade` promises to refresh package-managed assets, apply known safe migrations, avoid overwriting user custom content, expose manual-required migration scope, and run `doctor` / `validate-context` style diagnostics so remaining problems are visible. It does not automatically understand the user's project semantics, decide every Context role, repair project-local Skills, invent business verification paths, update product/deployment facts or turn an old project into the current best-practice shape.
329
332
 
330
- `project_context/context.toml` is the Schema v4 Context graph manifest. `init` creates a default `main` product/domain area for ordinary projects and registers `project_context/areas/main/verification.md` as its default `verification` role Context. `upgrade` creates a conservative baseline manifest for existing projects by registering current `project_context/areas/**/*.md` files as areas, except obvious `verification.md` and `deployment.md` role files. Larger projects can add `[[areas]]` and `[[context]]` entries with role, trigger/read policy, default children and monorepo boundary metadata such as `forbidden_runtime_dependencies`.
333
+ Examples:
331
334
 
332
- `project_context/areas/<unit>.md` contains product/domain ownership context by default. For larger projects, `areas/` may contain nested files such as `areas/<area>/README.md`, `areas/<area>/contracts/*.md`, `areas/<area>/foundation/*.md`, `areas/<area>/verification.md`, `areas/<area>/deployment.md` or other durable context nodes:
335
+ - `project_context/modules/main.md` -> `project_context/areas/main.md` is a safe mechanical migration when the target does not already exist.
336
+ - A missing `project_context/context.toml` can receive a conservative baseline manifest.
337
+ - `project_context/areas/main/verification.md` can be registered as a `verification` role by path convention.
338
+ - `project_context/areas/payment/api.md` without a manifest role is reported as `manual_required`; the Harness does not guess whether it is an area, contract, foundation or implementation index.
339
+ - If `project_context/areas/main.md` already exists while `project_context/modules/main.md` still exists, the migration is `blocked` and no file is overwritten.
340
+
341
+ ## Minimal Context Files
333
342
 
343
+ `project_context/global.md` is the first file a fresh agent should read. It contains:
344
+
345
+ - project goal
346
+ - non-goals / boundaries
347
+ - background
348
+ - design rationale, including former ADR-level decisions that still matter
349
+ - architecture context link
350
+ - product / delivery brief for durable product goals, users, flows and acceptance signals
351
+ - UX / screen brief for durable screen, interaction, responsive and accessibility facts
352
+ - short verification context pointers
353
+ - current state
354
+ - next safe action
355
+ - context index
356
+
357
+ `project_context/architecture.md` is the restrained architecture document. It contains:
358
+
359
+ - system boundary
360
+ - component map
361
+ - data / control flow
362
+ - architecture-level design rationale
363
+ - constraints and tradeoffs
364
+ - verification implications
365
+ - open risks
366
+
367
+ `project_context/context.toml` is the Schema v4 Context graph manifest. `init` creates a default `main` product/domain area for ordinary projects and registers `project_context/areas/main/verification.md` as its default `verification` role Context. `upgrade` creates a conservative baseline manifest for existing projects by registering current `project_context/areas/**/*.md` files as areas, except obvious `verification.md` and `deployment.md` role files. Larger projects can add `[[areas]]` and `[[context]]` entries with role, trigger/read policy, default children and monorepo boundary metadata such as `forbidden_runtime_dependencies`.
368
+
369
+ `project_context/areas/<unit>.md` contains product/domain ownership context by default. For larger projects, `areas/` may contain nested files such as `areas/<area>/README.md`, `areas/<area>/contracts/*.md`, `areas/<area>/foundation/*.md`, `areas/<area>/verification.md`, `areas/<area>/deployment.md` or other durable context nodes:
370
+
334
371
  - responsibility
335
372
  - user / system contract
336
373
  - core data, API or state
@@ -341,112 +378,112 @@ Use `npx --no-install sdlc-harness ...` only when you explicitly want the alread
341
378
  - open risks
342
379
 
343
380
  A module design capsule should stay small and decision-shaped: `Principles` are stable execution constraints, `Design Logic` is the minimum choose/reject/degrade/compose logic, and `Design Rationale` keeps only reasons that change later implementation or verification decisions. Current thresholds, commands and probe parameters belong in the relevant contract or verification Context as execution instances, not as permanent principles.
344
-
345
- Additional Markdown context files under `project_context/**` can declare `context_role` in front matter or receive a role from `context.toml`. Roles are semantic labels that help agents choose when and how to read context; `validate-context` checks graph structure, paths and field shapes rather than enforcing a writing template for each role:
346
-
347
- - `global`: project-level fact source and reading entry point.
348
- - `architecture`: durable system boundary, component relationship and architecture constraints.
349
- - `area`: a primary product/domain ownership context; ordinary projects usually have one `main` area.
350
- - `domain`: a business-oriented area label for product-family or monorepo contexts.
351
- - `subdomain`: a smaller context unit inside an area.
352
- - `contract`: cross-area or cross-subdomain interface, event, API or schema semantics.
353
- - `foundation`: durable theory, vocabulary or conceptual source material.
354
- - `verification`: critical test, smoke, CI, probe or validation repeat-execution paths for an owning area or cross-domain project path.
355
- - `deployment`: critical deploy, CI/CD, cloud/bootstrap, runtime topology, service initialization, health-check or rollback/degradation repeat-execution paths.
356
- - `archive`: historical or external source index that should not be read by default.
357
- - `implementation-index`: code navigation map for owned paths, responsibilities and tests.
358
- - `decision-rationale`: stable reasons behind durable design choices.
359
-
360
- When authoring, migrating or cleaning up `project_context/areas/**`, run a soft role placement scan before registering every Markdown file as an `[[areas]]` entry. Keep `area` / `domain` for product ownership, use `subdomain` only for a smaller owned product context, move interface semantics into `contract`, stable theory or vocabulary into `foundation`, repeatable test/deploy execution paths into `verification` / `deployment`, code maps into `implementation-index`, design reasons into `decision-rationale`, and non-default historical or external material into `archive`. This is prompt-level guidance, not a validator gate.
361
-
362
- Automatic migration moves legacy `project_context/modules/**/*.md` files into `project_context/areas/**/*.md`, creates a usable graph baseline and does not infer deep semantic roles. If an existing deep area file is really a foundation, contract, archive or implementation index, a later agent should update `context.toml` explicitly. Boundary rules are metadata only; Harness does not scan source imports or build a runtime dependency graph.
363
-
364
- ## Temporary Project Exports
365
-
366
- Use `export-context --all` when you want both one-off project exports for copying into an external tool or discussion:
367
-
368
- ```sh
369
- npx --yes --package project-tiny-context-harness@latest sdlc-harness export-context --all
370
- npx --yes --package project-tiny-context-harness@latest sdlc-harness export-context --all --check
371
- ```
372
-
381
+
382
+ Additional Markdown context files under `project_context/**` can declare `context_role` in front matter or receive a role from `context.toml`. Roles are semantic labels that help agents choose when and how to read context; `validate-context` checks graph structure, paths and field shapes rather than enforcing a writing template for each role:
383
+
384
+ - `global`: project-level fact source and reading entry point.
385
+ - `architecture`: durable system boundary, component relationship and architecture constraints.
386
+ - `area`: a primary product/domain ownership context; ordinary projects usually have one `main` area.
387
+ - `domain`: a business-oriented area label for product-family or monorepo contexts.
388
+ - `subdomain`: a smaller context unit inside an area.
389
+ - `contract`: cross-area or cross-subdomain interface, event, API or schema semantics.
390
+ - `foundation`: durable theory, vocabulary or conceptual source material.
391
+ - `verification`: critical test, smoke, CI, probe or validation repeat-execution paths for an owning area or cross-domain project path.
392
+ - `deployment`: critical deploy, CI/CD, cloud/bootstrap, runtime topology, service initialization, health-check or rollback/degradation repeat-execution paths.
393
+ - `archive`: historical or external source index that should not be read by default.
394
+ - `implementation-index`: code navigation map for owned paths, responsibilities and tests.
395
+ - `decision-rationale`: stable reasons behind durable design choices.
396
+
397
+ When authoring, migrating or cleaning up `project_context/areas/**`, run a soft role placement scan before registering every Markdown file as an `[[areas]]` entry. Keep `area` / `domain` for product ownership, use `subdomain` only for a smaller owned product context, move interface semantics into `contract`, stable theory or vocabulary into `foundation`, repeatable test/deploy execution paths into `verification` / `deployment`, code maps into `implementation-index`, design reasons into `decision-rationale`, and non-default historical or external material into `archive`. This is prompt-level guidance, not a validator gate.
398
+
399
+ Automatic migration moves legacy `project_context/modules/**/*.md` files into `project_context/areas/**/*.md`, creates a usable graph baseline and does not infer deep semantic roles. If an existing deep area file is really a foundation, contract, archive or implementation index, a later agent should update `context.toml` explicitly. Boundary rules are metadata only; Harness does not scan source imports or build a runtime dependency graph.
400
+
401
+ ## Temporary Project Exports
402
+
403
+ Use `export-context --all` when you want both one-off project exports for copying into an external tool or discussion:
404
+
405
+ ```sh
406
+ npx --yes --package project-tiny-context-harness@latest sdlc-harness export-context --all
407
+ npx --yes --package project-tiny-context-harness@latest sdlc-harness export-context --all --check
408
+ ```
409
+
373
410
  This generates both default artifacts with the same timestamp: `tmp/sdlc/context-exports/full-project-context-<timestamp>.md` and `tmp/sdlc/context-exports/code-level-implementation-<timestamp>/code-level-implementation.md`. `--all` does not accept `--output`; use the single-artifact commands below for custom names.
374
-
375
- Use `export-context --full` when you need only the project Context bundle:
376
-
377
- ```sh
378
- npx --yes --package project-tiny-context-harness@latest sdlc-harness export-context --full
379
- npx --yes --package project-tiny-context-harness@latest sdlc-harness export-context --full --output tmp/sdlc/context-exports/my-export.md
380
- npx --yes --package project-tiny-context-harness@latest sdlc-harness export-context --full --check
381
- ```
382
-
411
+
412
+ Use `export-context --full` when you need only the project Context bundle:
413
+
414
+ ```sh
415
+ npx --yes --package project-tiny-context-harness@latest sdlc-harness export-context --full
416
+ npx --yes --package project-tiny-context-harness@latest sdlc-harness export-context --full --output tmp/sdlc/context-exports/my-export.md
417
+ npx --yes --package project-tiny-context-harness@latest sdlc-harness export-context --full --check
418
+ ```
419
+
383
420
  The default artifact path is `tmp/sdlc/context-exports/full-project-context-<timestamp>.md`. The file title is `# Full Project Context Export`. The file header says `Export artifact. Do not reference from project_context/context.toml.` The export includes Context files, key README / AGENTS / DESIGN documents, managed Skill guidance, Makefile verification-entry summaries, a directory tree summary and Context code-entry indexes.
384
-
385
- Use `export-context --code` when an external model needs the current implementation state in one uploadable Markdown file:
386
-
387
- ```sh
388
- npx --yes --package project-tiny-context-harness@latest sdlc-harness export-context --code
389
- npx --yes --package project-tiny-context-harness@latest sdlc-harness export-context --code --output tmp/sdlc/context-exports/my-code-export.md
390
- npx --yes --package project-tiny-context-harness@latest sdlc-harness export-context --code --check
391
- ```
392
-
421
+
422
+ Use `export-context --code` when an external model needs the current implementation state in one uploadable Markdown file:
423
+
424
+ ```sh
425
+ npx --yes --package project-tiny-context-harness@latest sdlc-harness export-context --code
426
+ npx --yes --package project-tiny-context-harness@latest sdlc-harness export-context --code --output tmp/sdlc/context-exports/my-code-export.md
427
+ npx --yes --package project-tiny-context-harness@latest sdlc-harness export-context --code --check
428
+ ```
429
+
393
430
  The default code artifact path is `tmp/sdlc/context-exports/code-level-implementation-<timestamp>/code-level-implementation.md`. The file title is `# Code-Level Implementation Export`. It scans main source and engineering configuration files, adds each file path, type, line count, character count, SHA256, a heuristic one-sentence summary and a fenced redacted code block. It does not split output into multiple Markdown files.
394
-
395
- Both export modes exclude `.env*` except safe examples such as `.env.example`, secret/token/cookie-oriented files, raw captures, licensed payload dumps, `node_modules`, build output, caches, coverage, test reports, logs and existing export artifacts; obvious sensitive assignment values are redacted and reported as warnings.
396
-
431
+
432
+ Both export modes exclude `.env*` except safe examples such as `.env.example`, secret/token/cookie-oriented files, raw captures, licensed payload dumps, `node_modules`, build output, caches, coverage, test reports, logs and existing export artifacts; obvious sensitive assignment values are redacted and reported as warnings.
433
+
397
434
  Exports are not long-lived fact sources. The CLI refuses `project_context/**` and non-temporary output paths, and `validate-context` rejects obvious export artifact names such as `code-level-implementation`, `full-project-context`, legacy Chinese export names, `project-overview`, `context-bundle`, `context-summary` or `context-export` if someone tries to register them in `project_context/context.toml`.
398
-
399
- The Context should be short enough to read at session start and specific enough to prevent fresh-agent drift. It should not copy code, test logs, release ledgers or implementation narration that the code already makes obvious.
400
-
435
+
436
+ The Context should be short enough to read at session start and specific enough to prevent fresh-agent drift. It should not copy code, test logs, release ledgers or implementation narration that the code already makes obvious.
437
+
401
438
  Verification and deployment role Context are narrow exceptions for reusable execution knowledge. Do not record one-off test logs, full command output, temporary JSON, CI artifacts, test reports, release ledgers, secrets, tokens, cookies, device ids or raw payloads. When a test, smoke, CI, deployment, bootstrap or runtime path has durable recovery value, record only the special preparation, shortest command/path, expected stage or signal, acceptable warnings and dead ends already ruled out. Verification paths are reusable execution instances, not independent definitions of capability, metric or acceptance targets; first use the owning module's design Context to decide what claim should be proven, then choose the command or probe. These paths should live in the owning area's `verification` or `deployment` role Context; use project-level references only for truly cross-domain paths.
402
-
403
- `project_context/**` is authoritative for intended responsibility, ownership, product intent, architecture boundaries, integration direction, allowed or forbidden dependencies and verification/deployment entry paths. Source code is authoritative for current implementation state. When code shape, keyword search results or nearby implementations disagree with Context, agents should treat the difference as implementation drift, missing work or stale Context that must be called out, not as evidence that overrides Context-declared ownership or intent.
404
-
405
- Before the first code edit, agents should classify the change instead of relying on a fixed timer. Long-term fact changes include product ownership or plans, module responsibilities, information architecture, API / Schema, state-machine or scheduler semantics, cross-area boundaries and verification/deployment entry paths. If a task hits one of these categories, Context-first is the default path and the first update should be the relevant `project_context/**` entry with enough durable context to guide implementation, without a fixed line-count limit:
406
-
407
- ```text
408
- context -> implementation -> verification -> context drift check
409
- ```
410
-
411
- Code-first is a controlled exception for ordinary bug fixes, local styling changes, local implementation-drift repairs, test fixes and exploratory spikes; those should not update Context unless they produce a durable fact. Once code discovery produces one, the agent should update Context before final alignment or handoff:
412
-
413
- ```text
414
- implementation discovery -> context update if long-term fact changed -> implementation alignment -> verification
415
- ```
416
-
417
- This ordering is guidance, not a new validator gate. `validate-context` checks recoverability and fake verification claims; it does not infer whether Context or code was edited first. Automation may warn about possible context-first drift, but should not block work. Handoffs should report only a lightweight status such as `Context: updated ...` or `Context: no durable fact change`.
418
-
419
- Product, UI/UX and development engineer Skills are prompts for keeping that Context sharp. They may help draft a product plan, screen design or implementation plan, but the long-lived asset is still the compact Context.
420
-
421
- Projects customize these workflows by adding separate project-local Skills, not by editing package-managed default Skills:
422
-
423
- ```sh
424
- mkdir -p .codex/skills/uiux_design
425
- $EDITOR .codex/skills/uiux_design/SKILL.md
426
- ```
427
-
428
- The project-local Skill should mention when it supersedes the package-managed default Skill and should either reuse the default Minimal Context workflow or state the narrower project workflow directly. Its front matter `description` should preserve the same role-trigger intent as `AGENTS.md` and the matching default `context_*` Skill, with any project-specific keyword additions reflected in both places. `sync` does not merge Skill overrides and does not overwrite these separate local Skills. Existing `.codex/pjsdlc_managed/override_skills/*.md` files should be migrated into standalone project-local Skills before running `sync`.
429
-
430
- `init` creates root `DESIGN.md` beside Context as the design-system fact source, and `upgrade` creates it for existing Harness projects when missing. It starts as a neutral starter baseline with visual tokens, background/color logic, typography, spacing, component states and do/don't guidance; user-authored design rules take precedence once present. Use `npx @google/design.md lint DESIGN.md` to validate its structure when the file is changed.
431
-
432
- Harness installs Impeccable as a default package dependency. For design drafts, redesigns, visual polish, frontend redesign/styling or existing-UI review work, agents should run Impeccable by default when there is a scan target such as UI source, page files, build output or a local/remote URL:
433
-
434
- ```bash
435
- npx impeccable detect src/
436
- ```
437
-
438
- Impeccable is a default design-review step when a scan target exists, but it is not a `validate-context` gate. If there is no suitable target or the command cannot run, the agent should say why and continue. Its findings are design-review signals, not a replacement for screenshots, project tests or human review.
439
-
440
- ## Current Boundary
441
-
442
- The former stage-based Harness is no longer shipped as a runnable default, compatibility layer or migration command. Existing users have completed migration, so the package keeps only the current Minimal Context surface.
443
-
444
- The design reason is evidence-driven: delivery benchmark pilots showed that full SDLC document chains and frequent workflow gates create real time/token friction on ordinary and medium-complexity tasks, while modern agents already handle much of single-stage product/test work internally. The vNext default keeps the part with the clearest expected return: a minimal durable context for recovery, iteration, debug and requirements changes.
445
-
446
- ## Delivery Benchmark
447
-
448
- `examples/delivery-benchmark/` remains repo-local. It is used to test whether Harness changes improve same-quality lifecycle delivery efficiency. Historical stage-based result summaries were removed from the public report; future Harness prompts use Minimal Context and require fresh reruns.
449
-
439
+
440
+ `project_context/**` is authoritative for intended responsibility, ownership, product intent, architecture boundaries, integration direction, allowed or forbidden dependencies and verification/deployment entry paths. Source code is authoritative for current implementation state. When code shape, keyword search results or nearby implementations disagree with Context, agents should treat the difference as implementation drift, missing work or stale Context that must be called out, not as evidence that overrides Context-declared ownership or intent.
441
+
442
+ Before the first code edit, agents should classify the change instead of relying on a fixed timer. Long-term fact changes include product ownership or plans, module responsibilities, information architecture, API / Schema, state-machine or scheduler semantics, cross-area boundaries and verification/deployment entry paths. If a task hits one of these categories, Context-first is the default path and the first update should be the relevant `project_context/**` entry with enough durable context to guide implementation, without a fixed line-count limit:
443
+
444
+ ```text
445
+ context -> implementation -> verification -> context drift check
446
+ ```
447
+
448
+ Code-first is a controlled exception for ordinary bug fixes, local styling changes, local implementation-drift repairs, test fixes and exploratory spikes; those should not update Context unless they produce a durable fact. Once code discovery produces one, the agent should update Context before final alignment or handoff:
449
+
450
+ ```text
451
+ implementation discovery -> context update if long-term fact changed -> implementation alignment -> verification
452
+ ```
453
+
454
+ This ordering is guidance, not a new validator gate. `validate-context` checks recoverability and fake verification claims; it does not infer whether Context or code was edited first. Automation may warn about possible context-first drift, but should not block work. Handoffs should report only a lightweight status such as `Context: updated ...` or `Context: no durable fact change`.
455
+
456
+ Product, UI/UX and development engineer Skills are prompts for keeping that Context sharp. They may help draft a product plan, screen design or implementation plan, but the long-lived asset is still the compact Context.
457
+
458
+ Projects customize these workflows by adding separate project-local Skills, not by editing package-managed default Skills:
459
+
460
+ ```sh
461
+ mkdir -p .codex/skills/uiux_design
462
+ $EDITOR .codex/skills/uiux_design/SKILL.md
463
+ ```
464
+
465
+ The project-local Skill should mention when it supersedes the package-managed default Skill and should either reuse the default Minimal Context workflow or state the narrower project workflow directly. Its front matter `description` should preserve the same role-trigger intent as `AGENTS.md` and the matching default `context_*` Skill, with any project-specific keyword additions reflected in both places. `sync` does not merge Skill overrides and does not overwrite these separate local Skills. Existing `.codex/pjsdlc_managed/override_skills/*.md` files should be migrated into standalone project-local Skills before running `sync`.
466
+
467
+ `init` creates root `DESIGN.md` beside Context as the design-system fact source, and `upgrade` creates it for existing Harness projects when missing. It starts as a neutral starter baseline with visual tokens, background/color logic, typography, spacing, component states and do/don't guidance; user-authored design rules take precedence once present. Use `npx @google/design.md lint DESIGN.md` to validate its structure when the file is changed.
468
+
469
+ Harness installs Impeccable as a default package dependency. For design drafts, redesigns, visual polish, frontend redesign/styling or existing-UI review work, agents should run Impeccable by default when there is a scan target such as UI source, page files, build output or a local/remote URL:
470
+
471
+ ```bash
472
+ npx impeccable detect src/
473
+ ```
474
+
475
+ Impeccable is a default design-review step when a scan target exists, but it is not a `validate-context` gate. If there is no suitable target or the command cannot run, the agent should say why and continue. Its findings are design-review signals, not a replacement for screenshots, project tests or human review.
476
+
477
+ ## Current Boundary
478
+
479
+ The former stage-based Harness is no longer shipped as a runnable default, compatibility layer or migration command. Existing users have completed migration, so the package keeps only the current Minimal Context surface.
480
+
481
+ The design reason is evidence-driven: delivery benchmark pilots showed that full SDLC document chains and frequent workflow gates create real time/token friction on ordinary and medium-complexity tasks, while modern agents already handle much of single-stage product/test work internally. The vNext default keeps the part with the clearest expected return: a minimal durable context for recovery, iteration, debug and requirements changes.
482
+
483
+ ## Delivery Benchmark
484
+
485
+ `examples/delivery-benchmark/` remains repo-local. It is used to test whether Harness changes improve same-quality lifecycle delivery efficiency. Historical stage-based result summaries were removed from the public report; future Harness prompts use Minimal Context and require fresh reruns.
486
+
450
487
  The benchmark should not prove that Harness is always faster. It should find the break-even curve: which complexity, risk and recovery conditions make context maintenance pay back its cost.
451
488
 
452
489
  Read [Benchmarking And Evidence](docs/benchmarking.md) for the claim boundary and evidence rules. Open the static report at [examples/delivery-benchmark/results/index.html](examples/delivery-benchmark/results/index.html).