docs: add Step 0 provisioning to BOOTSTRAP.md and update README.md with curl installer

This commit is contained in:
2026-06-28 09:34:52 +09:00
parent dd9500a271
commit 81474ac3f7
3 changed files with 72 additions and 18 deletions
+18
View File
@@ -14,6 +14,24 @@ Modern agentic workflows often suffer from session timeout, lack of process isol
3. **Multi-Agent Mux (MAM):** Combining local file-based locks (fcntl) and an ACID-compliant SQLite WAL database (`.mam/agent-sessions.db`) to manage concurrent job claims and track running agent sessions without drift.
4. **Automated Review & Quality Loop:** Implementing parallel reviewer loops where worker agents must receive a `PASS` rating from various specialized verification agents (e.g., Claude for high-level logic, Hermes for shell syntax/safety) before merging code.
---
## 📦 Installation & Setup
You can bootstrap the Multi-Agent Mux (MAM) framework in any workspace directory with a single command:
```bash
curl -fsSL https://git.godopu.com/tmpl/multi-agent-mux/raw/branch/main/deploy/install.sh | bash
```
Alternatively, if you have already cloned the repository locally, run the installer directly:
```bash
bash deploy/install.sh
```
The idempotent installer automatically validates system dependencies (tmux, python3, and PyYAML), creates the python virtual environment (`.venv`), installs dependencies, copies `.env.example` as `.env`, and initializes the `.agents/` scaffolding.
---
## 🛠️ Core Skills & Scaffolding