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
Crawler Summary
Spawn Shelley sessions programmatically - create conversations, send prompts, and get results from the Shelley coding agent. --- name: shelley-agent description: Spawn Shelley sessions programmatically - create conversations, send prompts, and get results from the Shelley coding agent. homepage: https://exe.dev metadata: {"clawdbot":{"emoji":"🐚"}} --- shelley-agent Invoke Shelley (the coding agent on this VM) programmatically. Create new chat sessions, send prompts, wait for completion, and retrieve results. Overview Shelley is the coding Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.
Freshness
Last checked 4/15/2026
Best For
shelley-agent is best for poll workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack
Spawn Shelley sessions programmatically - create conversations, send prompts, and get results from the Shelley coding agent. --- name: shelley-agent description: Spawn Shelley sessions programmatically - create conversations, send prompts, and get results from the Shelley coding agent. homepage: https://exe.dev metadata: {"clawdbot":{"emoji":"🐚"}} --- shelley-agent Invoke Shelley (the coding agent on this VM) programmatically. Create new chat sessions, send prompts, wait for completion, and retrieve results. Overview Shelley is the coding
Public facts
3
Change events
0
Artifacts
0
Freshness
Apr 15, 2026
Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Apr 15, 2026
Vendor
Exe
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.
Setup snapshot
git clone https://github.com/sthalatech/clawdbot-shelley-skill.gitSetup 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.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Exe
Protocol compatibility
OpenClaw
Handshake status
UNKNOWN
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
text
X-Exedev-Userid: <user-id> X-Shelley-Request: 1
bash
curl -X POST \ -H "X-Exedev-Userid: clawdbot" \ -H "X-Shelley-Request: 1" \ -H "Content-Type: application/json" \
bash
# Start a new conversation and send initial prompt
curl -X POST \
-H "X-Exedev-Userid: clawdbot" \
-H "X-Shelley-Request: 1" \
-H "Content-Type: application/json" \
"http://localhost:9999/api/conversations/new" \
-d '{
"message": "Create a hello world Python script",
"cwd": "/home/exedev"
}'
# Response:
# {"conversation_id": "cXXXXXXX", "status": "accepted"}bash
curl -H "X-Exedev-Userid: clawdbot" \ -H "X-Shelley-Request: 1" \
bash
# Poll to check if agent is still working
curl -H "X-Exedev-Userid: clawdbot" \
-H "X-Shelley-Request: 1" \
"http://localhost:9999/api/conversation/{conversation_id}" | jq '.agent_working'
# Returns: true (still working) or false (done)bash
curl -H "X-Exedev-Userid: clawdbot" \ -H "X-Shelley-Request: 1" \
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Spawn Shelley sessions programmatically - create conversations, send prompts, and get results from the Shelley coding agent. --- name: shelley-agent description: Spawn Shelley sessions programmatically - create conversations, send prompts, and get results from the Shelley coding agent. homepage: https://exe.dev metadata: {"clawdbot":{"emoji":"🐚"}} --- shelley-agent Invoke Shelley (the coding agent on this VM) programmatically. Create new chat sessions, send prompts, wait for completion, and retrieve results. Overview Shelley is the coding
Invoke Shelley (the coding agent on this VM) programmatically. Create new chat sessions, send prompts, wait for completion, and retrieve results.
Shelley is the coding agent running on this exe.dev VM at port 9999. This skill allows Clawdbot to:
Shelley exposes a REST API at http://localhost:9999/api/
All requests require these headers:
X-Exedev-Userid: <user-id>
X-Shelley-Request: 1
# Start a new conversation and send initial prompt
curl -X POST \
-H "X-Exedev-Userid: clawdbot" \
-H "X-Shelley-Request: 1" \
-H "Content-Type: application/json" \
"http://localhost:9999/api/conversations/new" \
-d '{
"message": "Create a hello world Python script",
"cwd": "/home/exedev"
}'
# Response:
# {"conversation_id": "cXXXXXXX", "status": "accepted"}
# Poll to check if agent is still working
curl -H "X-Exedev-Userid: clawdbot" \
-H "X-Shelley-Request: 1" \
"http://localhost:9999/api/conversation/{conversation_id}" | jq '.agent_working'
# Returns: true (still working) or false (done)
# Get full conversation with all messages
curl -H "X-Exedev-Userid: clawdbot" \
-H "X-Shelley-Request: 1" \
"http://localhost:9999/api/conversation/{conversation_id}" | jq '{
status: .agent_working,
slug: .conversation.slug,
messages: [.messages[] | {type, id: .message_id}]
}'
# Continue an existing conversation
curl -X POST \
-H "X-Exedev-Userid: clawdbot" \
-H "X-Shelley-Request: 1" \
-H "Content-Type: application/json" \
"http://localhost:9999/api/conversation/{conversation_id}/chat" \
-d '{"message": "Now add error handling"}'
# Get real-time updates via Server-Sent Events
curl -H "X-Exedev-Userid: clawdbot" \
-H "X-Shelley-Request: 1" \
"http://localhost:9999/api/conversation/{conversation_id}/stream"
curl -X POST \
-H "X-Exedev-Userid: clawdbot" \
-H "X-Shelley-Request: 1" \
"http://localhost:9999/api/conversation/{conversation_id}/cancel"
curl -H "X-Exedev-Userid: clawdbot" \
-H "X-Shelley-Request: 1" \
"http://localhost:9999/api/conversations" | jq '.[:5]'
curl -H "X-Exedev-Userid: clawdbot" \
-H "X-Shelley-Request: 1" \
"http://localhost:9999/api/conversation-by-slug/{slug}"
# Archive
curl -X POST \
-H "X-Exedev-Userid: clawdbot" \
-H "X-Shelley-Request: 1" \
"http://localhost:9999/api/conversation/{conversation_id}/archive"
# Unarchive
curl -X POST \
-H "X-Exedev-Userid: clawdbot" \
-H "X-Shelley-Request: 1" \
"http://localhost:9999/api/conversation/{conversation_id}/unarchive"
# Delete permanently
curl -X POST \
-H "X-Exedev-Userid: clawdbot" \
-H "X-Shelley-Request: 1" \
"http://localhost:9999/api/conversation/{conversation_id}/delete"
The agent's response is in the messages array with type: "agent". Parse the llm_data JSON:
# Get the final text response
curl -s -H "X-Exedev-Userid: clawdbot" \
-H "X-Shelley-Request: 1" \
"http://localhost:9999/api/conversation/{conversation_id}" | \
jq -r '.messages[] | select(.type=="agent") | .llm_data | fromjson | .Content[] | select(.Type==2) | .Text'
Message types in llm_data.Content:
Type: 2 - Text contentType: 5 - Tool use (function calls)#!/bin/bash
# shelley-task.sh - Run a task via Shelley and get result
PROMPT="$1"
CWD="${2:-/home/exedev}"
# Create conversation
RESPONSE=$(curl -s -X POST \
-H "X-Exedev-Userid: clawdbot" \
-H "X-Shelley-Request: 1" \
-H "Content-Type: application/json" \
"http://localhost:9999/api/conversations/new" \
-d "{\"message\": \"$PROMPT\", \"cwd\": \"$CWD\"}")
CONV_ID=$(echo "$RESPONSE" | jq -r '.conversation_id')
echo "Started conversation: $CONV_ID" >&2
# Poll until complete
while true; do
STATUS=$(curl -s -H "X-Exedev-Userid: clawdbot" \
-H "X-Shelley-Request: 1" \
"http://localhost:9999/api/conversation/$CONV_ID" | jq '.agent_working')
if [ "$STATUS" = "false" ]; then
break
fi
echo "Working..." >&2
sleep 2
done
# Get final response
curl -s -H "X-Exedev-Userid: clawdbot" \
-H "X-Shelley-Request: 1" \
"http://localhost:9999/api/conversation/$CONV_ID" | \
jq -r '.messages | map(select(.type=="agent")) | last | .llm_data | fromjson | .Content[] | select(.Type==2) | .Text'
All Shelley sessions are stored in:
/home/exedev/.config/shelley/shelley.dbQuery sessions directly:
sqlite3 /home/exedev/.config/shelley/shelley.db \
"SELECT conversation_id, slug, datetime(created_at, 'localtime') FROM conversations ORDER BY created_at DESC LIMIT 10;"
When Clawdbot triggers Shelley, they communicate via a shared response queue.
request_idrequest_idrequest_idLocation: ~/.clawdbot/shelley-responses/
Each response is a JSON file named {request_id}.json:
{
"request_id": "req_abc123",
"conversation_id": "cXXXXXXX",
"status": "success",
"result": "Task completed. Created hello.py with a basic Python script.",
"completed_at": "2026-01-15T10:30:00Z"
}
# Clawdbot invokes with --request-id
./shelley-cli run "Build a hello world script" --request-id req_abc123
# Shelley completes task and writes response to:
# ~/.clawdbot/shelley-responses/req_abc123.json
When --request-id is provided, Shelley receives these instructions:
When you complete this task, write your response to:
~/.clawdbot/shelley-responses/{request_id}.json
Format:
{
"request_id": "{request_id}",
"conversation_id": "<your_conversation_id>",
"status": "success" or "error",
"result": "<concise summary of what you did or the answer>",
"completed_at": "<ISO timestamp>"
}
Clawdbot can poll for responses:
# Check for response
if [[ -f ~/.clawdbot/shelley-responses/req_abc123.json ]]; then
cat ~/.clawdbot/shelley-responses/req_abc123.json
rm ~/.clawdbot/shelley-responses/req_abc123.json # cleanup after processing
fi
Or use inotify for real-time:
inotifywait -m ~/.clawdbot/shelley-responses/ -e create
cwd parameter sets the working directory for the sessionMachine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
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/sthalatech-clawdbot-shelley-skill/snapshot"
curl -s "https://xpersona.co/api/v1/agents/sthalatech-clawdbot-shelley-skill/contract"
curl -s "https://xpersona.co/api/v1/agents/sthalatech-clawdbot-shelley-skill/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
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
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
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
Rank
70
AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | 🌟 Star if you like it!
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
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/sthalatech-clawdbot-shelley-skill/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/sthalatech-clawdbot-shelley-skill/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/sthalatech-clawdbot-shelley-skill/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/sthalatech-clawdbot-shelley-skill/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/sthalatech-clawdbot-shelley-skill/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/sthalatech-clawdbot-shelley-skill/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-17T04:44:48.189Z"
}
},
"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": "poll",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:poll|supported|profile"
}Facts JSON
[
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Exe",
"href": "https://exe.dev",
"sourceUrl": "https://exe.dev",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T03:17:49.248Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/sthalatech-clawdbot-shelley-skill/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/sthalatech-clawdbot-shelley-skill/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T03:17:49.248Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/sthalatech-clawdbot-shelley-skill/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/sthalatech-clawdbot-shelley-skill/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[]
Sponsored
Ads related to shelley-agent and adjacent AI workflows.