@devo-bmad-custom/agent-orchestration 1.0.19 → 1.0.20
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/package.json
CHANGED
|
@@ -118,6 +118,7 @@ Tell Claude to "set up my tmux config" and it will:
|
|
|
118
118
|
| `sudo apt-get install -y wl-clipboard` | Wayland clipboard access for `Alt+V` paste (`wl-paste`) |
|
|
119
119
|
| `sudo apt-get install -y imagemagick` | BMP/JPEG/WEBP → PNG conversion for `Alt+V` paste |
|
|
120
120
|
| `sudo apt-get install -y wslu` | Provides `wslview` — required for tmux-open URL opening in WSL2 |
|
|
121
|
+
| Install gsudo on Windows (see below) | Allows WSL to run elevated PowerShell commands |
|
|
121
122
|
| Press `Ctrl+B I` inside tmux after first launch | TPM plugin install — requires interactive session |
|
|
122
123
|
|
|
123
124
|
After installing `wslu`, create the `xdg-open` shim (no sudo):
|
|
@@ -126,6 +127,14 @@ ln -sf /usr/bin/wslview ~/.local/bin/xdg-open
|
|
|
126
127
|
```
|
|
127
128
|
This is needed because `tmux-open` hard-codes a check for `xdg-open` and errors if not found.
|
|
128
129
|
|
|
130
|
+
**gsudo (Windows sudo):** Required for any WSL script that needs to run elevated PowerShell. Install on the Windows side:
|
|
131
|
+
```powershell
|
|
132
|
+
winget install gerardog.gsudo
|
|
133
|
+
# or via Scoop:
|
|
134
|
+
scoop install gsudo
|
|
135
|
+
```
|
|
136
|
+
The installer automatically creates a WSL shim at `~/.local/bin/gsudo` that delegates to the Windows binary. If gsudo is not installed when the installer runs, you'll see a warning — install it then re-run the installer to create the shim.
|
|
137
|
+
|
|
129
138
|
---
|
|
130
139
|
|
|
131
140
|
## Full `~/.tmux.conf`
|