soba-agent 0.4.0 → 0.4.1

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.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +16 -1
  3. package/dist/cli.js +12 -3
  4. package/package.json +11 -2
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 avacado.run <avacado.run@gmail.com>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -4,11 +4,13 @@ SOBA Agent is a Bun-first CLI coding agent with an interactive terminal UI, proa
4
4
 
5
5
  ## Install
6
6
 
7
+ With npm:
8
+
7
9
  ```bash
8
10
  npm install -g soba-agent
9
11
  ```
10
12
 
11
- or:
13
+ With Bun:
12
14
 
13
15
  ```bash
14
16
  bun add -g soba-agent
@@ -34,6 +36,15 @@ bun install
34
36
  bun run build
35
37
  bun run src/cli.ts --help
36
38
  ```
39
+
40
+ ## Standalone Binaries
41
+
42
+ Tagged GitHub releases build standalone binaries for macOS and Linux. Download the matching `soba-*` asset from the
43
+ release, make it executable, and run it directly:
44
+
45
+ ```bash
46
+ chmod +x ./soba-linux-x64-v0.4.1
47
+ ./soba-linux-x64-v0.4.1 --version
37
48
  ```
38
49
 
39
50
  ## Development
@@ -50,3 +61,7 @@ SOBA uses Biome for linting/formatting and Bun for scripts, tests, and builds.
50
61
  ## Documentation
51
62
 
52
63
  The public documentation site is in `docs-site/`.
64
+
65
+ ## License
66
+
67
+ MIT © 2026 avacado.run <avacado.run@gmail.com>
package/dist/cli.js CHANGED
@@ -18293,11 +18293,19 @@ import { createInterface } from "readline";
18293
18293
  // package.json
18294
18294
  var package_default = {
18295
18295
  name: "soba-agent",
18296
- version: "0.4.0",
18296
+ version: "0.4.1",
18297
18297
  description: "Bun-first CLI coding agent with terminal UI, proactive context management, skills, project memory, and MCP support.",
18298
18298
  type: "module",
18299
18299
  private: false,
18300
- license: "UNLICENSED",
18300
+ license: "MIT",
18301
+ repository: {
18302
+ type: "git",
18303
+ url: "git+ssh://git@github.com/avacadorun-dev/soba-agent.git"
18304
+ },
18305
+ homepage: "https://github.com/avacadorun-dev/soba-agent#readme",
18306
+ bugs: {
18307
+ url: "https://github.com/avacadorun-dev/soba-agent/issues"
18308
+ },
18301
18309
  packageManager: "bun@1.3.14",
18302
18310
  bin: {
18303
18311
  soba: "bin/soba.js"
@@ -18307,6 +18315,7 @@ var package_default = {
18307
18315
  "dist/",
18308
18316
  "skills/",
18309
18317
  "src/audio/",
18318
+ "LICENSE",
18310
18319
  "README.md",
18311
18320
  "package.json"
18312
18321
  ],
@@ -24667,7 +24676,7 @@ var MCP_SUPPORTED_PROTOCOL_VERSIONS = [
24667
24676
  MCP_LEGACY_2024_11_PROTOCOL_VERSION
24668
24677
  ];
24669
24678
  var DEFAULT_CLIENT_NAME = "soba-agent";
24670
- var DEFAULT_CLIENT_VERSION = "0.4.0";
24679
+ var DEFAULT_CLIENT_VERSION = "0.4.1";
24671
24680
  var DEFAULT_REQUEST_TIMEOUT_MS = 30000;
24672
24681
 
24673
24682
  class McpClientError extends Error {
package/package.json CHANGED
@@ -1,10 +1,18 @@
1
1
  {
2
2
  "name": "soba-agent",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "Bun-first CLI coding agent with terminal UI, proactive context management, skills, project memory, and MCP support.",
5
5
  "type": "module",
6
6
  "private": false,
7
- "license": "UNLICENSED",
7
+ "license": "MIT",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+ssh://git@github.com/avacadorun-dev/soba-agent.git"
11
+ },
12
+ "homepage": "https://github.com/avacadorun-dev/soba-agent#readme",
13
+ "bugs": {
14
+ "url": "https://github.com/avacadorun-dev/soba-agent/issues"
15
+ },
8
16
  "packageManager": "bun@1.3.14",
9
17
  "bin": {
10
18
  "soba": "bin/soba.js"
@@ -14,6 +22,7 @@
14
22
  "dist/",
15
23
  "skills/",
16
24
  "src/audio/",
25
+ "LICENSE",
17
26
  "README.md",
18
27
  "package.json"
19
28
  ],