@agdf/cli 0.3.2 → 0.3.4
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 +30 -4
- package/package.json +16 -5
package/README.md
CHANGED
|
@@ -1,8 +1,19 @@
|
|
|
1
|
-
# agdf
|
|
1
|
+
# @agdf/cli
|
|
2
2
|
|
|
3
|
-
Primary
|
|
3
|
+
Primary command-line interface for the AI Governance & Delivery Framework.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
AGDF helps teams turn AI-assisted software work into governed, reviewable
|
|
6
|
+
delivery: repository-local agent instructions, durable control files,
|
|
7
|
+
machine-checkable gate decisions and consistent setup for Codex, Claude Code,
|
|
8
|
+
GitHub Copilot and OpenCode.
|
|
9
|
+
|
|
10
|
+
- Website: https://agdf.iself.eu
|
|
11
|
+
- Repository: https://github.com/arndtgold/ai-native-governance-delivery-framework
|
|
12
|
+
- Installation guide: https://github.com/arndtgold/ai-native-governance-delivery-framework/blob/main/INSTALL.md
|
|
13
|
+
|
|
14
|
+
## Quick Start
|
|
15
|
+
|
|
16
|
+
Use the primary CLI when command semantics matter:
|
|
6
17
|
|
|
7
18
|
```bash
|
|
8
19
|
npx --yes @agdf/cli@latest init
|
|
@@ -11,7 +22,8 @@ npx --yes @agdf/cli@latest gate-check --json
|
|
|
11
22
|
npx --yes @agdf/cli@latest opencode
|
|
12
23
|
```
|
|
13
24
|
|
|
14
|
-
Install globally when AGDF should be available as a regular command
|
|
25
|
+
Install globally when AGDF should be available as a regular command on your
|
|
26
|
+
machine:
|
|
15
27
|
|
|
16
28
|
```bash
|
|
17
29
|
npm install -g @agdf/cli
|
|
@@ -22,3 +34,17 @@ agdf gate-check --json
|
|
|
22
34
|
|
|
23
35
|
`npm create agdf@latest -- ...` remains supported through the companion
|
|
24
36
|
`create-agdf` package for scaffold-style setup flows.
|
|
37
|
+
|
|
38
|
+
## What This Package Does
|
|
39
|
+
|
|
40
|
+
`@agdf/cli` is the stable user-facing wrapper. It delegates to `create-agdf`
|
|
41
|
+
for the shared implementation, so AGDF setup commands and scaffold-compatible
|
|
42
|
+
`npm create` usage stay aligned.
|
|
43
|
+
|
|
44
|
+
Use it to:
|
|
45
|
+
|
|
46
|
+
- install AGDF instructions and skills into a target repository
|
|
47
|
+
- initialize durable `.agdf/control` state when a repository should own it
|
|
48
|
+
- run deterministic validators such as `doctor` and `gate-check --json`
|
|
49
|
+
- prepare Codex, Claude Code, GitHub Copilot or OpenCode surfaces from the same
|
|
50
|
+
source of truth
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agdf/cli",
|
|
3
|
-
"version": "0.3.
|
|
4
|
-
"description": "AGDF
|
|
3
|
+
"version": "0.3.4",
|
|
4
|
+
"description": "Primary AGDF CLI for repository-local AI governance, delivery controls and agent setup.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
7
7
|
"bin",
|
|
@@ -15,16 +15,27 @@
|
|
|
15
15
|
"smoke-test": "node ./scripts/smoke-test.js"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"create-agdf": "0.3.
|
|
18
|
+
"create-agdf": "0.3.4"
|
|
19
19
|
},
|
|
20
20
|
"keywords": [
|
|
21
21
|
"agdf",
|
|
22
|
+
"ai-governance",
|
|
23
|
+
"ai-delivery",
|
|
24
|
+
"ai-agents",
|
|
25
|
+
"agentic-coding",
|
|
26
|
+
"agent-workflows",
|
|
22
27
|
"governance",
|
|
23
28
|
"delivery",
|
|
29
|
+
"delivery-controls",
|
|
30
|
+
"software-delivery",
|
|
24
31
|
"ai-native",
|
|
25
32
|
"codex",
|
|
33
|
+
"claude-code",
|
|
26
34
|
"opencode",
|
|
27
|
-
"copilot"
|
|
35
|
+
"copilot",
|
|
36
|
+
"github-copilot",
|
|
37
|
+
"npm-create",
|
|
38
|
+
"release-governance"
|
|
28
39
|
],
|
|
29
40
|
"license": "Apache-2.0",
|
|
30
41
|
"publishConfig": {
|
|
@@ -35,5 +46,5 @@
|
|
|
35
46
|
"url": "git+https://github.com/ArndtGold/ai-native-governance-delivery-framework.git",
|
|
36
47
|
"directory": "agdf"
|
|
37
48
|
},
|
|
38
|
-
"homepage": "https://
|
|
49
|
+
"homepage": "https://agdf.iself.eu"
|
|
39
50
|
}
|