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 +52 -0
- package/bin/soba.js +7 -0
- package/dist/cli.js +31079 -0
- package/package.json +50 -0
- package/skills/bug-fix/SKILL.md +61 -0
- package/skills/code-review/SKILL.md +61 -0
- package/skills/codebase-orientation/SKILL.md +60 -0
- package/skills/commit-message/SKILL.md +59 -0
- package/skills/context-handoff/SKILL.md +60 -0
- package/skills/feature-implementation/SKILL.md +61 -0
- package/skills/fix-until-green/SKILL.md +61 -0
- package/skills/git-summary/SKILL.md +60 -0
- package/skills/lint-fix/SKILL.md +63 -0
- package/skills/memory-capture/SKILL.md +60 -0
- package/skills/pr-description/SKILL.md +62 -0
- package/skills/test-authoring/SKILL.md +60 -0
- package/skills/version-bump/SKILL.md +60 -0
- package/src/audio/dangerous.wav +0 -0
- package/src/audio/done.wav +0 -0
- package/src/audio/error.wav +0 -0
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"));
|