peakypanes 0.0.2 → 0.0.3
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 +21 -3
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -243,9 +243,10 @@ The dashboard shows:
|
|
|
243
243
|
- Quick reply bar (always visible) and target pane highlight for follow-ups
|
|
244
244
|
|
|
245
245
|
Navigation (always visible):
|
|
246
|
-
- `ctrl+
|
|
246
|
+
- `ctrl+a/ctrl+d` project, `ctrl+w/ctrl+s` session, `tab/⇧tab` pane (across windows), `ctrl+g` help
|
|
247
247
|
|
|
248
248
|
Key bindings (also shown in the help view):
|
|
249
|
+
Keymap overrides are available in the global config (`~/.config/peakypanes/config.yml`).
|
|
249
250
|
|
|
250
251
|
Project
|
|
251
252
|
- `ctrl+o` open project picker (creates session detached; stay in dashboard)
|
|
@@ -259,15 +260,18 @@ Session
|
|
|
259
260
|
- rename session via command palette (`ctrl+p`)
|
|
260
261
|
|
|
261
262
|
Window
|
|
262
|
-
- `ctrl+
|
|
263
|
+
- `ctrl+u` toggle window list
|
|
263
264
|
- rename window via command palette (`ctrl+p`)
|
|
264
265
|
|
|
266
|
+
Pane
|
|
267
|
+
- rename pane via command palette (`ctrl+p`)
|
|
268
|
+
|
|
265
269
|
Tmux (inside session)
|
|
266
270
|
- `prefix+g` open dashboard popup (tmux prefix is yours)
|
|
267
271
|
|
|
268
272
|
Other
|
|
269
273
|
- `ctrl+p` command palette
|
|
270
|
-
- `ctrl+r` refresh, `ctrl+e` edit config, `ctrl+f` filter, `ctrl+
|
|
274
|
+
- `ctrl+r` refresh, `ctrl+e` edit config, `ctrl+f` filter, `ctrl+c` quit
|
|
271
275
|
|
|
272
276
|
Quick reply details: the input is always active—type and press `enter` to send to the highlighted pane. Use `esc` to clear. `tab/⇧tab` still cycles panes while the input is focused.
|
|
273
277
|
|
|
@@ -282,6 +286,18 @@ dashboard:
|
|
|
282
286
|
idle_seconds: 20
|
|
283
287
|
show_thumbnails: true
|
|
284
288
|
preview_mode: grid # grid | layout
|
|
289
|
+
attach_behavior: new_terminal # current | new_terminal | detached
|
|
290
|
+
keymap:
|
|
291
|
+
project_left: ["ctrl+a"]
|
|
292
|
+
project_right: ["ctrl+d"]
|
|
293
|
+
session_up: ["ctrl+w"]
|
|
294
|
+
session_down: ["ctrl+s"]
|
|
295
|
+
pane_next: ["tab"]
|
|
296
|
+
pane_prev: ["shift+tab"]
|
|
297
|
+
toggle_windows: ["ctrl+u"]
|
|
298
|
+
command_palette: ["ctrl+p"]
|
|
299
|
+
help: ["ctrl+g"]
|
|
300
|
+
quit: ["ctrl+c"]
|
|
285
301
|
status_regex:
|
|
286
302
|
success: "(?i)done|finished|success|completed|✅"
|
|
287
303
|
error: "(?i)error|failed|panic|❌"
|
|
@@ -291,6 +307,8 @@ dashboard:
|
|
|
291
307
|
claude: true
|
|
292
308
|
```
|
|
293
309
|
|
|
310
|
+
`attach_behavior` controls what the “attach/start” action does (default `new_terminal`): `current` switches the terminal running PeakyPanes into the session, `new_terminal` opens a fresh terminal to attach, and `detached` only creates the session.
|
|
311
|
+
|
|
294
312
|
### Agent Status Detection (Codex & Claude Code)
|
|
295
313
|
|
|
296
314
|
PeakyPanes can read per-pane JSON state files to show accurate running/idle/done status for Codex CLI and Claude Code TUI sessions. This is **on by default** and falls back to regex/idle detection if no state file is present. You can disable it via `dashboard.agent_detection`.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "peakypanes",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
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.3",
|
|
16
|
+
"peakypanes-darwin-arm64": "0.0.3",
|
|
17
|
+
"peakypanes-linux-x64": "0.0.3",
|
|
18
|
+
"peakypanes-linux-arm64": "0.0.3"
|
|
19
19
|
},
|
|
20
20
|
"engines": {
|
|
21
21
|
"node": ">=18"
|