@seclai/cli 1.0.6 → 1.1.1
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 +393 -59
- package/dist/cli.js +2076 -219
- package/dist/cli.js.map +1 -1
- package/package.json +24 -5
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seclai/cli",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "Seclai Command Line Interface",
|
|
3
|
+
"version": "1.1.1",
|
|
4
|
+
"description": "Seclai Command Line Interface — manage agents, knowledge bases, sources, memory banks, and more from the terminal.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bin": {
|
|
@@ -12,7 +12,25 @@
|
|
|
12
12
|
"LICENSE",
|
|
13
13
|
"README.md"
|
|
14
14
|
],
|
|
15
|
+
"engines": {
|
|
16
|
+
"node": ">=18"
|
|
17
|
+
},
|
|
18
|
+
"author": "Seclai, Inc. <support@seclai.com>",
|
|
19
|
+
"keywords": [
|
|
20
|
+
"seclai",
|
|
21
|
+
"cli",
|
|
22
|
+
"ai",
|
|
23
|
+
"agent",
|
|
24
|
+
"knowledge-base",
|
|
25
|
+
"vector",
|
|
26
|
+
"rag",
|
|
27
|
+
"memory-bank",
|
|
28
|
+
"evaluation",
|
|
29
|
+
"governance"
|
|
30
|
+
],
|
|
15
31
|
"repository": "github:seclai/seclai-cli",
|
|
32
|
+
"homepage": "https://github.com/seclai/seclai-cli#readme",
|
|
33
|
+
"bugs": "https://github.com/seclai/seclai-cli/issues",
|
|
16
34
|
"scripts": {
|
|
17
35
|
"version:apply": "node scripts/set-version.mjs apply && node scripts/set-readme-version.mjs apply",
|
|
18
36
|
"version:restore": "node scripts/set-readme-version.mjs restore && node scripts/set-version.mjs restore",
|
|
@@ -20,20 +38,21 @@
|
|
|
20
38
|
"dev": "tsx src/cli.ts",
|
|
21
39
|
"docs": "npm run build && node scripts/generate-docs.mjs",
|
|
22
40
|
"build:versioned": "npm run version:apply && npm run build && npm run version:restore",
|
|
41
|
+
"prepublishOnly": "npm run build",
|
|
23
42
|
"publish:ci": "npm run version:apply && npm run build && npm publish --provenance --access public --ignore-scripts && npm run version:restore",
|
|
24
43
|
"test": "vitest run",
|
|
25
44
|
"test:watch": "vitest",
|
|
26
45
|
"typecheck": "tsc -p tsconfig.json --noEmit"
|
|
27
46
|
},
|
|
28
47
|
"dependencies": {
|
|
29
|
-
"@seclai/sdk": "^1.0
|
|
48
|
+
"@seclai/sdk": "^1.1.0",
|
|
30
49
|
"commander": "^13.1.0"
|
|
31
50
|
},
|
|
32
51
|
"devDependencies": {
|
|
33
52
|
"@types/node": "^20.19.0",
|
|
34
53
|
"tsup": "^8.5.0",
|
|
35
54
|
"tsx": "^4.19.2",
|
|
36
|
-
"
|
|
37
|
-
"
|
|
55
|
+
"typescript": "^5.7.3",
|
|
56
|
+
"vitest": "^2.1.9"
|
|
38
57
|
}
|
|
39
58
|
}
|