@easbot/agent 0.1.14 → 0.1.15

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@easbot/agent",
3
- "version": "0.1.14",
3
+ "version": "0.1.15",
4
4
  "description": "Core Agent for the easbot monorepo ecosystem",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -17,6 +17,33 @@
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
+ },
20
47
  "keywords": [
21
48
  "ai",
22
49
  "agent",
@@ -68,6 +95,17 @@
68
95
  "@ai-sdk/xai": "^3.0.73",
69
96
  "@aws-sdk/credential-providers": "^3.1014.0",
70
97
  "@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:*",
71
109
  "@hono/node-server": "^2.0.0",
72
110
  "@hono/node-ws": "^1.3.0",
73
111
  "@hono/standard-validator": "^0.2.2",
@@ -86,6 +124,7 @@
86
124
  "@wasmer/wasi": "^1.2.2",
87
125
  "@types/cross-spawn": "^6.0.6",
88
126
  "@zip.js/zip.js": "^2.8.23",
127
+ "venice-ai-sdk-provider": "^1.1.19",
89
128
  "ai": "^6.0.136",
90
129
  "ai-gateway-provider": "^3.1.2",
91
130
  "ajv": "^8.18.0",
@@ -128,18 +167,7 @@
128
167
  "jieba-wasm": "^2.4.0",
129
168
  "vscode-languageserver-types": "3.17.5",
130
169
  "why-is-node-running": "^3.2.2",
131
- "zod-to-json-schema": "^3.25.1",
132
- "@easbot/codebase": "0.1.14",
133
- "@easbot/plugin": "0.1.14",
134
- "@easbot/types": "0.1.14",
135
- "@easbot/memory": "0.1.14",
136
- "@easbot/note": "0.1.14",
137
- "@easbot/utils": "0.1.14",
138
- "@easbot/sdk": "0.1.14",
139
- "@easbot/tui": "0.1.14",
140
- "@easbot/local-model-sdk": "0.1.14",
141
- "@easbot/ollama-sdk": "0.1.14",
142
- "@easbot/gateway": "0.1.14"
170
+ "zod-to-json-schema": "^3.25.1"
143
171
  },
144
172
  "devDependencies": {
145
173
  "@actions/core": "^3.0.0",
@@ -159,31 +187,5 @@
159
187
  "tsx": "^4.21.0",
160
188
  "typescript": "^6.0.2",
161
189
  "vitest": "^4.1.1"
162
- },
163
- "scripts": {
164
- "dev": "cross-env NODE_ENV=development tsx src/cli.ts -- tui",
165
- "start": "cross-env NODE_ENV=production node dist/cli.mjs tui --new",
166
- "build": "tsup --env.NODE_ENV production",
167
- "test": "vitest",
168
- "test:run": "vitest run",
169
- "test:ui": "vitest --ui",
170
- "test:watch": "vitest --watch",
171
- "test:coverage": "vitest run --coverage",
172
- "test:unit": "vitest run --config ./vitest.unit.config.ts",
173
- "test:unit:watch": "vitest --config ./vitest.unit.config.ts",
174
- "test:integration": "vitest run --config ./vitest.integration.config.ts",
175
- "test:integration:watch": "vitest --config ./vitest.integration.config.ts",
176
- "test:e2e": "vitest run --config ./vitest.e2e.config.ts",
177
- "test:e2e:watch": "vitest --config ./vitest.e2e.config.ts",
178
- "lint": "biome check .",
179
- "lint:fix": "biome check --write .",
180
- "lint:fix:unsafe": "biome check --write --unsafe ./src",
181
- "lint:report": "biome check --reporter=summary .",
182
- "format": "biome format .",
183
- "format:fix": "biome format --write .",
184
- "type-check": "tsc --noEmit",
185
- "clean": "npx rimraf dist node_modules",
186
- "publish:npm": "bash scripts/publish.sh",
187
- "publish:npm:win": "powershell -ExecutionPolicy Bypass -File scripts/publish.ps1"
188
190
  }
189
- }
191
+ }