@ai-substrate/engineering-harness 0.2.0 โ 0.3.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/README.md +5 -29
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
An engineering harness productises the software-development loop so humans and agents can move from intent to evidence, then encode what they learn into the next run.
|
|
4
4
|
|
|
5
|
-
>
|
|
6
|
-
> **Fastest start โ let your agent do it.** Copy this into Claude Code / Copilot / Cursor / Codex in your repo:
|
|
5
|
+
> **๐ก Fastest start โ let your agent do it.** Copy this into Claude Code / Copilot / Cursor / Codex in your repo:
|
|
7
6
|
>
|
|
8
7
|
> ```text
|
|
9
8
|
> Install the engineering harness from https://github.com/AI-Substrate/harness-engineering
|
|
@@ -44,32 +43,9 @@ The harness is not throwaway scaffolding. It is a **productised development surf
|
|
|
44
43
|
|
|
45
44
|
Intent flows down. Evidence flows up. The engineering harness is the **deterministic layer** โ the one your repo probably doesn't have as a first-class thing.
|
|
46
45
|
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
H["<b>HUMAN STEERING LAYER</b> (THIS IS YOU)<br/><i>Intent, judgement, risk, taste, priorities.</i><br/>Humans decide what matters and what gets encoded."]
|
|
51
|
-
I["<b>INFERENCE LAYER</b> ยท Agent Harness<br/><i>Reasoning, planning, semantic review, architecture judgement. Writes code.<br/>Spec Driven Development etc. lives here.</i><br/>Where the agent works through ambiguity and discovers friction."]
|
|
52
|
-
D["<b>DETERMINISTIC LAYER</b> ยท Engineering Harness<br/><i>Runnable proof, backpressure, and token savings.</i><br/><br/><b>Proof</b> โ can it build, run, pass, render, respond, migrate, comply?<br/><b>Backpressure</b> โ tests, linters, type checks, architecture rules, security checks,<br/>smoke tests, health checks, endpoint checks, browser flows.<br/><b>Evidence</b> โ logs, traces, screenshots, reports, command output, API responses.<br/><b>Token savings</b> โ less rediscovery, fewer loops, less markdown-as-runtime.<br/>Encode repeatable knowledge into commands, scripts and checks."]
|
|
53
|
-
C["<b>CODEBASE LAYER</b><br/><i>Bootable, observable, testable, mockable, stable.</i><br/>Engineering Fundamentals โ the substrate that makes deterministic proof possible."]
|
|
54
|
-
|
|
55
|
-
H -->|"steers: intent, decisions, what matters"| I
|
|
56
|
-
I -->|"shows receipts: evidence, proposals, magic-wand asks"| H
|
|
57
|
-
I -->|"asks for proof: boot, checks, smoke โ discovered via --help, not memory"| D
|
|
58
|
-
D -->|"verdicts & evidence โ friction comes back as new commands"| I
|
|
59
|
-
D -->|"wraps what exists: build / test / run / seed, as-is"| C
|
|
60
|
-
C -->|"demands harnessability: fakes, seams, bootability"| D
|
|
61
|
-
|
|
62
|
-
classDef human fill:#fbf1dd,stroke:#b8760f,stroke-width:2px,color:#23282f
|
|
63
|
-
classDef infer fill:#e7eefb,stroke:#2a66c9,stroke-width:2px,color:#23282f
|
|
64
|
-
classDef det fill:#e4f3ec,stroke:#0e8f5a,stroke-width:2px,color:#23282f
|
|
65
|
-
classDef code fill:#eceef0,stroke:#67707b,stroke-width:2px,color:#23282f
|
|
66
|
-
class H human
|
|
67
|
-
class I infer
|
|
68
|
-
class D det
|
|
69
|
-
class C code
|
|
70
|
-
```
|
|
71
|
-
|
|
72
|
-
> "If the agent had to infer it twice, encode it here."
|
|
46
|
+
<!-- Diagram source: docs/media/harness-layers.mmd โ re-render to docs/media/harness-layers.png
|
|
47
|
+
(image, not a ```mermaid block, so it renders on npm too โ npm doesn't render Mermaid). -->
|
|
48
|
+

|
|
73
49
|
|
|
74
50
|
## The focal point
|
|
75
51
|
|
|
@@ -90,7 +66,7 @@ The agent explores it the way it explores the git CLI: it has never seen your re
|
|
|
90
66
|
|
|
91
67
|
- **[The full deck](https://ai-substrate.github.io/harness-engineering/)** โ readable scrolling page with commentary, or hit `P` to present it.
|
|
92
68
|
- **[The layers, one page](https://ai-substrate.github.io/harness-engineering/layers.html)** โ the layer model as a self-contained visual explainer.
|
|
93
|
-
- The canonical deck source lives at [`docs/harness-presentations/
|
|
69
|
+
- The canonical deck source lives at [`docs/harness-presentations/intro-to-harness.md`](docs/harness-presentations/intro-to-harness.md).
|
|
94
70
|
|
|
95
71
|
## Install the skills
|
|
96
72
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai-substrate/engineering-harness",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Starter Harness CLI Core โ the agent-friendly front door to this repo's engineering harness.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -42,15 +42,15 @@
|
|
|
42
42
|
"fix": "biome check --write harness/cli"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"commander": "^
|
|
45
|
+
"commander": "^15.0.0",
|
|
46
46
|
"jiti": "2.7.0"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@biomejs/biome": "^2.
|
|
50
|
-
"@types/node": "^
|
|
49
|
+
"@biomejs/biome": "^2.5.0",
|
|
50
|
+
"@types/node": "^25",
|
|
51
51
|
"@vitest/coverage-v8": "^4.1.8",
|
|
52
52
|
"dependency-cruiser": "^17.4.3",
|
|
53
|
-
"typescript": "^
|
|
53
|
+
"typescript": "^6.0.3",
|
|
54
54
|
"vitest": "^4.1.8"
|
|
55
55
|
}
|
|
56
56
|
}
|