ide-agent-kitlisted
Install: claude install-skill ThinkOffApp/ide-agent-kit
# IDE Agent Kit
Connect your IDE coding agents into real-time teams through OpenClaw. Filesystem-based message bus, room polling, automation rules, and multi-model agent coordination. Zero dependencies.
## Security Model
This skill operates in two tiers:
**Core (local-only, no credentials needed):**
- Local filesystem queue and receipt log — agents read/write files in the working directory
- `init`, `receipt tail`, `memory` (local backend), `keepalive` — no network, no secrets
- `serve` binds to `127.0.0.1` only by default — receives webhooks, writes to local queue
**Advanced (requires explicit opt-in and credentials):**
- `sessions`, `gateway` — talk to an OpenClaw gateway (requires `openclaw.token` in config)
- `poll` — connects to Ant Farm rooms (requires `--api-key` flag)
- `emit`, `hooks create` — POST data to external URLs you specify
- `tmux run`, `exec` — execute shell commands (restricted to an allowlist in config)
No advanced features activate without explicit configuration. The default `init` config has empty credential fields and a minimal command allowlist.
### Network behavior
| Command | Outbound connections | Inbound connections |
|---------|---------------------|---------------------|
| `init`, `receipt tail`, `memory` (local), `keepalive` | None | None |
| `serve` | None | localhost:8787 only (configurable) |
| `poll` | Ant Farm API (HTTPS) | None |
| `sessions`, `gateway` | OpenClaw gateway (localhost by default) | None |
| `emit` | User-specified U