aval-adr 0.7.0 → 1.0.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 +8 -1
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -161,6 +161,11 @@ a disagreement with the fleet's answer at the fleet's scope.
|
|
|
161
161
|
Nothing in a pack is ever executed, so there is no trust prompt to match
|
|
162
162
|
`amont trust`. The review gate is the pull request that adds the file.
|
|
163
163
|
|
|
164
|
+
That "inert" scopes to execution. A pack's text does reach an agent's context,
|
|
165
|
+
so the hook and the MCP tools both say that a record's wording is data rather
|
|
166
|
+
than instruction, and a value carrying a control character or a bidi override
|
|
167
|
+
is refused — the reviewer and the model must see the same bytes.
|
|
168
|
+
|
|
164
169
|
## Status
|
|
165
170
|
|
|
166
171
|
Published, and in use: the resolver, the invariants, the projection, the CLI,
|
|
@@ -168,7 +173,9 @@ vendoring and the tool surface all work, against real corpora rather than
|
|
|
168
173
|
fixtures. [`SEMANTICS.md`](SEMANTICS.md) is normative and is the place to
|
|
169
174
|
start if you intend to write records against this.
|
|
170
175
|
|
|
171
|
-
|
|
176
|
+
**1.0.** The verdicts, their exit codes, the note strings, the `--json` field
|
|
177
|
+
names and the frontmatter dialect are stable; §15 of [`SEMANTICS.md`](SEMANTICS.md)
|
|
178
|
+
says exactly what that covers, and what it deliberately does not.
|
|
172
179
|
|
|
173
180
|
## Install
|
|
174
181
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aval-adr",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "Ask what the current architecture decision is, and get a typed answer",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"adr",
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
"node": ">=18"
|
|
33
33
|
},
|
|
34
34
|
"optionalDependencies": {
|
|
35
|
-
"@aval-adr/darwin-arm64": "0.
|
|
36
|
-
"@aval-adr/darwin-x64": "0.
|
|
37
|
-
"@aval-adr/linux-arm64-gnu": "0.
|
|
38
|
-
"@aval-adr/linux-x64-gnu": "0.
|
|
39
|
-
"@aval-adr/linux-x64-musl": "0.
|
|
40
|
-
"@aval-adr/win32-x64": "0.
|
|
35
|
+
"@aval-adr/darwin-arm64": "1.0.0",
|
|
36
|
+
"@aval-adr/darwin-x64": "1.0.0",
|
|
37
|
+
"@aval-adr/linux-arm64-gnu": "1.0.0",
|
|
38
|
+
"@aval-adr/linux-x64-gnu": "1.0.0",
|
|
39
|
+
"@aval-adr/linux-x64-musl": "1.0.0",
|
|
40
|
+
"@aval-adr/win32-x64": "1.0.0"
|
|
41
41
|
}
|
|
42
42
|
}
|