@ebowwa/stack 0.1.0
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 +38 -0
- package/dist/index.js +57684 -0
- package/package.json +51 -0
- package/src/index.ts +467 -0
package/README.md
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# @ebowwa/stack
|
|
2
|
+
|
|
3
|
+
Full-stack daemon orchestrator combining unified-router (cross-channel communication) and node-agent (Ralph orchestration).
|
|
4
|
+
|
|
5
|
+
## Features
|
|
6
|
+
|
|
7
|
+
- **Unified Router**: Cross-channel communication (SSH + Telegram)
|
|
8
|
+
- **Node Agent**: Ralph loop orchestration, worktrees, monitoring
|
|
9
|
+
- **Shared Memory**: Cross-channel context with permission controls
|
|
10
|
+
- **HTTP API**: REST endpoints for management (port 8911)
|
|
11
|
+
|
|
12
|
+
## Installation
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
bun add @ebowwa/stack
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Usage
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
# Start the stack
|
|
22
|
+
bun run @ebowwa/stack
|
|
23
|
+
|
|
24
|
+
# Or via environment
|
|
25
|
+
SSH_CHAT_DIR=/root/.ssh-chat TELEGRAM_BOT_TOKEN=xxx bun run @ebowwa/stack
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## Commands
|
|
29
|
+
|
|
30
|
+
- `/ralph start <prompt>` - Start a Ralph loop
|
|
31
|
+
- `/ralph list` - List running loops
|
|
32
|
+
- `/ralph stop <id>` - Stop a loop
|
|
33
|
+
- `/status` - Node status
|
|
34
|
+
- `/memory <cmd>` - Memory management (grant, revoke, list, clear)
|
|
35
|
+
|
|
36
|
+
## License
|
|
37
|
+
|
|
38
|
+
MIT
|