@xeno-corporation/xeno-agent-cli 0.4.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/LICENSE +15 -0
- package/dist/index.js +2653 -0
- package/package.json +56 -0
package/package.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@xeno-corporation/xeno-agent-cli",
|
|
3
|
+
"version": "0.4.0",
|
|
4
|
+
"description": "XENO AGENT - AI-powered terminal agent CLI",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": "./dist/index.js"
|
|
9
|
+
},
|
|
10
|
+
"bin": {
|
|
11
|
+
"xeno": "./dist/index.js",
|
|
12
|
+
"xeno-agent": "./dist/index.js",
|
|
13
|
+
"xeno-code": "./dist/index.js"
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist/",
|
|
17
|
+
"README.md",
|
|
18
|
+
"LICENSE"
|
|
19
|
+
],
|
|
20
|
+
"scripts": {
|
|
21
|
+
"dev": "tsx src/index.ts",
|
|
22
|
+
"build": "tsup --config tsup.config.ts",
|
|
23
|
+
"start": "node dist/index.js",
|
|
24
|
+
"typecheck": "tsc --noEmit -p tsconfig.json",
|
|
25
|
+
"bench:coding-tools": "tsx src/index.ts bench coding-tools --json",
|
|
26
|
+
"update:check": "tsx src/index.ts update --check --json",
|
|
27
|
+
"prepack": "npm run build",
|
|
28
|
+
"prepublishOnly": "npm run prepack && npm run typecheck"
|
|
29
|
+
},
|
|
30
|
+
"publishConfig": {
|
|
31
|
+
"access": "public"
|
|
32
|
+
},
|
|
33
|
+
"homepage": "https://xenostudio.ai",
|
|
34
|
+
"bugs": {
|
|
35
|
+
"url": "https://xenostudio.ai/contact"
|
|
36
|
+
},
|
|
37
|
+
"keywords": [
|
|
38
|
+
"ai",
|
|
39
|
+
"agent",
|
|
40
|
+
"cli",
|
|
41
|
+
"llm",
|
|
42
|
+
"tools",
|
|
43
|
+
"terminal",
|
|
44
|
+
"code-assistant"
|
|
45
|
+
],
|
|
46
|
+
"license": "UNLICENSED",
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"@xeno-corporation/xeno-agent-sdk": "^0.5.0",
|
|
49
|
+
"chalk": "^5.3.0",
|
|
50
|
+
"commander": "^12.1.0",
|
|
51
|
+
"gray-matter": "^4.0.3"
|
|
52
|
+
},
|
|
53
|
+
"engines": {
|
|
54
|
+
"node": ">=20.0.0"
|
|
55
|
+
}
|
|
56
|
+
}
|