Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 27 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ Browse the agents below and copy/adapt the ones you need!
./scripts/install.sh --tool windsurf
```

> **Windows users or Python fans**: Alternative cross-platform Python scripts (`python scripts/convert.py` and `python scripts/install.py`) are also available with identical functionality and zero dependencies.

See the [Multi-Tool Integrations](#-multi-tool-integrations) section below for full details.

---
Expand Down Expand Up @@ -505,11 +507,19 @@ The Agency works natively with Claude Code, and ships conversion + install scrip
```bash
./scripts/convert.sh
```
**Or using Python (Windows-compatible):**
```bash
python scripts/convert.py
```

**Step 2 -- Install (interactive, auto-detects your tools):**
```bash
./scripts/install.sh
```
**Or using Python:**
```bash
python scripts/install.py
```

The installer scans your system for installed tools, shows a checkbox UI, and lets you pick exactly what to install:

Expand Down Expand Up @@ -539,15 +549,24 @@ The installer scans your system for installed tools, shows a checkbox UI, and le
```bash
./scripts/install.sh --tool cursor
./scripts/install.sh --tool opencode
./scripts/install.sh --tool openclaw
./scripts/install.sh --tool antigravity
```

**Python equivalent:**
```bash
python scripts/install.py --tool cursor
python scripts/install.py --tool opencode
```

**Non-interactive (CI/scripts):**
```bash
./scripts/install.sh --no-interactive --tool all
```

**Python equivalent:**
```bash
python scripts/install.py --no-interactive --tool all
```

---

### Tool-Specific Instructions
Expand Down Expand Up @@ -742,6 +761,12 @@ When you add new agents or edit existing ones, regenerate all integration files:
./scripts/convert.sh --tool cursor # regenerate just one tool
```

**Or using Python:**
```bash
python scripts/convert.py
python scripts/convert.py --tool cursor
```

---

## 🗺️ Roadmap
Expand Down
Loading