@graphorin/cli 0.6.0 → 0.7.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/CHANGELOG.md +80 -0
- package/README.md +4 -4
- package/dist/bin/graphorin.js +51 -13
- package/dist/bin/graphorin.js.map +1 -1
- package/dist/commands/audit.d.ts.map +1 -1
- package/dist/commands/audit.js +2 -1
- package/dist/commands/audit.js.map +1 -1
- package/dist/commands/consolidator.d.ts +56 -1
- package/dist/commands/consolidator.d.ts.map +1 -1
- package/dist/commands/consolidator.js +88 -2
- package/dist/commands/consolidator.js.map +1 -1
- package/dist/commands/doctor.d.ts.map +1 -1
- package/dist/commands/doctor.js +2 -1
- package/dist/commands/doctor.js.map +1 -1
- package/dist/commands/index.d.ts +4 -4
- package/dist/commands/index.js +4 -4
- package/dist/commands/init.d.ts +11 -4
- package/dist/commands/init.d.ts.map +1 -1
- package/dist/commands/init.js +15 -11
- package/dist/commands/init.js.map +1 -1
- package/dist/commands/memory.d.ts +26 -1
- package/dist/commands/memory.d.ts.map +1 -1
- package/dist/commands/memory.js +56 -3
- package/dist/commands/memory.js.map +1 -1
- package/dist/commands/migrate-export.d.ts +1 -2
- package/dist/commands/migrate-export.d.ts.map +1 -1
- package/dist/commands/migrate-export.js +2 -1
- package/dist/commands/migrate-export.js.map +1 -1
- package/dist/commands/pricing.d.ts +6 -0
- package/dist/commands/pricing.d.ts.map +1 -1
- package/dist/commands/pricing.js +5 -2
- package/dist/commands/pricing.js.map +1 -1
- package/dist/commands/secrets.d.ts.map +1 -1
- package/dist/commands/secrets.js +2 -2
- package/dist/commands/secrets.js.map +1 -1
- package/dist/commands/skills.d.ts.map +1 -1
- package/dist/commands/skills.js +1 -1
- package/dist/commands/skills.js.map +1 -1
- package/dist/commands/storage.d.ts +41 -1
- package/dist/commands/storage.d.ts.map +1 -1
- package/dist/commands/storage.js +75 -1
- package/dist/commands/storage.js.map +1 -1
- package/dist/commands/token.d.ts.map +1 -1
- package/dist/commands/token.js +2 -2
- package/dist/commands/token.js.map +1 -1
- package/dist/commands/tools-lint.js +1 -1
- package/dist/commands/tools-lint.js.map +1 -1
- package/dist/commands/traces.d.ts +14 -2
- package/dist/commands/traces.d.ts.map +1 -1
- package/dist/commands/traces.js +39 -22
- package/dist/commands/traces.js.map +1 -1
- package/dist/commands/triggers.d.ts.map +1 -1
- package/dist/commands/triggers.js +5 -2
- package/dist/commands/triggers.js.map +1 -1
- package/dist/index.d.ts +5 -6
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +7 -7
- package/dist/index.js.map +1 -1
- package/dist/internal/output.js +6 -0
- package/dist/internal/output.js.map +1 -1
- package/dist/internal/store-context.js +13 -2
- package/dist/internal/store-context.js.map +1 -1
- package/dist/package.js +6 -0
- package/dist/package.js.map +1 -0
- package/package.json +18 -14
- package/src/bin/graphorin.ts +1387 -0
- package/src/commands/audit.ts +256 -0
- package/src/commands/auth.ts +238 -0
- package/src/commands/consolidator.ts +382 -0
- package/src/commands/doctor.ts +253 -0
- package/src/commands/guard.ts +144 -0
- package/src/commands/index.ts +223 -0
- package/src/commands/init.ts +194 -0
- package/src/commands/memory.ts +1052 -0
- package/src/commands/migrate-config.ts +77 -0
- package/src/commands/migrate-export.ts +117 -0
- package/src/commands/migrate.ts +83 -0
- package/src/commands/pricing.ts +244 -0
- package/src/commands/secrets.ts +309 -0
- package/src/commands/skills.ts +272 -0
- package/src/commands/start.ts +180 -0
- package/src/commands/storage.ts +659 -0
- package/src/commands/telemetry.ts +91 -0
- package/src/commands/token.ts +361 -0
- package/src/commands/tools-lint.ts +430 -0
- package/src/commands/traces.ts +188 -0
- package/src/commands/triggers.ts +237 -0
- package/src/index.ts +30 -0
- package/src/internal/exit.ts +62 -0
- package/src/internal/load-config.ts +107 -0
- package/src/internal/offline.ts +81 -0
- package/src/internal/output.ts +146 -0
- package/src/internal/prompts.ts +58 -0
- package/src/internal/store-context.ts +165 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphorin/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"description": "Operator CLI for the Graphorin framework. The `graphorin` binary covers the standalone server and the local stores end to end: `start`, `init`, `migrate`, `doctor`, `token`, `secrets`, `storage`, `audit`, `memory`, `consolidator`, `triggers`, `auth`, `pricing`, `skills`, `traces`, `guard`, `telemetry`, `tools`, and `migrate-export`. Created and maintained by Oleksiy Stepurenko.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Oleksiy Stepurenko",
|
|
@@ -24,8 +24,11 @@
|
|
|
24
24
|
"graphorin-migrate"
|
|
25
25
|
],
|
|
26
26
|
"type": "module",
|
|
27
|
+
"sideEffects": [
|
|
28
|
+
"./dist/bin/*"
|
|
29
|
+
],
|
|
27
30
|
"engines": {
|
|
28
|
-
"node": ">=22.
|
|
31
|
+
"node": ">=22.12.0"
|
|
29
32
|
},
|
|
30
33
|
"main": "./dist/index.js",
|
|
31
34
|
"module": "./dist/index.js",
|
|
@@ -36,38 +39,39 @@
|
|
|
36
39
|
"exports": {
|
|
37
40
|
".": {
|
|
38
41
|
"types": "./dist/index.d.ts",
|
|
39
|
-
"
|
|
42
|
+
"default": "./dist/index.js"
|
|
40
43
|
},
|
|
41
44
|
"./commands": {
|
|
42
45
|
"types": "./dist/commands/index.d.ts",
|
|
43
|
-
"
|
|
46
|
+
"default": "./dist/commands/index.js"
|
|
44
47
|
},
|
|
45
48
|
"./package.json": "./package.json"
|
|
46
49
|
},
|
|
47
50
|
"files": [
|
|
48
51
|
"dist",
|
|
52
|
+
"src",
|
|
49
53
|
"README.md",
|
|
50
54
|
"CHANGELOG.md",
|
|
51
55
|
"LICENSE"
|
|
52
56
|
],
|
|
53
57
|
"dependencies": {
|
|
54
58
|
"commander": "^10.0.0",
|
|
55
|
-
"@graphorin/core": "0.
|
|
56
|
-
"@graphorin/eslint-plugin": "0.
|
|
57
|
-
"@graphorin/memory": "0.
|
|
58
|
-
"@graphorin/pricing": "0.
|
|
59
|
-
"@graphorin/security": "0.
|
|
60
|
-
"@graphorin/server": "0.
|
|
61
|
-
"@graphorin/sessions": "0.
|
|
62
|
-
"@graphorin/skills": "0.
|
|
63
|
-
"@graphorin/store-sqlite": "0.
|
|
59
|
+
"@graphorin/core": "0.7.0",
|
|
60
|
+
"@graphorin/eslint-plugin": "0.7.0",
|
|
61
|
+
"@graphorin/memory": "0.7.0",
|
|
62
|
+
"@graphorin/pricing": "0.7.0",
|
|
63
|
+
"@graphorin/security": "0.7.0",
|
|
64
|
+
"@graphorin/server": "0.7.0",
|
|
65
|
+
"@graphorin/sessions": "0.7.0",
|
|
66
|
+
"@graphorin/skills": "0.7.0",
|
|
67
|
+
"@graphorin/store-sqlite": "0.7.0"
|
|
64
68
|
},
|
|
65
69
|
"publishConfig": {
|
|
66
70
|
"access": "public",
|
|
67
71
|
"provenance": true
|
|
68
72
|
},
|
|
69
73
|
"devDependencies": {
|
|
70
|
-
"@graphorin/store-sqlite-encrypted": "0.
|
|
74
|
+
"@graphorin/store-sqlite-encrypted": "0.7.0"
|
|
71
75
|
},
|
|
72
76
|
"scripts": {
|
|
73
77
|
"build": "tsdown",
|