@easbot/agent 0.2.0 → 0.2.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/dist/cli.cjs +1 -1
- package/dist/cli.d.cts +1 -0
- package/dist/cli.d.ts +1 -0
- package/dist/cli.mjs +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +31736 -0
- package/dist/index.d.ts +31736 -0
- package/dist/index.mjs +1 -1
- package/package.json +40 -41
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@easbot/agent",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Core Agent for the easbot monorepo ecosystem",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -17,33 +17,6 @@
|
|
|
17
17
|
"bin": {
|
|
18
18
|
"easbot": "./dist/cli.mjs"
|
|
19
19
|
},
|
|
20
|
-
"scripts": {
|
|
21
|
-
"dev": "cross-env NODE_ENV=development tsx src/cli.ts -- tui",
|
|
22
|
-
"start": "cross-env NODE_ENV=production node dist/cli.mjs tui --new",
|
|
23
|
-
"build": "tsup --env.NODE_ENV production",
|
|
24
|
-
"test": "vitest",
|
|
25
|
-
"test:run": "vitest run",
|
|
26
|
-
"test:ui": "vitest --ui",
|
|
27
|
-
"test:watch": "vitest --watch",
|
|
28
|
-
"test:coverage": "vitest run --coverage",
|
|
29
|
-
"test:unit": "vitest run --config ./vitest.unit.config.ts",
|
|
30
|
-
"test:unit:watch": "vitest --config ./vitest.unit.config.ts",
|
|
31
|
-
"test:integration": "vitest run --config ./vitest.integration.config.ts",
|
|
32
|
-
"test:integration:watch": "vitest --config ./vitest.integration.config.ts",
|
|
33
|
-
"test:e2e": "vitest run --config ./vitest.e2e.config.ts",
|
|
34
|
-
"test:e2e:watch": "vitest --config ./vitest.e2e.config.ts",
|
|
35
|
-
"lint": "biome check .",
|
|
36
|
-
"lint:fix": "biome check --write .",
|
|
37
|
-
"lint:fix:unsafe": "biome check --write --unsafe ./src",
|
|
38
|
-
"lint:report": "biome check --reporter=summary .",
|
|
39
|
-
"format": "biome format .",
|
|
40
|
-
"format:fix": "biome format --write .",
|
|
41
|
-
"type-check": "tsc --noEmit",
|
|
42
|
-
"clean": "npx rimraf dist node_modules",
|
|
43
|
-
"prepare": "echo 'agent: Bun environment ready for CLI usage'",
|
|
44
|
-
"publish:npm": "bash scripts/publish.sh",
|
|
45
|
-
"publish:npm:win": "powershell -ExecutionPolicy Bypass -File scripts/publish.ps1"
|
|
46
|
-
},
|
|
47
20
|
"keywords": [
|
|
48
21
|
"ai",
|
|
49
22
|
"agent",
|
|
@@ -95,17 +68,6 @@
|
|
|
95
68
|
"@ai-sdk/xai": "^3.0.73",
|
|
96
69
|
"@aws-sdk/credential-providers": "^3.1014.0",
|
|
97
70
|
"@clack/prompts": "^1.1.0",
|
|
98
|
-
"@easbot/plugin": "workspace:*",
|
|
99
|
-
"@easbot/codebase": "workspace:*",
|
|
100
|
-
"@easbot/memory": "workspace:*",
|
|
101
|
-
"@easbot/note": "workspace:*",
|
|
102
|
-
"@easbot/types": "workspace:*",
|
|
103
|
-
"@easbot/tui": "workspace:*",
|
|
104
|
-
"@easbot/utils": "workspace:*",
|
|
105
|
-
"@easbot/sdk": "workspace:*",
|
|
106
|
-
"@easbot/local-model-sdk": "workspace:*",
|
|
107
|
-
"@easbot/ollama-sdk": "workspace:*",
|
|
108
|
-
"@easbot/gateway": "workspace:*",
|
|
109
71
|
"@hono/node-server": "^2.0.0",
|
|
110
72
|
"@hono/node-ws": "^1.3.0",
|
|
111
73
|
"@hono/standard-validator": "^0.2.2",
|
|
@@ -167,7 +129,18 @@
|
|
|
167
129
|
"jieba-wasm": "^2.4.0",
|
|
168
130
|
"vscode-languageserver-types": "3.17.5",
|
|
169
131
|
"why-is-node-running": "^3.2.2",
|
|
170
|
-
"zod-to-json-schema": "^3.25.1"
|
|
132
|
+
"zod-to-json-schema": "^3.25.1",
|
|
133
|
+
"@easbot/plugin": "0.2.1",
|
|
134
|
+
"@easbot/memory": "0.2.1",
|
|
135
|
+
"@easbot/codebase": "0.2.1",
|
|
136
|
+
"@easbot/note": "0.2.1",
|
|
137
|
+
"@easbot/types": "0.2.1",
|
|
138
|
+
"@easbot/utils": "0.2.1",
|
|
139
|
+
"@easbot/local-model-sdk": "0.2.1",
|
|
140
|
+
"@easbot/tui": "0.2.1",
|
|
141
|
+
"@easbot/ollama-sdk": "0.2.1",
|
|
142
|
+
"@easbot/gateway": "0.2.1",
|
|
143
|
+
"@easbot/sdk": "0.2.1"
|
|
171
144
|
},
|
|
172
145
|
"devDependencies": {
|
|
173
146
|
"@actions/core": "^3.0.0",
|
|
@@ -187,5 +160,31 @@
|
|
|
187
160
|
"tsx": "^4.21.0",
|
|
188
161
|
"typescript": "^6.0.2",
|
|
189
162
|
"vitest": "^4.1.1"
|
|
163
|
+
},
|
|
164
|
+
"scripts": {
|
|
165
|
+
"dev": "cross-env NODE_ENV=development tsx src/cli.ts -- tui",
|
|
166
|
+
"start": "cross-env NODE_ENV=production node dist/cli.mjs tui --new",
|
|
167
|
+
"build": "tsup --env.NODE_ENV production",
|
|
168
|
+
"test": "vitest",
|
|
169
|
+
"test:run": "vitest run",
|
|
170
|
+
"test:ui": "vitest --ui",
|
|
171
|
+
"test:watch": "vitest --watch",
|
|
172
|
+
"test:coverage": "vitest run --coverage",
|
|
173
|
+
"test:unit": "vitest run --config ./vitest.unit.config.ts",
|
|
174
|
+
"test:unit:watch": "vitest --config ./vitest.unit.config.ts",
|
|
175
|
+
"test:integration": "vitest run --config ./vitest.integration.config.ts",
|
|
176
|
+
"test:integration:watch": "vitest --config ./vitest.integration.config.ts",
|
|
177
|
+
"test:e2e": "vitest run --config ./vitest.e2e.config.ts",
|
|
178
|
+
"test:e2e:watch": "vitest --config ./vitest.e2e.config.ts",
|
|
179
|
+
"lint": "biome check .",
|
|
180
|
+
"lint:fix": "biome check --write .",
|
|
181
|
+
"lint:fix:unsafe": "biome check --write --unsafe ./src",
|
|
182
|
+
"lint:report": "biome check --reporter=summary .",
|
|
183
|
+
"format": "biome format .",
|
|
184
|
+
"format:fix": "biome format --write .",
|
|
185
|
+
"type-check": "tsc --noEmit",
|
|
186
|
+
"clean": "npx rimraf dist node_modules",
|
|
187
|
+
"publish:npm": "bash scripts/publish.sh",
|
|
188
|
+
"publish:npm:win": "powershell -ExecutionPolicy Bypass -File scripts/publish.ps1"
|
|
190
189
|
}
|
|
191
|
-
}
|
|
190
|
+
}
|