Control WezTerm panes - list panes, send commands to Pi agents, monitor their status. Use when coordinating multiple terminal sessions or coding agents.
Scanned 2/12/2026
Install via CLI
openskills install louis030195/bigbrother---
name: wezterm-orchestrator
description: Control WezTerm panes - list panes, send commands to Pi agents, monitor their status. Use when coordinating multiple terminal sessions or coding agents.
---
# WezTerm Orchestrator
Control multiple WezTerm panes and Pi agents programmatically.
## List Panes
```bash
bb wezterm list
```
Quick summary:
```bash
bb wezterm list | jq -r '.data[] | "\(.pane_id): \(.title) - \(.cwd | sub("file://"; ""))"'
```
## Send to a Pane
```bash
bb wezterm send <pane_id> "your prompt here"
```
Without pressing enter:
```bash
bb wezterm send <pane_id> "partial" --no-enter
```
## Focus a Pane
```bash
bb wezterm focus <pane_id>
```
## Find Pi Agent Panes
```bash
bb wezterm list | jq -r '.data[] | select(.title | contains("π")) | {pane_id, title, cwd}'
```
## Broadcast to All Pi Agents
```bash
for id in $(bb wezterm list | jq -r '.data[] | select(.title | contains("π")) | .pane_id'); do
echo "Sending to pane $id..."
bb wezterm send $id "check for compilation errors and fix them"
sleep 2
done
```
## Common Workflows
### Parallel task assignment
```bash
bb wezterm send 0 "implement the backend API for user auth"
bb wezterm send 1 "create the frontend login form"
```
### Sequential with dependency
```bash
bb wezterm send 0 "run the tests"
# Wait for completion, then:
bb wezterm send 1 "review the test results and fix failures"
```
### Code review pattern
```bash
bb wezterm send 0 "implement feature X"
# After completion:
bb wezterm send 3 "review the changes in the last commit, suggest improvements"
```
## Notes
- Pane IDs are stable within a WezTerm session
- Always list panes first to get current IDs
- Add `sleep 2` between broadcasts to avoid overwhelming agents
- Use `/skill:pi-session-reader` to check agent progress
- **If commands fail**: User may be in another app. Wait for them to return to WezTerm, or use `/skill:agent-monitor` which can check sessions without WezTerm access
No comments yet. Be the first to comment!
Playbook for creating and editing uCoz landing pages via MCP tools (`templates_tool`, `ftp_tool`, `modules_tool`). Use for tasks such as: "build a landing page", "update the homepage as a landing page", "create a promo page on the homepage", "add a lead form / menu / SEO to the homepage". Homepage: `page_list`, `page_get`; first publish — `page_update` with full `page_tmpl`; HTML edits after generation — `patch_template` (module_id=2, template_id=1), not `update_template`. Activate the mail f...