@guangnao/agent-cli 1.1.2 → 1.1.4
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 +68 -47
- package/dist/cli.js +12258 -0
- package/package.json +26 -23
- package/gcli.cjs +0 -941
- package/logo.png +0 -0
package/package.json
CHANGED
|
@@ -1,29 +1,32 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@guangnao/agent-cli",
|
|
3
|
-
"version": "1.1.
|
|
4
|
-
"description": "
|
|
5
|
-
"
|
|
6
|
-
"type": "commonjs",
|
|
3
|
+
"version": "1.1.4",
|
|
4
|
+
"description": "AgentOS terminal CLI — drive a real LLM agent on the microkernel; strongest-UX shell, advanced agent core",
|
|
5
|
+
"type": "module",
|
|
7
6
|
"bin": {
|
|
8
|
-
"gcli": "
|
|
7
|
+
"gcli": "./dist/cli.js",
|
|
8
|
+
"agent-cli": "./dist/cli.js"
|
|
9
9
|
},
|
|
10
|
-
"
|
|
11
|
-
|
|
10
|
+
"files": ["dist", "README.md"],
|
|
11
|
+
"engines": { "node": ">=20.12" },
|
|
12
|
+
"publishConfig": { "access": "public" },
|
|
13
|
+
"scripts": {
|
|
14
|
+
"start": "tsx src/cli.ts",
|
|
15
|
+
"gcli": "tsx src/cli.ts",
|
|
16
|
+
"typecheck": "tsc --noEmit",
|
|
17
|
+
"test": "node --import tsx --test ./test/**/*.test.ts",
|
|
18
|
+
"build": "node build.mjs",
|
|
19
|
+
"pack": "node scripts/bundle.mjs",
|
|
20
|
+
"prepublishOnly": "npm run typecheck && npm test && npm run build"
|
|
12
21
|
},
|
|
13
|
-
"
|
|
14
|
-
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
"llm",
|
|
24
|
-
"openai-compatible"
|
|
25
|
-
],
|
|
26
|
-
"publishConfig": {
|
|
27
|
-
"access": "public"
|
|
28
|
-
}
|
|
22
|
+
"keywords": ["gcli", "agentos", "agent", "llm", "cli", "tui", "react-agent", "microkernel"],
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"@guangnao/agent-os": "file:../agent-os",
|
|
25
|
+
"@guangnao-com/ui": "file:../agent-ui",
|
|
26
|
+
"@types/node": "^26.0.0",
|
|
27
|
+
"esbuild": "^0.28.0",
|
|
28
|
+
"tsx": "^4.22.4",
|
|
29
|
+
"typescript": "^5.6.0"
|
|
30
|
+
},
|
|
31
|
+
"license": "MIT"
|
|
29
32
|
}
|