peakypanes 0.0.21 → 0.0.23
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 +18 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -19,6 +19,15 @@
|
|
|
19
19
|
|
|
20
20
|
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.
|
|
21
21
|
|
|
22
|
+
## Why?
|
|
23
|
+
|
|
24
|
+
Running multiple agents on different projects at the same time takes real organization and
|
|
25
|
+
a different approach to how we do agentic coding.
|
|
26
|
+
|
|
27
|
+
I built Peky to solve my own problems with juggling too many windows and wasting time on setup
|
|
28
|
+
and rebuilding the same environment every time. It lets you build your own reusable
|
|
29
|
+
window layouts and better-organized projects.
|
|
30
|
+
|
|
22
31
|
## Features
|
|
23
32
|
|
|
24
33
|
- 🧠 **AI agent orchestration** - Run Codex/Claude/agents side by side with quick replies, slash commands, and broadcast
|
|
@@ -67,11 +76,13 @@ go install github.com/regenrek/peakypanes/cmd/peky@latest
|
|
|
67
76
|
|
|
68
77
|
### Usage
|
|
69
78
|
|
|
70
|
-
**Start
|
|
79
|
+
**Start peakypanes:**
|
|
71
80
|
```bash
|
|
72
81
|
peky start
|
|
73
82
|
```
|
|
74
83
|
|
|
84
|
+
## Custom Configuraton
|
|
85
|
+
|
|
75
86
|
**Create project-local config (recommended for teams):**
|
|
76
87
|
```bash
|
|
77
88
|
cd your-project
|
|
@@ -113,6 +124,7 @@ layout:
|
|
|
113
124
|
## Dashboard
|
|
114
125
|
|
|
115
126
|
The dashboard shows projects, sessions, live previews, and a quick-reply bar for slash commands and broadcasts.
|
|
127
|
+
When the quick reply input is empty, common terminal keys (Enter/Esc/arrows/tab) are forwarded to the selected pane for interactive prompts.
|
|
116
128
|
See [docs/dashboard.md](docs/dashboard.md) for keybindings, slash command behavior, and dashboard configuration.
|
|
117
129
|
|
|
118
130
|
## CLI
|
|
@@ -145,6 +157,11 @@ See `RELEASE-DOCS.md` for the full release checklist (tests, tag, GoReleaser, np
|
|
|
145
157
|
|
|
146
158
|
MIT
|
|
147
159
|
|
|
160
|
+
## Credits
|
|
161
|
+
|
|
162
|
+
[@pi-mono](https://github.com/badlogic/pi-mono) - Peky Agent is inspired by PI / [Mario Zechner's](https://x.com/badlogicgames) work.
|
|
163
|
+
(Direct pi integration would've been ideal, but 60 MB of Node for agent + sidecar isn't worth it)
|
|
164
|
+
[@charm](https://github.com/charmbracelet) - peaky is using bubbletea and lipgloss
|
|
148
165
|
|
|
149
166
|
## Links
|
|
150
167
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "peakypanes",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.23",
|
|
4
4
|
"description": "Tmux layout manager with YAML based configuration.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://github.com/regenrek/peakypanes",
|
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
"peakypanes": "bin/peakypanes.js"
|
|
14
14
|
},
|
|
15
15
|
"optionalDependencies": {
|
|
16
|
-
"peakypanes-darwin-x64": "0.0.
|
|
17
|
-
"peakypanes-darwin-arm64": "0.0.
|
|
18
|
-
"peakypanes-linux-x64": "0.0.
|
|
19
|
-
"peakypanes-linux-arm64": "0.0.
|
|
16
|
+
"peakypanes-darwin-x64": "0.0.23",
|
|
17
|
+
"peakypanes-darwin-arm64": "0.0.23",
|
|
18
|
+
"peakypanes-linux-x64": "0.0.23",
|
|
19
|
+
"peakypanes-linux-arm64": "0.0.23"
|
|
20
20
|
},
|
|
21
21
|
"engines": {
|
|
22
22
|
"node": ">=18"
|