Link to OpenClaw
Register a pulled agent as a permanent agent in your OpenClaw setup.
Link
clawpack link ./agent-directoryThis:
- Reads the manifest
- Registers the agent in OpenClaw's config
- Sets up auth (if provided)
- Runs a health check
- The agent is now available on all your channels
Options
# Custom agent name
clawpack link ./my-agent --name production-bot
# Set up auth during linking
clawpack link ./my-agent --provider anthropic --api-key sk-ant-...
# Set a specific model
clawpack link ./my-agent --model opus
# Skip the health check
clawpack link ./my-agent --skip-health-checkUnlink
Remove an agent from OpenClaw (keeps the workspace files):
clawpack unlink agent-nameShortcut: Pull + Link
clawpack pull owner/agent-name --link --provider anthropic --api-key sk-ant-...