@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 ADDED
@@ -0,0 +1,6 @@
1
+ AGDF command-line interface
2
+
3
+ Copyright 2024-2026 Arndt Gold
4
+
5
+ The agdf package is licensed under the Apache License, Version 2.0.
6
+ It delegates to the create-agdf package for the shared implementation.
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
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+
3
+ import "create-agdf/cli";
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
+ }