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 # Install for all detected tools automatically
./scripts/install.sh ./scripts/install.sh
# Install for a specific tool # Install a specific home-scoped tool
./scripts/install.sh --tool antigravity ./scripts/install.sh --tool antigravity
./scripts/install.sh --tool gemini-cli ./scripts/install.sh --tool gemini-cli
./scripts/install.sh --tool copilot ./scripts/install.sh --tool copilot
./scripts/install.sh --tool opencode
./scripts/install.sh --tool openclaw ./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 ./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 ## Regenerating Integration Files
If you add or modify agents, regenerate all 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`, Each agent becomes an OpenClaw workspace containing `SOUL.md`, `AGENTS.md`,
and `IDENTITY.md`. and `IDENTITY.md`.
Before installing, generate the OpenClaw workspaces:
```bash
./scripts/convert.sh --tool openclaw
```
Then install them:
```bash ```bash
./scripts/install.sh --tool openclaw ./scripts/install.sh --tool openclaw
``` ```

View File

@@ -1,7 +1,7 @@
# GitHub Copilot Integration # GitHub Copilot Integration
The Agency works natively with GitHub Copilot. No conversion needed — agents work The Agency works with GitHub Copilot out of the box. No conversion needed —
natively with the existing `.md` + YAML frontmatter format. agents use the existing `.md` + YAML frontmatter format.
## Install ## Install

View File

@@ -5,6 +5,12 @@ and `IDENTITY.md` files. The installer copies each workspace into
`~/.openclaw/agency-agents/` and registers it when the `openclaw` CLI is `~/.openclaw/agency-agents/` and registers it when the `openclaw` CLI is
available. available.
Before installing, generate the OpenClaw workspaces:
```bash
./scripts/convert.sh --tool openclaw
```
## Install ## Install
```bash ```bash