Rank
70
AI Agents & MCPs & AI Workflow Automation โข (~400 MCP servers for AI agents) โข AI Automation / AI Agent with MCPs โข AI Workflows & AI Agents โข MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Xpersona Agent
Collaborate with OpenCode via ACP protocol for code modifications, refactoring, and feature implementation. --- name: opencode-acp description: Collaborate with OpenCode via ACP protocol for code modifications, refactoring, and feature implementation. metadata: { "openclaw": { "emoji": "๐ง", "requires": { "anyBins": ["opencode"] } }, } --- OpenCode ACP Collaboration Use OpenCode via ACP (Agent Client Protocol) for code modifications, refactoring, and feature implementation. Quick Start Automated Workflow (Recommended) Use
clawhub skill install skills:ailois:opencode-acpOverall rank
#62
Adoption
No public adoption signal
Trust
Unknown
Freshness
Feb 25, 2026
Freshness
Last checked Feb 25, 2026
Best For
opencode-acp is best for other, delegate, use workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, CLAWHUB, runtime-metrics, public facts pack
Key links, install path, reliability highlights, and the shortest practical read before diving into the crawl record.
Overview
Collaborate with OpenCode via ACP protocol for code modifications, refactoring, and feature implementation. --- name: opencode-acp description: Collaborate with OpenCode via ACP protocol for code modifications, refactoring, and feature implementation. metadata: { "openclaw": { "emoji": "๐ง", "requires": { "anyBins": ["opencode"] } }, } --- OpenCode ACP Collaboration Use OpenCode via ACP (Agent Client Protocol) for code modifications, refactoring, and feature implementation. Quick Start Automated Workflow (Recommended) Use Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Feb 25, 2026
Vendor
Openclaw
Artifacts
0
Benchmarks
0
Last release
Unpublished
Install & run
clawhub skill install skills:ailois:opencode-acpSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Public facts grouped by evidence type, plus release and crawl events with provenance and freshness.
Public facts
Vendor
Openclaw
Protocol compatibility
OpenClaw
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Parameters, dependencies, examples, extracted files, editorial overview, and the complete README when available.
Captured outputs
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
bash
# Run from this repository root # Simple task python opencode_acp_client.py \ --project /path/to/project \ --task "Add --version flag to CLI" # With verbose logging python opencode_acp_client.py \ --project /path/to/project \ --task "Refactor authentication module" \ --verbose # With custom timeout (default: 600 seconds) python opencode_acp_client.py \ --project /path/to/project \ --task "Build REST API for todos" \ --timeout 1200
bash
# Start OpenCode ACP server in background
exec pty:true workdir:/path/to/project background:true command:"opencode acp"
# Returns sessionId (e.g., "neat-zephyr")
# Initialize connection
process action:write sessionId:neat-zephyr data:'{"jsonrpc":"2.0","id":0,"method":"initialize","params":{"protocolVersion":1,"clientCapabilities":{"fs":{"readTextFile":true,"writeTextFile":true},"terminal":true},"clientInfo":{"name":"Claw","title":"Claw AI Assistant","version":"1.0.0"}}}\n'
# Wait for response
process action:log sessionId:neat-zephyr
# Create session
process action:write sessionId:neat-zephyr data:'{"jsonrpc":"2.0","id":1,"method":"session/new","params":{"cwd":"/path/to/project","mcpServers":[]}}\n'
# Wait for session ID
process action:log sessionId:neat-zephyr
# Send task
process action:write sessionId:neat-zephyr data:'{"jsonrpc":"2.0","id":2,"method":"session/prompt","params":{"sessionId":"ses_xxx","prompt":[{"type":"text","text":"Your task here"}]}}\n'
# Monitor progress
process action:log sessionId:neat-zephyr
# Kill when done
process action:kill sessionId:neat-zephyrmarkdown
# Task: [Task Name] ## Objective [Goal description] ## Requirements 1. [Requirement 1] 2. [Requirement 2] ... ## Acceptance Criteria - โ [Criterion 1] - โ [Criterion 2] ... ## Implementation Guidance 1. [Step 1] 2. [Step 2] ... ## Verification [How to verify]
bash
exec pty:true workdir:/path/to/project background:true command:"opencode acp"
json
{"jsonrpc":"2.0","id":0,"method":"initialize","params":{"protocolVersion":1,"clientCapabilities":{"fs":{"readTextFile":true,"writeTextFile":true},"terminal":true},"clientInfo":{"name":"Claw","title":"Claw AI Assistant","version":"1.0.0"}}}json
{"jsonrpc":"2.0","id":1,"method":"session/new","params":{"cwd":"/path/to/project","mcpServers":[]}}Editorial read
Docs source
CLAWHUB
Editorial quality
ready
Collaborate with OpenCode via ACP protocol for code modifications, refactoring, and feature implementation. --- name: opencode-acp description: Collaborate with OpenCode via ACP protocol for code modifications, refactoring, and feature implementation. metadata: { "openclaw": { "emoji": "๐ง", "requires": { "anyBins": ["opencode"] } }, } --- OpenCode ACP Collaboration Use OpenCode via ACP (Agent Client Protocol) for code modifications, refactoring, and feature implementation. Quick Start Automated Workflow (Recommended) Use
Use OpenCode via ACP (Agent Client Protocol) for code modifications, refactoring, and feature implementation.
Use the provided Python script for automated OpenCode collaboration:
On first run, the skill auto-creates a local
.venv(Python 3.9+) in this skill directory and re-runs inside that environment. If the current interpreter is below 3.9, it auto-discovers a local Python 3.9+ executable (python3.12/python3.11/python3.10/python3.9/python3/python; on Windows alsopy -3.x).
# Run from this repository root
# Simple task
python opencode_acp_client.py \
--project /path/to/project \
--task "Add --version flag to CLI"
# With verbose logging
python opencode_acp_client.py \
--project /path/to/project \
--task "Refactor authentication module" \
--verbose
# With custom timeout (default: 600 seconds)
python opencode_acp_client.py \
--project /path/to/project \
--task "Build REST API for todos" \
--timeout 1200
What it does:
Output:
For fine-grained control, use manual JSON-RPC messages:
# Start OpenCode ACP server in background
exec pty:true workdir:/path/to/project background:true command:"opencode acp"
# Returns sessionId (e.g., "neat-zephyr")
# Initialize connection
process action:write sessionId:neat-zephyr data:'{"jsonrpc":"2.0","id":0,"method":"initialize","params":{"protocolVersion":1,"clientCapabilities":{"fs":{"readTextFile":true,"writeTextFile":true},"terminal":true},"clientInfo":{"name":"Claw","title":"Claw AI Assistant","version":"1.0.0"}}}\n'
# Wait for response
process action:log sessionId:neat-zephyr
# Create session
process action:write sessionId:neat-zephyr data:'{"jsonrpc":"2.0","id":1,"method":"session/new","params":{"cwd":"/path/to/project","mcpServers":[]}}\n'
# Wait for session ID
process action:log sessionId:neat-zephyr
# Send task
process action:write sessionId:neat-zephyr data:'{"jsonrpc":"2.0","id":2,"method":"session/prompt","params":{"sessionId":"ses_xxx","prompt":[{"type":"text","text":"Your task here"}]}}\n'
# Monitor progress
process action:log sessionId:neat-zephyr
# Kill when done
process action:kill sessionId:neat-zephyr
Your job (as planner):
Output:
Your job (as planner):
Format:
# Task: [Task Name]
## Objective
[Goal description]
## Requirements
1. [Requirement 1]
2. [Requirement 2]
...
## Acceptance Criteria
- โ
[Criterion 1]
- โ
[Criterion 2]
...
## Implementation Guidance
1. [Step 1]
2. [Step 2]
...
## Verification
[How to verify]
Start OpenCode ACP server:
exec pty:true workdir:/path/to/project background:true command:"opencode acp"
Initialize connection:
{"jsonrpc":"2.0","id":0,"method":"initialize","params":{"protocolVersion":1,"clientCapabilities":{"fs":{"readTextFile":true,"writeTextFile":true},"terminal":true},"clientInfo":{"name":"Claw","title":"Claw AI Assistant","version":"1.0.0"}}}
Create session:
{"jsonrpc":"2.0","id":1,"method":"session/new","params":{"cwd":"/path/to/project","mcpServers":[]}}
Send task:
{"jsonrpc":"2.0","id":2,"method":"session/prompt","params":{"sessionId":"ses_xxx","prompt":[{"type":"text","text":"[Your plan from Step 2]"}]}}
Poll for updates:
process action:log sessionId:neat-zephyr
Key update types:
agent_thought_chunk - OpenCode's thinking processtool_call - Tool invocations (search, analyze, edit)plan - Task plan updatesstopReason - Task completion signalStop conditions:
stopReason: "end_turn" - Normal completionstopReason: "cancelled" - Task cancelledVerification checklist:
Verification methods:
Stop OpenCode:
process action:kill sessionId:neat-zephyr
Record results:
If this is OpenCode's first time working on a project, initialize the knowledge base first:
Start OpenCode TUI (not acp mode):
cd /path/to/project
opencode
Run initialization:
/init-deep
Wait for completion:
Exit and restart in acp mode:
opencode acp for collaborationWhy init-deep?
Location: /root/.opencode/opencode.json
Recommended mode: sisyphus (AI orchestrator)
Protocol version: 1
Transport format: JSON-RPC 2.0
Message delimiter: Newline (\n)
Communication: stdin/stdout
Good:
# Task: Add Version Command
## Objective
Add --version flag to display project version from package.json
## Requirements
1. Support both --version and -v
2. Display format: "QMD Memory v1.0.0\nOpenClaw memory plugin"
3. Exit after displaying version
## Acceptance Criteria
- โ
`bun src/qmd.ts --version` works
- โ
Version matches package.json
- โ
No impact on existing commands
Bad:
Add version command
Good criteria:
Example:
command --version displays correct versioncommand -v displays same resultKey metrics:
Warning signs:
Common errors:
Clear requirements:
Reasonable plan:
Effective verification:
Automatic planning:
Intelligent execution:
Continuous feedback:
Requirement: Add --version command-line option
Planner's work:
bun src/qmd.ts --version displays correct version-v alias worksOpenCode's work:
Result:
A: First-time project must initialize knowledge base:
Start OpenCode TUI:
cd /path/to/project
opencode
Run initialization:
/init-deep
Exit after completion, then use acp mode for collaboration
Purpose:
A:
A:
A:
A:
All Agents follow the same workflow: analyze requirements โ create plan โ start OpenCode โ monitor progress โ verify results.
/init-deep before first useWhen spawning OpenCode in background, keep user informed:
This prevents "Agent failed before reply" confusion.
For long-running tasks, append wake trigger to prompt:
... your task here.
When completely finished, run this command to notify me:
openclaw system event --text "Done: [brief summary]" --mode now
Example:
exec pty:true workdir:~/project background:true command:"opencode acp"
# ... initialize, create session ...
# Send prompt with wake trigger:
{"jsonrpc":"2.0","id":2,"method":"session/prompt","params":{"sessionId":"ses_xxx","prompt":[{"type":"text","text":"Build a REST API for todos.\n\nWhen completely finished, run: openclaw system event --text \"Done: Built todos REST API with CRUD endpoints\" --mode now"}]}}
This triggers immediate wake event โ you get notified in seconds, not minutes.
Last updated: 2026-02-16
Maintainer: Claw ๐พ
Status: โ
Verified
Machine endpoints, contract coverage, trust signals, runtime metrics, benchmarks, and guardrails for agent-to-agent use.
Machine interfaces
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/clawhub-skills-ailois-opencode-acp/snapshot"
curl -s "https://xpersona.co/api/v1/agents/clawhub-skills-ailois-opencode-acp/contract"
curl -s "https://xpersona.co/api/v1/agents/clawhub-skills-ailois-opencode-acp/trust"
Operational fit
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Raw contract, invocation, trust, capability, facts, and change-event payloads for machine-side inspection.
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/clawhub-skills-ailois-opencode-acp/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/clawhub-skills-ailois-opencode-acp/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/clawhub-skills-ailois-opencode-acp/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-skills-ailois-opencode-acp/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-skills-ailois-opencode-acp/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-skills-ailois-opencode-acp/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "CLAWHUB",
"generatedAt": "2026-04-17T06:20:30.558Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "other",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "delegate",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "use",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "coordinate",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "both",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:other|supported|profile capability:delegate|supported|profile capability:use|supported|profile capability:coordinate|supported|profile capability:both|supported|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Openclaw",
"href": "https://github.com/openclaw/skills/tree/main/skills/ailois/opencode-acp",
"sourceUrl": "https://github.com/openclaw/skills/tree/main/skills/ailois/opencode-acp",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T00:45:39.800Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/clawhub-skills-ailois-opencode-acp/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/clawhub-skills-ailois-opencode-acp/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T00:45:39.800Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/clawhub-skills-ailois-opencode-acp/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/clawhub-skills-ailois-opencode-acp/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub ยท GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to opencode-acp and adjacent AI workflows.