@burdenoff/vibe-agent 2.5.0 → 2.6.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 CHANGED
@@ -10,16 +10,16 @@ Remote development environment management CLI with terminal multiplexing, SSH tu
10
10
  npm install -g @burdenoff/vibe-agent
11
11
  ```
12
12
 
13
- Requires **Node.js >= 18**.
13
+ Requires **Bun >= 1.3**.
14
14
 
15
15
  ## Quick Start
16
16
 
17
17
  ```bash
18
- # Start the agent (auto-detects first run and installs dependencies)
18
+ # Start the agent as a background daemon (default)
19
19
  vibe start
20
20
 
21
- # Or start as a background daemon
22
- vibe start -d
21
+ # Or start in foreground for debugging
22
+ vibe start --foreground
23
23
 
24
24
  # Verify it's running
25
25
  vibe health
@@ -66,8 +66,8 @@ An `.env.example` file is included in the package for reference.
66
66
  ### Core Commands
67
67
 
68
68
  ```bash
69
- vibe start # Start agent (foreground)
70
- vibe start -d # Start as daemon
69
+ vibe start # Start as daemon (default)
70
+ vibe start --foreground # Start in foreground
71
71
  vibe start -p 4000 # Start on custom port
72
72
  vibe start -n myagent # Start with instance name
73
73
  vibe start --db-path ~/my.db # Custom database path
@@ -115,18 +115,25 @@ vibe config --set key=value # Set a config value
115
115
  Extend the agent with plugins that add CLI commands, routes, or both.
116
116
 
117
117
  ```bash
118
- vibe plugin list # List installed plugins
119
- vibe plugin install @burdenoff/vibe-plugin-ssh # Install a plugin
120
- vibe plugin install @burdenoff/vibe-plugin-ai # Install AI tools plugin
121
- vibe plugin remove @burdenoff/vibe-plugin-ssh # Remove a plugin
118
+ vibe plugin list # List installed plugins
119
+ vibe plugin install @burdenoff/vibe-plugin-ssh # Install a plugin
120
+ vibe plugin install @burdenoff/vibe-plugin-ai # Install AI tools plugin
121
+ vibe plugin remove @burdenoff/vibe-plugin-ssh # Remove a plugin
122
+ vibe plugin create my-plugin # Scaffold a new plugin
123
+ vibe plugin create my-plugin --with-ui # Scaffold with React UI
124
+ vibe plugin create my-plugin --tag provider # Set plugin tag
122
125
  ```
123
126
 
124
127
  **Available Plugins:**
125
128
 
126
- | Plugin | Description |
127
- | ---------------------------- | ------------------------------------------------------ |
128
- | `@burdenoff/vibe-plugin-ssh` | SSH connections & port forwarding |
129
- | `@burdenoff/vibe-plugin-ai` | AI tool management (Claude Code, Codex, Copilot, etc.) |
129
+ | Plugin | Description |
130
+ | ------------------------------------------ | -------------------------------------------------------- |
131
+ | `@burdenoff/vibe-plugin-ssh` | SSH connections & port forwarding |
132
+ | `@burdenoff/vibe-plugin-ai` | AI tool detection & prompt management (SQLite + REST) |
133
+ | `@burdenoff/vibe-plugin-session-tmux` | tmux-based session provider |
134
+ | `@burdenoff/vibe-plugin-tunnel-cloudflare` | Cloudflare tunnel provider |
135
+ | `@burdenoff/vibe-plugin-ui-ssh` | Web UI for SSH management |
136
+ | `@burdenoff/vibe-plugin-ui-ai` | Web UI for AI tools & prompt templates |
130
137
 
131
138
  ### Tunnel Management
132
139
 
@@ -227,24 +234,24 @@ vibe tunnel list --agent-url http://localhost:4000
227
234
 
228
235
  ## Architecture
229
236
 
230
- The agent runs as a Fastify HTTP server with:
237
+ The agent runs as a Bun + Elysia HTTP server with:
231
238
 
232
- - **SQLite** database for local state (sessions, connections, tunnels, tasks, config)
239
+ - **bun:sqlite** database for local state (sessions, connections, tunnels, tasks, config)
233
240
  - **tmux** integration for terminal multiplexing
234
241
  - **cloudflared** for secure tunnel management
235
- - **Plugin system** for extensibility (SSH, AI tools, and custom plugins)
242
+ - **Plugin system** for extensibility (SSH, AI tools, UI plugins, and custom plugins)
236
243
  - **WebSocket** proxy for real-time terminal streaming
237
244
  - **API key** authentication on all endpoints
238
- - **Daemon mode** with proper process management (no SIGPIPE crashes)
245
+ - **Daemon mode** by default with proper process management
239
246
 
240
247
  ### System Dependencies
241
248
 
242
249
  | Tool | Purpose | Required |
243
250
  | ----------- | --------------------- | ----------- |
251
+ | Bun >= 1.3 | Runtime | Yes |
244
252
  | tmux | Terminal multiplexing | Yes |
245
253
  | ttyd | Web-based terminal | Recommended |
246
254
  | cloudflared | Tunnel management | For tunnels |
247
- | Node.js 18+ | Runtime | Yes |
248
255
 
249
256
  Run `vibe setup --check` to verify all dependencies.
250
257
 
@@ -264,6 +271,8 @@ When the agent is running, it exposes a REST API at `http://localhost:3005/api/`
264
271
  - `/api/git/*` - Git repository scanning
265
272
  - `/api/bookmarks/*` - Command bookmarks
266
273
  - `/api/projects/*` - Project scanning
274
+ - `/api/ai/tools` - AI tool detection
275
+ - `/api/ai/prompts/*` - Prompt template CRUD (via AI plugin)
267
276
 
268
277
  Authentication: Include `x-agent-api-key` header with your API key.
269
278
 
@@ -272,8 +281,8 @@ Authentication: Include `x-agent-api-key` header with your API key.
272
281
  ### Development Workflow
273
282
 
274
283
  ```bash
275
- # Start agent in the background
276
- vibe start -d
284
+ # Start agent (daemon mode is the default)
285
+ vibe start
277
286
 
278
287
  # Set up a dev session
279
288
  vibe session create --name frontend --cwd ~/app --command "npm run dev"
package/dist/cli.js CHANGED
@@ -2502,7 +2502,7 @@ function register8(program2) {
2502
2502
  blank();
2503
2503
  let currentVersion;
2504
2504
  try {
2505
- const pkg = await import("./package-1bz5z415.js", {
2505
+ const pkg = await import("./package-4andgzzt.js", {
2506
2506
  with: { type: "json" }
2507
2507
  });
2508
2508
  currentVersion = pkg.default.version || pkg.version;
@@ -3,7 +3,7 @@ import"./index-g8dczzvv.js";
3
3
 
4
4
  // package.json
5
5
  var name = "@burdenoff/vibe-agent";
6
- var version = "2.5.0";
6
+ var version = "2.6.0";
7
7
  var main = "./dist/index.js";
8
8
  var type = "module";
9
9
  var bin = {
@@ -47,8 +47,8 @@ var author = {
47
47
  var license = "SEE LICENSE IN LICENSE";
48
48
  var description = "VibeControls Agent CLI - Remote development environment management with terminal multiplexing, tunnels, and extensible plugins. Powered by Bun + Elysia.";
49
49
  var dependencies = {
50
- "@burdenoff/vibe-plugin-ai": "2.0.0",
51
- "@burdenoff/vibe-plugin-ssh": "2.0.0",
50
+ "@burdenoff/vibe-plugin-ai": "^3.1.0",
51
+ "@burdenoff/vibe-plugin-ssh": "^2.2.0",
52
52
  "@elysiajs/cors": "^1.3.1",
53
53
  commander: "^14.0.3",
54
54
  elysia: "^1.3.2"
@@ -134,5 +134,5 @@ export {
134
134
  author
135
135
  };
136
136
 
137
- //# debugId=D03E12260C3628D064756E2164756E21
138
- //# sourceMappingURL=package-1bz5z415.js.map
137
+ //# debugId=5863818052E0872D64756E2164756E21
138
+ //# sourceMappingURL=package-4andgzzt.js.map
@@ -4,6 +4,6 @@
4
4
  "sourcesContent": [
5
5
  ],
6
6
  "mappings": "",
7
- "debugId": "D03E12260C3628D064756E2164756E21",
7
+ "debugId": "5863818052E0872D64756E2164756E21",
8
8
  "names": []
9
9
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@burdenoff/vibe-agent",
3
- "version": "2.5.0",
3
+ "version": "2.6.0",
4
4
  "main": "./dist/index.js",
5
5
  "type": "module",
6
6
  "bin": {
@@ -44,8 +44,8 @@
44
44
  "license": "SEE LICENSE IN LICENSE",
45
45
  "description": "VibeControls Agent CLI - Remote development environment management with terminal multiplexing, tunnels, and extensible plugins. Powered by Bun + Elysia.",
46
46
  "dependencies": {
47
- "@burdenoff/vibe-plugin-ai": "2.0.0",
48
- "@burdenoff/vibe-plugin-ssh": "2.0.0",
47
+ "@burdenoff/vibe-plugin-ai": "^3.1.0",
48
+ "@burdenoff/vibe-plugin-ssh": "^2.2.0",
49
49
  "@elysiajs/cors": "^1.3.1",
50
50
  "commander": "^14.0.3",
51
51
  "elysia": "^1.3.2"