@agdf/cli 0.4.9 → 0.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/README.md +9 -3
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -101,15 +101,21 @@ npx --yes @agdf/cli@latest gate-check --status-card
|
|
|
101
101
|
npx --yes @agdf/cli@latest gate-check --json
|
|
102
102
|
npx --yes @agdf/cli@latest delivery-map --json
|
|
103
103
|
npx --yes @agdf/cli@latest delivery-path-search --surface codex --json
|
|
104
|
+
npx --yes @agdf/cli@latest delivery-path-search --surface codex --generate-candidates --json
|
|
104
105
|
```
|
|
105
106
|
|
|
106
107
|
The CLI validators provide deterministic evidence for agents and automation.
|
|
107
108
|
They do not replace AGDF skill judgement or user approvals.
|
|
108
109
|
|
|
109
110
|
Delivery Path Search requires live `.agdf/control/AGDF_RUN.md` state with explicit
|
|
110
|
-
allowed and forbidden actions. Codex
|
|
111
|
-
release.
|
|
112
|
-
|
|
111
|
+
allowed and forbidden actions. Codex and Claude Code are executable, tool-enforced
|
|
112
|
+
reference evaluators in this release. Copilot and OpenCode expose the shared skill
|
|
113
|
+
and contract as instruction-only surfaces until a conforming executable evaluator
|
|
114
|
+
is available.
|
|
115
|
+
|
|
116
|
+
Candidate generation is opt-in for Codex and Claude Code. It supplements deterministic
|
|
117
|
+
candidates, uses separate hard budgets, and exposes provenance, rejection and failure;
|
|
118
|
+
it never grants gate permission or silently switches providers.
|
|
113
119
|
|
|
114
120
|
Use `--persist` only when the redacted decision should become durable scope
|
|
115
121
|
evidence. It writes `DELIVERY_PATH_SEARCH.json` and
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agdf/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"description": "Primary AGDF CLI for repository-local AI governance, delivery controls and agent setup.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"smoke-test": "node ./scripts/smoke-test.js"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"create-agdf": "0.
|
|
18
|
+
"create-agdf": "0.5.0"
|
|
19
19
|
},
|
|
20
20
|
"keywords": [
|
|
21
21
|
"agdf",
|