Crawler Summary

shelley-agent answer-first brief

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

Claim this agent
Agent DossierGitHubSafety: 94/100

shelley-agent

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

OpenClawself-declared

Public facts

3

Change events

0

Artifacts

0

Freshness

Apr 15, 2026

Verifiededitorial-contentNo verified compatibility signals

Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.

Trust evidence available

Trust score

Unknown

Compatibility

OpenClaw

Freshness

Apr 15, 2026

Vendor

Exe

Artifacts

0

Benchmarks

0

Last release

Unpublished

Executive Summary

Key links, install path, and a quick operational read before the deeper crawl record.

Verifiededitorial-content

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.git
  1. 1

    Setup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.

  2. 2

    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.

Evidence Ledger

Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.

Verifiededitorial-content
Vendor (1)

Vendor

Exe

profilemedium
Observed Apr 15, 2026Source linkProvenance
Compatibility (1)

Protocol compatibility

OpenClaw

contractmedium
Observed Apr 15, 2026Source linkProvenance
Security (1)

Handshake status

UNKNOWN

trustmedium
Observed unknownSource linkProvenance

Release & Crawl Timeline

Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.

Self-declaredagent-index

Artifacts Archive

Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.

Self-declaredGITHUB OPENCLEW

Extracted files

0

Examples

6

Snippets

0

Languages

typescript

Parameters

Executable Examples

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" \

Docs & README

Full documentation captured from public sources, including the complete README when available.

Self-declaredGITHUB OPENCLEW

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

Full README

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 agent running on this exe.dev VM at port 9999. This skill allows Clawdbot to:

  • Create new Shelley conversations
  • Send prompts/instructions to Shelley
  • Poll for completion
  • Retrieve the final response
  • All sessions are stored in the VM's Shelley database

API Endpoints

Shelley exposes a REST API at http://localhost:9999/api/

Authentication

All requests require these headers:

X-Exedev-Userid: <user-id>
X-Shelley-Request: 1

Commands

Create a New Conversation with a Prompt

# 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"}

Check Conversation Status

# 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 Conversation Details

# 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}]
  }'

Send Follow-up Message

# 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"}'

Stream Conversation (Real-time)

# 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"

Cancel Running Conversation

curl -X POST \
  -H "X-Exedev-Userid: clawdbot" \
  -H "X-Shelley-Request: 1" \
  "http://localhost:9999/api/conversation/{conversation_id}/cancel"

List All Conversations

curl -H "X-Exedev-Userid: clawdbot" \
  -H "X-Shelley-Request: 1" \
  "http://localhost:9999/api/conversations" | jq '.[:5]'

Get Conversation by Slug

curl -H "X-Exedev-Userid: clawdbot" \
  -H "X-Shelley-Request: 1" \
  "http://localhost:9999/api/conversation-by-slug/{slug}"

Archive/Delete Conversations

# 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"

Extracting Agent Response

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 content
  • Type: 5 - Tool use (function calls)

Complete Workflow Example

#!/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'

Viewing Sessions

All Shelley sessions are stored in:

  • Database: /home/exedev/.config/shelley/shelley.db
  • Web UI: https://clawdbot-sthala.exe.xyz:9999/

Query 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;"

Clawdbot ↔ Shelley Communication

When Clawdbot triggers Shelley, they communicate via a shared response queue.

Request Flow

  1. Clawdbot creates a request with a unique request_id
  2. Clawdbot spawns Shelley with the task + request_id
  3. Shelley completes the task
  4. Shelley writes result to the response queue with the request_id
  5. Clawdbot polls/watches the queue and routes the response to the original requester

Response Queue

Location: ~/.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"
}

Invoking Shelley with Request ID

# 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

Shelley Response Instructions

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 Polling

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

Notes

  • Shelley has access to all tools (bash, file editing, browser, etc.)
  • Long-running tasks may take minutes - use polling or streaming
  • The cwd parameter sets the working directory for the session
  • Each conversation is independent with its own context
  • Conversations auto-generate a slug based on content
  • When triggered by Clawdbot, always include callback info for response delivery

Contract & API

Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.

MissingGITHUB OPENCLEW

Contract coverage

Status

missing

Auth

None

Streaming

No

Data region

Unspecified

Protocol support

OpenClaw: self-declared

Requires: none

Forbidden: none

Guardrails

Operational confidence: low

No positive guardrails captured.
Invocation examples
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"

Reliability & Benchmarks

Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.

Missingruntime-metrics

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

Contract metadata is missing or unavailable for deterministic execution.
No benchmark suites or observed failure patterns are available.

Media & Demo

Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.

Missingno-media
No screenshots, media assets, or demo links are available.

Related Agents

Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.

Self-declaredprotocol-neighbors
GITHUB_REPOSactivepieces

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

OPENCLAW
GITHUB_REPOScherry-studio

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

MCPOPENCLAW
GITHUB_REPOSAionUi

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

MCPOPENCLAW
GITHUB_REPOSCopilotKit

Rank

70

The Frontend for Agents & Generative UI. React + Angular

Traction

No public download signal

Freshness

Updated 23d ago

OPENCLAW
Machine Appendix

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.