@inkeep/agents-cli 0.0.0-dev-20250910233151
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/LICENSE.md +56 -0
- package/README.md +500 -0
- package/dist/commands/create.d.ts +12 -0
- package/dist/commands/create.js +728 -0
- package/dist/config.d.ts +14 -0
- package/dist/config.js +9 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +38240 -0
- package/package.json +84 -0
package/package.json
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@inkeep/agents-cli",
|
|
3
|
+
"version": "0.0.0-dev-20250910233151",
|
|
4
|
+
"description": "Inkeep CLI tool",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"inkeep": "./dist/index.js"
|
|
9
|
+
},
|
|
10
|
+
"exports": {
|
|
11
|
+
".": "./dist/index.js",
|
|
12
|
+
"./config": "./dist/config.js",
|
|
13
|
+
"./commands/create": "./dist/commands/create.js",
|
|
14
|
+
"./package.json": "./package.json"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"cli",
|
|
18
|
+
"inkeep",
|
|
19
|
+
"agent"
|
|
20
|
+
],
|
|
21
|
+
"author": "Inkeep <support@inkeep.com>",
|
|
22
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"@ai-sdk/anthropic": "2.0.2",
|
|
25
|
+
"@ai-sdk/openai": "2.0.11",
|
|
26
|
+
"@babel/parser": "^7.23.0",
|
|
27
|
+
"@babel/types": "^7.23.0",
|
|
28
|
+
"@clack/prompts": "^0.11.0",
|
|
29
|
+
"@libsql/client": "^0.15.7",
|
|
30
|
+
"ai": "5.0.11",
|
|
31
|
+
"ast-types": "^0.14.2",
|
|
32
|
+
"chalk": "^5.3.0",
|
|
33
|
+
"cli-table3": "^0.6.3",
|
|
34
|
+
"commander": "^14.0.0",
|
|
35
|
+
"dotenv": "^17.2.1",
|
|
36
|
+
"drizzle-orm": "^0.44.5",
|
|
37
|
+
"fs-extra": "^11.2.0",
|
|
38
|
+
"inquirer": "^9.2.12",
|
|
39
|
+
"inquirer-autocomplete-prompt": "^3.0.1",
|
|
40
|
+
"ora": "^8.0.1",
|
|
41
|
+
"picocolors": "^1.1.1",
|
|
42
|
+
"recast": "^0.23.0",
|
|
43
|
+
"ts-morph": "^26.0.0",
|
|
44
|
+
"tsx": "^4.20.5",
|
|
45
|
+
"@inkeep/agents-core": "^0.0.0-dev-20250910233151",
|
|
46
|
+
"@inkeep/agents-manage-ui": "^0.0.0-dev-20250910233151"
|
|
47
|
+
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"@types/fs-extra": "^11.0.4",
|
|
50
|
+
"@types/inquirer": "^9.0.7",
|
|
51
|
+
"@types/node": "^20.10.0",
|
|
52
|
+
"@vitest/coverage-v8": "^3.2.4",
|
|
53
|
+
"tsup": "^8.5.0",
|
|
54
|
+
"typescript": "^5.9.2",
|
|
55
|
+
"vitest": "^3.2.4"
|
|
56
|
+
},
|
|
57
|
+
"engines": {
|
|
58
|
+
"node": ">=22.0.0"
|
|
59
|
+
},
|
|
60
|
+
"publishConfig": {
|
|
61
|
+
"access": "restricted",
|
|
62
|
+
"registry": "https://registry.npmjs.org/"
|
|
63
|
+
},
|
|
64
|
+
"files": [
|
|
65
|
+
"dist",
|
|
66
|
+
"README.md",
|
|
67
|
+
"LICENSE.md"
|
|
68
|
+
],
|
|
69
|
+
"repository": {
|
|
70
|
+
"type": "git",
|
|
71
|
+
"url": "git+https://github.com/inkeep/agents.git",
|
|
72
|
+
"directory": "agents-cli"
|
|
73
|
+
},
|
|
74
|
+
"scripts": {
|
|
75
|
+
"build": "tsup",
|
|
76
|
+
"dev": "MODE=watch tsup",
|
|
77
|
+
"test": "node -e \"process.exit(process.env.CI ? 0 : 1)\" && vitest --run --config vitest.config.ci.ts || vitest --run",
|
|
78
|
+
"test:debug": "vitest --run --reporter=verbose --no-coverage",
|
|
79
|
+
"test:watch": "vitest",
|
|
80
|
+
"test:coverage": "node -e \"process.exit(process.env.CI ? 0 : 1)\" && vitest --run --coverage --config vitest.config.ci.ts || vitest --run --coverage",
|
|
81
|
+
"test:ci": "vitest --run --config vitest.config.ci.ts",
|
|
82
|
+
"typecheck": "tsc --noEmit --project tsconfig.typecheck.json"
|
|
83
|
+
}
|
|
84
|
+
}
|