@agdf/cli 0.4.1 → 0.4.3
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 +12 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -86,6 +86,7 @@ authoritative reusable format, not AGDF's internal project backlog.
|
|
|
86
86
|
| `gate-check [--json]` | Report the current gate, blockers and next permitted action. |
|
|
87
87
|
| `gate-check --status-card` | Print compact interactive gate status without full JSON. |
|
|
88
88
|
| `delivery-map [--json]` | Report artefact relationships, evidence, risks and Context Graph effects. |
|
|
89
|
+
| `delivery-path-search --surface <name> [--json]` | Compare bounded high-impact delivery paths before implementation; advisory only. |
|
|
89
90
|
|
|
90
91
|
Examples:
|
|
91
92
|
|
|
@@ -99,11 +100,22 @@ npx --yes @agdf/cli@latest doctor
|
|
|
99
100
|
npx --yes @agdf/cli@latest gate-check --status-card
|
|
100
101
|
npx --yes @agdf/cli@latest gate-check --json
|
|
101
102
|
npx --yes @agdf/cli@latest delivery-map --json
|
|
103
|
+
npx --yes @agdf/cli@latest delivery-path-search --surface codex --json
|
|
102
104
|
```
|
|
103
105
|
|
|
104
106
|
The CLI validators provide deterministic evidence for agents and automation.
|
|
105
107
|
They do not replace AGDF skill judgement or user approvals.
|
|
106
108
|
|
|
109
|
+
Delivery Path Search requires live `.agdf/control/AGDF_RUN.md` state with explicit
|
|
110
|
+
allowed and forbidden actions. Codex is the executable evaluator in this
|
|
111
|
+
release. Claude Code, Copilot and OpenCode expose the shared skill and contract,
|
|
112
|
+
but do not yet ship native executable evaluators.
|
|
113
|
+
|
|
114
|
+
Use `--persist` only when the redacted decision should become durable scope
|
|
115
|
+
evidence. It writes `DELIVERY_PATH_SEARCH.json` and
|
|
116
|
+
`DELIVERY_PATH_SEARCH.md` under `.agdf/control/artefacts/<scope>/`. Then run
|
|
117
|
+
`gate-check`; the recommendation never grants permission.
|
|
118
|
+
|
|
107
119
|
## Surface Notes
|
|
108
120
|
|
|
109
121
|
- **Codex:** `codex` installs the AGDF plugin globally for Codex, while
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agdf/cli",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.3",
|
|
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.4.
|
|
18
|
+
"create-agdf": "0.4.3"
|
|
19
19
|
},
|
|
20
20
|
"keywords": [
|
|
21
21
|
"agdf",
|