aegis-bridge 2.15.5 → 2.15.6
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 +11 -0
- package/dashboard/dist/assets/index-DwNEgfI3.js +312 -0
- package/dashboard/dist/index.html +1 -1
- package/dist/api-contracts.d.ts +1 -0
- package/dist/cli.js +26 -0
- package/dist/mcp-server.d.ts +1 -0
- package/dist/server.js +2 -1
- package/dist/tmux.js +42 -15
- package/package.json +1 -1
- package/dashboard/dist/assets/index-CciP6qc9.js +0 -312
package/README.md
CHANGED
|
@@ -39,6 +39,17 @@ curl -X POST http://localhost:9100/v1/sessions/abc123/send \
|
|
|
39
39
|
|
|
40
40
|
> **Prerequisites:** [tmux](https://github.com/tmux/tmux) and [Claude Code CLI](https://docs.anthropic.com/en/docs/claude-code).
|
|
41
41
|
|
|
42
|
+
### Windows Setup
|
|
43
|
+
|
|
44
|
+
On Windows, use psmux as the tmux-compatible backend before starting Aegis.
|
|
45
|
+
|
|
46
|
+
```powershell
|
|
47
|
+
choco install psmux -y
|
|
48
|
+
npx aegis-bridge
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
For full setup, verification, and troubleshooting, see [Windows Setup](docs/windows-setup.md).
|
|
52
|
+
|
|
42
53
|
Need a full walkthrough from install to first session? See [Getting Started](docs/getting-started.md).
|
|
43
54
|
|
|
44
55
|
---
|