sparkecoder 0.1.3 → 0.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 +2 -2
- package/dist/agent/index.d.ts +3 -2
- package/dist/agent/index.js +653 -574
- package/dist/agent/index.js.map +1 -1
- package/dist/bash-CGAqW7HR.d.ts +80 -0
- package/dist/cli.js +2912 -1374
- package/dist/cli.js.map +1 -1
- package/dist/db/index.d.ts +16 -3
- package/dist/db/index.js +68 -13
- package/dist/db/index.js.map +1 -1
- package/dist/{index-BxpkHy7X.d.ts → index-DkR9Ln_7.d.ts} +18 -2
- package/dist/index.d.ts +117 -79
- package/dist/index.js +2402 -1242
- package/dist/index.js.map +1 -1
- package/dist/{schema-EPbMMFza.d.ts → schema-cUDLVN-b.d.ts} +127 -5
- package/dist/server/index.d.ts +9 -2
- package/dist/server/index.js +2390 -1245
- package/dist/server/index.js.map +1 -1
- package/dist/tools/index.d.ts +4 -138
- package/dist/tools/index.js +483 -558
- package/dist/tools/index.js.map +1 -1
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# 🐶SparkECoder🐶
|
|
2
2
|
|
|
3
3
|
A powerful coding agent CLI with HTTP API. Built with the [Vercel AI SDK](https://sdk.vercel.ai).
|
|
4
4
|
|
|
@@ -326,7 +326,7 @@ pnpm start
|
|
|
326
326
|
|
|
327
327
|
## Testing
|
|
328
328
|
|
|
329
|
-
|
|
329
|
+
SparkECoder includes comprehensive end-to-end tests that make actual API calls to the LLM.
|
|
330
330
|
|
|
331
331
|
```bash
|
|
332
332
|
# Run all E2E tests (requires AI_GATEWAY_API_KEY)
|
package/dist/agent/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import 'ai';
|
|
2
|
-
import '../schema-
|
|
3
|
-
export { A as Agent, a as AgentOptions, b as AgentRunOptions, c as AgentStreamResult, C as ContextManager, d as buildSystemPrompt } from '../index-
|
|
2
|
+
import '../schema-cUDLVN-b.js';
|
|
3
|
+
export { A as Agent, a as AgentOptions, b as AgentRunOptions, c as AgentStreamResult, C as ContextManager, d as buildSystemPrompt } from '../index-DkR9Ln_7.js';
|
|
4
|
+
import '../bash-CGAqW7HR.js';
|
|
4
5
|
import 'drizzle-orm/sqlite-core';
|
|
5
6
|
import 'zod';
|