@agdf/cli 0.3.2
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/NOTICE +6 -0
- package/README.md +24 -0
- package/bin/agdf.js +3 -0
- package/package.json +39 -0
package/NOTICE
ADDED
package/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# agdf
|
|
2
|
+
|
|
3
|
+
Primary AGDF command-line interface.
|
|
4
|
+
|
|
5
|
+
Use `agdf` for normal command semantics:
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npx --yes @agdf/cli@latest init
|
|
9
|
+
npx --yes @agdf/cli@latest doctor
|
|
10
|
+
npx --yes @agdf/cli@latest gate-check --json
|
|
11
|
+
npx --yes @agdf/cli@latest opencode
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
Install globally when AGDF should be available as a regular command:
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
npm install -g @agdf/cli
|
|
18
|
+
agdf init
|
|
19
|
+
agdf doctor
|
|
20
|
+
agdf gate-check --json
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
`npm create agdf@latest -- ...` remains supported through the companion
|
|
24
|
+
`create-agdf` package for scaffold-style setup flows.
|
package/bin/agdf.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@agdf/cli",
|
|
3
|
+
"version": "0.3.2",
|
|
4
|
+
"description": "AGDF command-line interface for governed, auditable AI-assisted software delivery.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"files": [
|
|
7
|
+
"bin",
|
|
8
|
+
"README.md",
|
|
9
|
+
"NOTICE"
|
|
10
|
+
],
|
|
11
|
+
"bin": {
|
|
12
|
+
"agdf": "./bin/agdf.js"
|
|
13
|
+
},
|
|
14
|
+
"scripts": {
|
|
15
|
+
"smoke-test": "node ./scripts/smoke-test.js"
|
|
16
|
+
},
|
|
17
|
+
"dependencies": {
|
|
18
|
+
"create-agdf": "0.3.2"
|
|
19
|
+
},
|
|
20
|
+
"keywords": [
|
|
21
|
+
"agdf",
|
|
22
|
+
"governance",
|
|
23
|
+
"delivery",
|
|
24
|
+
"ai-native",
|
|
25
|
+
"codex",
|
|
26
|
+
"opencode",
|
|
27
|
+
"copilot"
|
|
28
|
+
],
|
|
29
|
+
"license": "Apache-2.0",
|
|
30
|
+
"publishConfig": {
|
|
31
|
+
"access": "public"
|
|
32
|
+
},
|
|
33
|
+
"repository": {
|
|
34
|
+
"type": "git",
|
|
35
|
+
"url": "git+https://github.com/ArndtGold/ai-native-governance-delivery-framework.git",
|
|
36
|
+
"directory": "agdf"
|
|
37
|
+
},
|
|
38
|
+
"homepage": "https://github.com/ArndtGold/ai-native-governance-delivery-framework/tree/main/agdf"
|
|
39
|
+
}
|