The dedicated OpenClaw plugin for Claude Code — more powerful than the built-in ACP integration. https://github.com/goldmar/openclaw-code-agent (dropping open source soon)
| Feature | Built-in ACP | openclaw-code-agent |
| #!/usr/bin/env bash | |
| # deploy-code-agent.sh — Build and deploy openclaw-code-agent to the running gateway | |
| # Usage: bin/deploy-code-agent.sh [--restart] | |
| # Lives in workspace/bin so it's outside the plugin repo. | |
| set -euo pipefail | |
| PLUGIN_SRC="$HOME/workspace/openclaw-code-agent" | |
| PLUGIN_DEST="$HOME/.openclaw/extensions/openclaw-code-agent" | |
| RESTART=false |
The dedicated OpenClaw plugin for Claude Code — more powerful than the built-in ACP integration. https://github.com/goldmar/openclaw-code-agent (dropping open source soon)
| Feature | Built-in ACP | openclaw-code-agent |
| # Remove old data | |
| curl -XDELETE "http://localhost:9200/testindex" | |
| # Create index with mapping | |
| curl -XPOST "http://localhost:9200/testindex/" -d ' | |
| { | |
| "mappings" : { | |
| "testtype" : { | |
| "properties" : { | |
| "available_for_client" : { |