@easbot/agent 0.2.0 → 0.2.2
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/assets/txt/tool/apply_patch.txt +25 -5
- package/dist/assets/txt/tool/codebase.txt +21 -7
- package/dist/assets/txt/tool/task.txt +48 -60
- package/dist/cli.cjs +542 -588
- package/dist/cli.mjs +542 -588
- package/dist/index.cjs +556 -601
- package/dist/index.mjs +556 -601
- package/package.json +97 -106
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@easbot/agent",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
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",
|
|
@@ -72,63 +45,44 @@
|
|
|
72
45
|
"LICENSE"
|
|
73
46
|
],
|
|
74
47
|
"dependencies": {
|
|
75
|
-
"@agentclientprotocol/sdk": "^0.
|
|
76
|
-
"@ai-sdk/
|
|
77
|
-
"@ai-sdk/
|
|
78
|
-
"@ai-sdk/
|
|
79
|
-
"@ai-sdk/azure": "3.0.
|
|
80
|
-
"@ai-sdk/cerebras": "^2.0.
|
|
81
|
-
"@ai-sdk/cohere": "3.0.
|
|
82
|
-
"@ai-sdk/deepinfra": "^2.0.
|
|
83
|
-
"@ai-sdk/
|
|
84
|
-
"@ai-sdk/
|
|
85
|
-
"@ai-sdk/google
|
|
86
|
-
"@ai-sdk/
|
|
87
|
-
"@ai-sdk/
|
|
88
|
-
"@ai-sdk/
|
|
89
|
-
"@ai-sdk/openai
|
|
90
|
-
"@ai-sdk/
|
|
91
|
-
"@ai-sdk/
|
|
92
|
-
"@ai-sdk/provider
|
|
93
|
-
"@ai-sdk/
|
|
94
|
-
"@ai-sdk/
|
|
95
|
-
"@ai-sdk/
|
|
96
|
-
"@
|
|
97
|
-
"@
|
|
98
|
-
"@
|
|
99
|
-
"@
|
|
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
|
-
"@hono/node-server": "^2.0.0",
|
|
110
|
-
"@hono/node-ws": "^1.3.0",
|
|
48
|
+
"@agentclientprotocol/sdk": "^0.21.0",
|
|
49
|
+
"@ai-sdk/alibaba": "^1.0.23",
|
|
50
|
+
"@ai-sdk/amazon-bedrock": "^4.0.103",
|
|
51
|
+
"@ai-sdk/anthropic": "^3.0.76",
|
|
52
|
+
"@ai-sdk/azure": "^3.0.64",
|
|
53
|
+
"@ai-sdk/cerebras": "^2.0.51",
|
|
54
|
+
"@ai-sdk/cohere": "3.0.35",
|
|
55
|
+
"@ai-sdk/deepinfra": "^2.0.51",
|
|
56
|
+
"@ai-sdk/deepseek": "^2.0.34",
|
|
57
|
+
"@ai-sdk/gateway": "^3.0.111",
|
|
58
|
+
"@ai-sdk/google": "^3.0.70",
|
|
59
|
+
"@ai-sdk/google-vertex": "^4.0.124",
|
|
60
|
+
"@ai-sdk/groq": "^3.0.39",
|
|
61
|
+
"@ai-sdk/mistral": "^3.0.36",
|
|
62
|
+
"@ai-sdk/openai": "^3.0.63",
|
|
63
|
+
"@ai-sdk/openai-compatible": "^2.0.47",
|
|
64
|
+
"@ai-sdk/perplexity": "^3.0.33",
|
|
65
|
+
"@ai-sdk/provider": "^3.0.10",
|
|
66
|
+
"@ai-sdk/provider-utils": "^4.0.27",
|
|
67
|
+
"@ai-sdk/togetherai": "^2.0.51",
|
|
68
|
+
"@ai-sdk/vercel": "^2.0.49",
|
|
69
|
+
"@ai-sdk/xai": "^3.0.89",
|
|
70
|
+
"@aws-sdk/credential-providers": "^3.1045.0",
|
|
71
|
+
"@clack/prompts": "^1.3.0",
|
|
72
|
+
"@hono/node-server": "^2.0.2",
|
|
111
73
|
"@hono/standard-validator": "^0.2.2",
|
|
112
74
|
"@hono/zod-validator": "^0.7.6",
|
|
113
|
-
"@
|
|
114
|
-
"@
|
|
115
|
-
"@mariozechner/pi-coding-agent": "0.62.0",
|
|
116
|
-
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
117
|
-
"@openrouter/ai-sdk-provider": "^2.3.3",
|
|
75
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
76
|
+
"@openrouter/ai-sdk-provider": "^2.9.0",
|
|
118
77
|
"@parcel/watcher": "^2.5.6",
|
|
119
|
-
"@
|
|
120
|
-
"@solid-primitives/event-bus": "1.1.3",
|
|
121
|
-
"@solid-primitives/scheduled": "1.5.3",
|
|
122
|
-
"@standard-schema/spec": "1.1.0",
|
|
123
|
-
"@types/semver": "^7.7.1",
|
|
124
|
-
"@wasmer/wasi": "^1.2.2",
|
|
78
|
+
"@standard-schema/spec": "^1.1.0",
|
|
125
79
|
"@types/cross-spawn": "^6.0.6",
|
|
126
|
-
"@
|
|
127
|
-
"
|
|
128
|
-
"ai": "^6.0.
|
|
129
|
-
"ai-gateway-provider": "^3.1.
|
|
130
|
-
"ajv": "^8.
|
|
131
|
-
"axios": "^1.
|
|
80
|
+
"@wasmer/wasi": "^1.2.2",
|
|
81
|
+
"@zip.js/zip.js": "^2.8.26",
|
|
82
|
+
"ai": "^6.0.176",
|
|
83
|
+
"ai-gateway-provider": "^3.1.3",
|
|
84
|
+
"ajv": "^8.20.0",
|
|
85
|
+
"axios": "^1.16.0",
|
|
132
86
|
"bash-parser": "^0.5.0",
|
|
133
87
|
"bonjour-service": "^1.3.0",
|
|
134
88
|
"chalk": "^5.6.2",
|
|
@@ -136,56 +90,93 @@
|
|
|
136
90
|
"commander": "^14.0.3",
|
|
137
91
|
"cross-spawn": "^7.0.6",
|
|
138
92
|
"decimal.js": "^10.6.0",
|
|
139
|
-
"diff": "^
|
|
93
|
+
"diff": "^9.0.0",
|
|
140
94
|
"drizzle-orm": "^0.45.2",
|
|
95
|
+
"fast-check": "^4.7.0",
|
|
141
96
|
"fuzzysort": "^3.1.0",
|
|
142
|
-
"fast-check": "^4.6.0",
|
|
143
97
|
"gitlab-ai-provider": "^6.6.0",
|
|
144
98
|
"glob": "^13.0.6",
|
|
99
|
+
"google-auth-library": "^10.6.2",
|
|
145
100
|
"gray-matter": "^4.0.3",
|
|
146
|
-
"hono": "^4.12.
|
|
101
|
+
"hono": "^4.12.18",
|
|
147
102
|
"hono-openapi": "^1.3.0",
|
|
148
103
|
"ignore": "^7.0.5",
|
|
149
|
-
"
|
|
104
|
+
"jieba-wasm": "^2.4.0",
|
|
105
|
+
"jiti": "^2.7.0",
|
|
150
106
|
"jsonc-parser": "^3.3.1",
|
|
151
|
-
"lru-cache": "^11.3.
|
|
152
|
-
"minimatch": "^10.2.
|
|
107
|
+
"lru-cache": "^11.3.6",
|
|
108
|
+
"minimatch": "^10.2.5",
|
|
153
109
|
"node-gyp": "^12.3.0",
|
|
154
110
|
"node-html-parser": "^7.1.0",
|
|
155
111
|
"node-pty": "^1.1.0",
|
|
156
112
|
"open": "^11.0.0",
|
|
157
|
-
"remeda": "^2.
|
|
158
|
-
"semver": "^7.7.4",
|
|
113
|
+
"remeda": "^2.34.0",
|
|
159
114
|
"tree-sitter-bash": "^0.25.1",
|
|
160
|
-
"turndown": "^7.2.
|
|
115
|
+
"turndown": "^7.2.4",
|
|
161
116
|
"ulid": "^3.0.2",
|
|
162
117
|
"vscode-jsonrpc": "^8.2.1",
|
|
118
|
+
"vscode-languageserver-types": "^3.17.5",
|
|
163
119
|
"which": "^6.0.1",
|
|
164
|
-
"xdg-basedir": "^5.1.0",
|
|
165
|
-
"zod": "^4.3.6",
|
|
166
|
-
"ws": "^8.20.0",
|
|
167
|
-
"jieba-wasm": "^2.4.0",
|
|
168
|
-
"vscode-languageserver-types": "3.17.5",
|
|
169
120
|
"why-is-node-running": "^3.2.2",
|
|
170
|
-
"
|
|
121
|
+
"ws": "^8.20.0",
|
|
122
|
+
"xdg-basedir": "5.1.0",
|
|
123
|
+
"zod": "^4.4.3",
|
|
124
|
+
"zod-to-json-schema": "^3.25.2",
|
|
125
|
+
"@easbot/gateway": "0.2.2",
|
|
126
|
+
"@easbot/codebase": "0.2.2",
|
|
127
|
+
"@easbot/local-model-sdk": "0.2.2",
|
|
128
|
+
"@easbot/memory": "0.2.2",
|
|
129
|
+
"@easbot/ollama-sdk": "0.2.2",
|
|
130
|
+
"@easbot/note": "0.2.2",
|
|
131
|
+
"@easbot/plugin": "0.2.2",
|
|
132
|
+
"@easbot/sdk": "0.2.2",
|
|
133
|
+
"@easbot/tui": "0.2.2",
|
|
134
|
+
"@easbot/types": "0.2.2",
|
|
135
|
+
"@easbot/utils": "0.2.2"
|
|
171
136
|
},
|
|
172
137
|
"devDependencies": {
|
|
173
|
-
"@actions/core": "^3.0.
|
|
174
|
-
"@actions/github": "^9.
|
|
138
|
+
"@actions/core": "^3.0.1",
|
|
139
|
+
"@actions/github": "^9.1.1",
|
|
175
140
|
"@octokit/graphql": "^9.0.3",
|
|
176
141
|
"@octokit/rest": "^22.0.1",
|
|
177
142
|
"@octokit/webhooks-types": "^7.6.1",
|
|
178
|
-
"@types/node": "^
|
|
143
|
+
"@types/node": "^25.6.2",
|
|
144
|
+
"@types/turndown": "^5.0.6",
|
|
179
145
|
"@types/which": "^3.0.4",
|
|
180
146
|
"@types/ws": "^8.18.1",
|
|
181
|
-
"@
|
|
182
|
-
"
|
|
183
|
-
"
|
|
184
|
-
"esbuild": "^0.27.4",
|
|
147
|
+
"@vitest/coverage-v8": "^4.1.5",
|
|
148
|
+
"dotenv": "^17.4.2",
|
|
149
|
+
"esbuild": "^0.28.0",
|
|
185
150
|
"esbuild-plugin-alias": "^0.2.1",
|
|
186
151
|
"tsup": "^8.5.1",
|
|
187
152
|
"tsx": "^4.21.0",
|
|
188
|
-
"typescript": "^6.0.
|
|
189
|
-
"vitest": "^4.1.
|
|
153
|
+
"typescript": "^6.0.3",
|
|
154
|
+
"vitest": "^4.1.5"
|
|
155
|
+
},
|
|
156
|
+
"scripts": {
|
|
157
|
+
"dev": "cross-env NODE_ENV=development tsx src/cli.ts -- tui",
|
|
158
|
+
"start": "cross-env NODE_ENV=production node dist/cli.mjs tui --new",
|
|
159
|
+
"build": "tsup --env.NODE_ENV production",
|
|
160
|
+
"test": "vitest",
|
|
161
|
+
"test:run": "vitest run",
|
|
162
|
+
"test:ui": "vitest --ui",
|
|
163
|
+
"test:watch": "vitest --watch",
|
|
164
|
+
"test:coverage": "vitest run --coverage",
|
|
165
|
+
"test:unit": "vitest run --config ./vitest.unit.config.ts",
|
|
166
|
+
"test:unit:watch": "vitest --config ./vitest.unit.config.ts",
|
|
167
|
+
"test:integration": "vitest run --config ./vitest.integration.config.ts",
|
|
168
|
+
"test:integration:watch": "vitest --config ./vitest.integration.config.ts",
|
|
169
|
+
"test:e2e": "vitest run --config ./vitest.e2e.config.ts",
|
|
170
|
+
"test:e2e:watch": "vitest --config ./vitest.e2e.config.ts",
|
|
171
|
+
"lint": "biome check .",
|
|
172
|
+
"lint:fix": "biome check --write .",
|
|
173
|
+
"lint:fix:unsafe": "biome check --write --unsafe ./src",
|
|
174
|
+
"lint:report": "biome check --reporter=summary .",
|
|
175
|
+
"format": "biome format .",
|
|
176
|
+
"format:fix": "biome format --write .",
|
|
177
|
+
"type-check": "tsc --noEmit",
|
|
178
|
+
"clean": "npx rimraf dist node_modules",
|
|
179
|
+
"publish:npm": "bash scripts/publish.sh",
|
|
180
|
+
"publish:npm:win": "powershell -ExecutionPolicy Bypass -File scripts/publish.ps1"
|
|
190
181
|
}
|
|
191
|
-
}
|
|
182
|
+
}
|