docs: clarify scoped installs and openclaw setup

This commit is contained in:
Yimikami
2026-03-11 16:48:26 +03:00
parent 927d0ee42b
commit ca1fa75a23
3 changed files with 21 additions and 7 deletions

View File

@@ -21,18 +21,18 @@ supported agentic coding tools.
# Install for all detected tools automatically
./scripts/install.sh
# Install for a specific tool
# Install a specific home-scoped tool
./scripts/install.sh --tool antigravity
./scripts/install.sh --tool gemini-cli
./scripts/install.sh --tool copilot
./scripts/install.sh --tool opencode
./scripts/install.sh --tool openclaw
./scripts/install.sh --tool cursor
./scripts/install.sh --tool aider
./scripts/install.sh --tool windsurf
./scripts/install.sh --tool claude-code
```
For project-scoped tools such as OpenCode, Cursor, Aider, and Windsurf, run
the installer from your target project root as shown in the tool-specific
sections below.
## Regenerating Integration Files
If you add or modify agents, regenerate all integration files:
@@ -114,6 +114,14 @@ See [opencode/README.md](opencode/README.md) for details.
Each agent becomes an OpenClaw workspace containing `SOUL.md`, `AGENTS.md`,
and `IDENTITY.md`.
Before installing, generate the OpenClaw workspaces:
```bash
./scripts/convert.sh --tool openclaw
```
Then install them:
```bash
./scripts/install.sh --tool openclaw
```