@barnaby.build/barnaby 0.0.129 → 0.0.131
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 +23 -0
- package/bin/barnaby.cjs +1 -1
- package/package.json +6 -2
package/README.md
CHANGED
|
@@ -7,6 +7,29 @@ Barnaby is a desktop AI agent orchestrator for **agentic coordination** — conn
|
|
|
7
7
|
- **API provider**: OpenRouter — free-tier and paid models via API key (ideal when CLI quotas are exhausted)
|
|
8
8
|
- **UI experience**: Split layouts (horizontal, vertical, grid), workspace window, dark/light themes, zoom, activity timeline
|
|
9
9
|
|
|
10
|
+
## Installation
|
|
11
|
+
|
|
12
|
+
### Option 1: Download (recommended)
|
|
13
|
+
|
|
14
|
+
[Download Barnaby](https://github.com/incendiosoftware/Barnaby/releases) — portable `.exe` for Windows. No install required.
|
|
15
|
+
|
|
16
|
+
### Option 2: npm (requires Node.js 20+)
|
|
17
|
+
|
|
18
|
+
**Quick run:**
|
|
19
|
+
```bash
|
|
20
|
+
npx '@barnaby.build/barnaby'
|
|
21
|
+
```
|
|
22
|
+
*PowerShell: use single quotes as shown. Bash/zsh: quotes optional.*
|
|
23
|
+
|
|
24
|
+
**Global install:**
|
|
25
|
+
```bash
|
|
26
|
+
npm install -g '@barnaby.build/barnaby'
|
|
27
|
+
barnaby
|
|
28
|
+
```
|
|
29
|
+
*PowerShell: use single quotes around the package name.*
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
10
33
|
Latest Binary Release
|
|
11
34
|
[Download Barnaby v0.0.125](https://github.com/incendiosoftware/Barnaby/releases/tag/v0.0.125)
|
|
12
35
|
|
package/bin/barnaby.cjs
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@barnaby.build/barnaby",
|
|
3
3
|
"productName": "Barnaby",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.131",
|
|
5
5
|
"main": "dist-electron/main/index.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"barnaby": "bin/barnaby.cjs"
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
},
|
|
27
27
|
"type": "module",
|
|
28
28
|
"engines": {
|
|
29
|
-
"node": ">=20 <
|
|
29
|
+
"node": ">=20 <26"
|
|
30
30
|
},
|
|
31
31
|
"scripts": {
|
|
32
32
|
"bump:version": "node scripts/bump-version.mjs",
|
|
@@ -68,6 +68,7 @@
|
|
|
68
68
|
"@uiw/react-codemirror": "^4.25.4",
|
|
69
69
|
"@xterm/addon-fit": "^0.11.0",
|
|
70
70
|
"@xterm/xterm": "^5.3.0",
|
|
71
|
+
"barnaby": "^0.2.0",
|
|
71
72
|
"electron-updater": "^6.3.9",
|
|
72
73
|
"node-pty": "^1.0.0",
|
|
73
74
|
"react-markdown": "^10.1.0",
|
|
@@ -75,6 +76,9 @@
|
|
|
75
76
|
"react-syntax-highlighter": "^16.1.0",
|
|
76
77
|
"remark-gfm": "^4.0.1"
|
|
77
78
|
},
|
|
79
|
+
"optionalDependencies": {
|
|
80
|
+
"electron": "^40.6.0"
|
|
81
|
+
},
|
|
78
82
|
"devDependencies": {
|
|
79
83
|
"@electron/packager": "^19.0.5",
|
|
80
84
|
"@playwright/test": "^1.48.2",
|