peakypanes 0.0.5 → 0.0.7
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 +29 -12
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -6,15 +6,17 @@
|
|
|
6
6
|
█ █████ █ █ █ ██ █ █ █ █ █ ██ █████ █████
|
|
7
7
|
```
|
|
8
8
|
|
|
9
|
-
**
|
|
9
|
+
**Multi-project orchestration in a single TUI for AI agents and dev environments.**
|
|
10
10
|
|
|
11
11
|

|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
Run all your projects and AI agents in one dashboard instead of juggling terminal windows or tabs. Define layouts in YAML, share them with your team via git, and get consistent environments everywhere. Sessions are owned by a **native daemon** so they keep running after the UI exits.
|
|
15
15
|
|
|
16
16
|
## Features
|
|
17
17
|
|
|
18
|
+
- 🧠 **AI agent orchestration** - Run Codex/Claude/agents side by side with quick replies, slash commands, and broadcast
|
|
19
|
+
- 🗂️ **Multi-project dashboard** - See every project/session in one TUI without switching windows
|
|
18
20
|
- 📦 **Built-in layouts** - Works out of the box with sensible defaults
|
|
19
21
|
- 🧩 **Exact grids** - Use `grid: 2x3` for consistent rows/columns
|
|
20
22
|
- 📁 **Project-local config** - Commit `.peakypanes.yml` to git for team sharing
|
|
@@ -132,6 +134,11 @@ layout:
|
|
|
132
134
|
# - codex-3
|
|
133
135
|
# - codex-4
|
|
134
136
|
# - codex-5
|
|
137
|
+
|
|
138
|
+
# Optional per-project dashboard overrides
|
|
139
|
+
# dashboard:
|
|
140
|
+
# sidebar:
|
|
141
|
+
# hidden: true
|
|
135
142
|
```
|
|
136
143
|
|
|
137
144
|
### Global Config (`~/.config/peakypanes/config.yml`)
|
|
@@ -253,17 +260,18 @@ The dashboard shows:
|
|
|
253
260
|
- Projects on top (tabs)
|
|
254
261
|
- Sessions on the left (with pane counts and expandable panes)
|
|
255
262
|
- Live pane preview on the right (native panes are fully interactive)
|
|
256
|
-
-
|
|
263
|
+
- Input bar (always visible) and target pane highlight for follow-ups
|
|
257
264
|
|
|
258
265
|
Navigation (always visible):
|
|
259
|
-
- `ctrl+
|
|
266
|
+
- `ctrl+q/ctrl+e` project, `ctrl+w/ctrl+s` session/panes, `alt+w/alt+s` session only, `ctrl+a/ctrl+d` pane, `ctrl+g` help
|
|
260
267
|
|
|
261
268
|
Key bindings (also shown in the help view):
|
|
262
269
|
Keymap overrides are available in the global config (`~/.config/peakypanes/config.yml`).
|
|
263
270
|
|
|
264
271
|
Project
|
|
265
272
|
- `ctrl+o` open project picker (creates session detached; stay in dashboard)
|
|
266
|
-
- `ctrl+b`
|
|
273
|
+
- `ctrl+b` toggle sidebar (show/hide sessions list)
|
|
274
|
+
- `alt+c` close project (hides from tabs; sessions keep running; press k in the dialog to kill)
|
|
267
275
|
|
|
268
276
|
Session
|
|
269
277
|
- `enter` attach/start session (when reply is empty)
|
|
@@ -285,9 +293,9 @@ Pane
|
|
|
285
293
|
|
|
286
294
|
Other
|
|
287
295
|
- `ctrl+p` command palette
|
|
288
|
-
- `ctrl+r` refresh, `ctrl
|
|
296
|
+
- `ctrl+r` refresh, `ctrl+,` edit config, `ctrl+f` filter, `ctrl+c` quit
|
|
289
297
|
|
|
290
|
-
|
|
298
|
+
Input details: the input is always active—type and press `enter` to send to the highlighted pane. Use `esc` to clear. Type `/` to see slash commands and press `tab` to autocomplete. Toggle terminal focus to send raw keystrokes into the pane. Use scrollback (`f7`) to navigate output and copy mode (`f8`) to select/yank (`v` select, `y` yank, `esc/q` exit).
|
|
291
299
|
|
|
292
300
|
### Dashboard Config (optional)
|
|
293
301
|
|
|
@@ -298,21 +306,28 @@ dashboard:
|
|
|
298
306
|
preview_compact: true
|
|
299
307
|
idle_seconds: 20
|
|
300
308
|
preview_mode: grid # grid | layout
|
|
309
|
+
sidebar:
|
|
310
|
+
hidden: false
|
|
301
311
|
attach_behavior: current # current | detached
|
|
312
|
+
pane_navigation_mode: spatial # spatial | memory
|
|
313
|
+
quit_behavior: prompt # prompt | keep | stop
|
|
302
314
|
keymap:
|
|
303
|
-
project_left: ["ctrl+
|
|
304
|
-
project_right: ["ctrl+
|
|
315
|
+
project_left: ["ctrl+q"]
|
|
316
|
+
project_right: ["ctrl+e"]
|
|
305
317
|
session_up: ["ctrl+w"]
|
|
306
318
|
session_down: ["ctrl+s"]
|
|
307
319
|
session_only_up: ["alt+w"]
|
|
308
320
|
session_only_down: ["alt+s"]
|
|
309
|
-
pane_next: ["
|
|
310
|
-
pane_prev: ["
|
|
321
|
+
pane_next: ["ctrl+d"]
|
|
322
|
+
pane_prev: ["ctrl+a"]
|
|
311
323
|
terminal_focus: ["ctrl+\\"]
|
|
312
324
|
scrollback: ["f7"]
|
|
313
325
|
copy_mode: ["f8"]
|
|
314
326
|
toggle_panes: ["ctrl+u"]
|
|
327
|
+
toggle_sidebar: ["ctrl+b"]
|
|
328
|
+
close_project: ["alt+c"]
|
|
315
329
|
command_palette: ["ctrl+p"]
|
|
330
|
+
edit_config: ["ctrl+,"]
|
|
316
331
|
help: ["ctrl+g"]
|
|
317
332
|
quit: ["ctrl+c"]
|
|
318
333
|
status_regex:
|
|
@@ -325,6 +340,8 @@ dashboard:
|
|
|
325
340
|
```
|
|
326
341
|
|
|
327
342
|
`attach_behavior` controls what the “attach/start” action does (default `current`): `current` focuses the selected session in the dashboard, and `detached` creates the session without switching focus.
|
|
343
|
+
`pane_navigation_mode` controls left/right navigation across projects and dashboard columns: `spatial` keeps the same row when moving between projects, and `memory` restores the last selection per project.
|
|
344
|
+
`quit_behavior` controls what happens on quit when panes are still running: `prompt` (default) shows a quit dialog, `keep` exits immediately and leaves sessions running, and `stop` stops the daemon (killing all panes).
|
|
328
345
|
|
|
329
346
|
### Agent Status Detection (Codex & Claude Code)
|
|
330
347
|
|
|
@@ -381,7 +398,7 @@ Manual npm smoke run (fresh HOME/XDG config):
|
|
|
381
398
|
|
|
382
399
|
```bash
|
|
383
400
|
scripts/fresh-run
|
|
384
|
-
scripts/fresh-run 0.0.
|
|
401
|
+
scripts/fresh-run 0.0.6 --with-project
|
|
385
402
|
```
|
|
386
403
|
|
|
387
404
|
GitHub Actions runs gofmt checks, go vet, go test with coverage, and race on Linux.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "peakypanes",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.7",
|
|
4
4
|
"description": "Tmux layout manager with YAML based configuration.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://github.com/regenrek/peakypanes",
|
|
@@ -12,10 +12,10 @@
|
|
|
12
12
|
"peakypanes": "bin/peakypanes.js"
|
|
13
13
|
},
|
|
14
14
|
"optionalDependencies": {
|
|
15
|
-
"peakypanes-darwin-x64": "0.0.
|
|
16
|
-
"peakypanes-darwin-arm64": "0.0.
|
|
17
|
-
"peakypanes-linux-x64": "0.0.
|
|
18
|
-
"peakypanes-linux-arm64": "0.0.
|
|
15
|
+
"peakypanes-darwin-x64": "0.0.7",
|
|
16
|
+
"peakypanes-darwin-arm64": "0.0.7",
|
|
17
|
+
"peakypanes-linux-x64": "0.0.7",
|
|
18
|
+
"peakypanes-linux-arm64": "0.0.7"
|
|
19
19
|
},
|
|
20
20
|
"engines": {
|
|
21
21
|
"node": ">=18"
|