@gbasin/agentboard 0.2.4 → 0.2.5

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 (2) hide show
  1. package/README.md +9 -0
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -4,6 +4,7 @@
4
4
  [![npm](https://img.shields.io/npm/v/@gbasin/agentboard?logo=npm)](https://www.npmjs.com/package/@gbasin/agentboard)
5
5
  [![License: MIT](https://img.shields.io/github/license/gbasin/agentboard)](https://github.com/gbasin/agentboard/blob/master/LICENSE)
6
6
  [![TypeScript](https://img.shields.io/badge/TypeScript-5.x-3178c6?logo=typescript&logoColor=white)](https://www.typescriptlang.org/)
7
+ [![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/gbasin/agentboard)
7
8
 
8
9
  Agentboard is a Web GUI for `tmux` that's optimized for agent TUI's (`claude`, `codex`, etc). A lighter-weight, agent-optimized alternative to Blink, Termux, etc.
9
10
 
@@ -56,6 +57,14 @@ Run your desktop/server, then connect from your phone or laptop over Tailscale/L
56
57
 
57
58
  ## Install
58
59
 
60
+ ### Homebrew
61
+
62
+ ```bash
63
+ brew tap gbasin/tap
64
+ brew install agentboard
65
+ agentboard
66
+ ```
67
+
59
68
  ### npm
60
69
 
61
70
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gbasin/agentboard",
3
- "version": "0.2.4",
3
+ "version": "0.2.5",
4
4
  "type": "module",
5
5
  "description": "Web GUI for tmux optimized for AI agent TUIs",
6
6
  "author": "gbasin",
@@ -20,10 +20,10 @@
20
20
  "bun": ">=1.3.6"
21
21
  },
22
22
  "optionalDependencies": {
23
- "@gbasin/agentboard-darwin-arm64": "0.2.4",
24
- "@gbasin/agentboard-darwin-x64": "0.2.4",
25
- "@gbasin/agentboard-linux-x64": "0.2.4",
26
- "@gbasin/agentboard-linux-arm64": "0.2.4"
23
+ "@gbasin/agentboard-darwin-arm64": "0.2.5",
24
+ "@gbasin/agentboard-darwin-x64": "0.2.5",
25
+ "@gbasin/agentboard-linux-x64": "0.2.5",
26
+ "@gbasin/agentboard-linux-arm64": "0.2.5"
27
27
  },
28
28
  "scripts": {
29
29
  "dev": "concurrently -k \"bun run dev:server\" \"bun run dev:client\"",