soba-agent 0.4.0

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 ADDED
@@ -0,0 +1,52 @@
1
+ # SOBA Agent
2
+
3
+ SOBA Agent is a Bun-first CLI coding agent with an interactive terminal UI, proactive context management, project memory, skills, and MCP support.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ npm install -g soba-agent
9
+ ```
10
+
11
+ or:
12
+
13
+ ```bash
14
+ bun add -g soba-agent
15
+ ```
16
+
17
+ Check the CLI:
18
+
19
+ ```bash
20
+ soba --version
21
+ soba --help
22
+ ```
23
+
24
+ Start the interactive TUI:
25
+
26
+ ```bash
27
+ soba -i
28
+ ```
29
+
30
+ ## From Source
31
+
32
+ ```bash
33
+ bun install
34
+ bun run build
35
+ bun run src/cli.ts --help
36
+ ```
37
+ ```
38
+
39
+ ## Development
40
+
41
+ ```bash
42
+ bun run lint
43
+ bunx tsc --noEmit
44
+ bun test
45
+ bun run build
46
+ ```
47
+
48
+ SOBA uses Biome for linting/formatting and Bun for scripts, tests, and builds.
49
+
50
+ ## Documentation
51
+
52
+ The public documentation site is in `docs-site/`.
package/bin/soba.js ADDED
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env bun
2
+ import { join } from "node:path";
3
+
4
+ process.env.SOBA_PACKAGE_ROOT ??= join(import.meta.dir, "..");
5
+ process.env.SOBA_BUNDLED_SKILLS_PATH ??= join(import.meta.dir, "..", "skills");
6
+
7
+ await import(join(import.meta.dir, "..", "dist", "cli.js"));