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
General-purpose AI workflow framework for OpenClaw. Build custom multi-step workflows for any task — dev, ops, research, content, or automation. Ships with dev workflow examples. --- name: soulflow description: General-purpose AI workflow framework for OpenClaw. Build custom multi-step workflows for any task — dev, ops, research, content, or automation. Ships with dev workflow examples. homepage: https://github.com/0xtommythomas-dev/soulflow metadata: clawdbot: emoji: "⚙️" requires: bins: ["node"] config_files: - "~/.openclaw/openclaw.json" permissions: config: read: ["~/.openclaw/openclaw.js
clawhub skill install skills:0xtommythomas-dev:soulflowOverall rank
#62
Adoption
No public adoption signal
Trust
Unknown
Freshness
Feb 25, 2026
Freshness
Last checked Feb 25, 2026
Best For
soulflow is best for build, the, create 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
General-purpose AI workflow framework for OpenClaw. Build custom multi-step workflows for any task — dev, ops, research, content, or automation. Ships with dev workflow examples. --- name: soulflow description: General-purpose AI workflow framework for OpenClaw. Build custom multi-step workflows for any task — dev, ops, research, content, or automation. Ships with dev workflow examples. homepage: https://github.com/0xtommythomas-dev/soulflow metadata: clawdbot: emoji: "⚙️" requires: bins: ["node"] config_files: - "~/.openclaw/openclaw.json" permissions: config: read: ["~/.openclaw/openclaw.js 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
0xtommythomas Dev
Artifacts
0
Benchmarks
0
Last release
Unpublished
Install & run
clawhub skill install skills:0xtommythomas-dev:soulflowSetup 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
0xtommythomas Dev
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
5
Snippets
0
Languages
typescript
Parameters
bash
cd ~/.openclaw/workspace/soulflow # Run a security audit node soulflow.js run security-audit "Audit the codebase at ~/project for vulnerabilities" # Fix a bug node soulflow.js run bug-fix "Login returns 500 when email has uppercase letters in ~/myapp" # Build a feature node soulflow.js run feature-dev "Add dark mode toggle to the settings page in ~/myapp"
bash
node soulflow.js run <workflow> "<task>" # Run a workflow node soulflow.js list # List available workflows node soulflow.js runs # List past runs node soulflow.js status [run-id] # Check run status node soulflow.js test # Test gateway connection
json
{
"id": "my-workflow",
"name": "My Custom Workflow",
"version": 1,
"description": "What this workflow does",
"steps": [
{
"id": "step1",
"name": "First Step",
"input": "Do this thing: {{task}}",
"expects": "STATUS: done",
"maxRetries": 1
},
{
"id": "step2",
"name": "Second Step",
"input": "Now do this based on step 1:\n\n{{step1_output}}\n\nOriginal task: {{task}}",
"expects": "STATUS: done",
"maxRetries": 1
}
]
}bash
cd /root/.openclaw/workspace/soulflow && node soulflow.js run <workflow> "<task>"
text
User: "Run a security audit on ~/myapp" You: [exec] cd /root/.openclaw/workspace/soulflow && node soulflow.js run security-audit "Audit ~/myapp for vulnerabilities"
Editorial read
Docs source
CLAWHUB
Editorial quality
ready
General-purpose AI workflow framework for OpenClaw. Build custom multi-step workflows for any task — dev, ops, research, content, or automation. Ships with dev workflow examples. --- name: soulflow description: General-purpose AI workflow framework for OpenClaw. Build custom multi-step workflows for any task — dev, ops, research, content, or automation. Ships with dev workflow examples. homepage: https://github.com/0xtommythomas-dev/soulflow metadata: clawdbot: emoji: "⚙️" requires: bins: ["node"] config_files: - "~/.openclaw/openclaw.json" permissions: config: read: ["~/.openclaw/openclaw.js
A framework for building custom AI workflows. Each workflow is a series of steps that execute in isolated agent sessions with full tool access. Define your workflow in JSON, invoke it naturally, and let the agents handle the execution.
What you can build:
Ships with 3 example dev workflows to show you how it works. Build your own for anything.
Natural language (easiest): Just tell your agent what you need:
Your agent reads this SKILL.md and invokes SoulFlow automatically.
Command line:
cd ~/.openclaw/workspace/soulflow
# Run a security audit
node soulflow.js run security-audit "Audit the codebase at ~/project for vulnerabilities"
# Fix a bug
node soulflow.js run bug-fix "Login returns 500 when email has uppercase letters in ~/myapp"
# Build a feature
node soulflow.js run feature-dev "Add dark mode toggle to the settings page in ~/myapp"
SoulFlow connects to your local OpenClaw gateway via WebSocket and runs each workflow step as an isolated agent session. A dedicated soulflow-worker agent is auto-created with minimal context — no memory bleed from your main agent.
Each step:
Auto-notifications (v1.1.0+): When workflows complete, SoulFlow automatically notifies the main agent session with results. No need to manually check status.
These are examples to show what's possible. Build your own for any domain.
Scan → Prioritize → Fix → Verify Development example: Reads your source files, identifies vulnerabilities by severity, applies fixes, then verifies them.
Triage → Fix → Verify Development example: Investigates the root cause by reading code, applies the fix, then verifies it didn't introduce regressions.
Plan → Implement → Review Development example: Architects the implementation plan, writes the code, then reviews for quality and correctness.
Want content workflows? Research pipelines? Deploy automation? Create your own .workflow.json — see Custom Workflows below.
node soulflow.js run <workflow> "<task>" # Run a workflow
node soulflow.js list # List available workflows
node soulflow.js runs # List past runs
node soulflow.js status [run-id] # Check run status
node soulflow.js test # Test gateway connection
The agent knows how to invoke SoulFlow for you. Just describe what you want:
Security audits:
Bug fixes:
Features:
How it works:
node soulflow.js run <workflow> "<task>"Pattern matching: The agent matches your message to workflows:
No workflow matches? Agent will ask which workflow you want or suggest creating a custom one.
You can create workflows for ANY task. Define them in JSON and place in the workflows/ directory.
Tell your agent:
"Create a SoulFlow workflow for [your use case]"
Examples:
Your agent will:
.workflow.json file to workflows/Create a .workflow.json file in the workflows/ directory:
{
"id": "my-workflow",
"name": "My Custom Workflow",
"version": 1,
"description": "What this workflow does",
"steps": [
{
"id": "step1",
"name": "First Step",
"input": "Do this thing: {{task}}",
"expects": "STATUS: done",
"maxRetries": 1
},
{
"id": "step2",
"name": "Second Step",
"input": "Now do this based on step 1:\n\n{{step1_output}}\n\nOriginal task: {{task}}",
"expects": "STATUS: done",
"maxRetries": 1
}
]
}
{{task}} — The user's original task description{{stepid_output}} — Full output from a previous step (e.g. {{scan_output}})KEY: value lines in step output become variables (e.g. ROOT_CAUSE: ... → {{root_cause}})For best results, write prompts that:
read to examine the file", "Use edit to apply the fix"soulflow-worker agent with minimal brain files~/.openclaw/workspace/.soulflow/runs/What SoulFlow does to your OpenClaw instance:
~/.openclaw/openclaw.json) to obtain the authentication token needed to connect via WebSocket~/.openclaw/openclaw.json) via config.patch to register the soulflow-worker agentsoulflow-worker) with minimal brain files (SOUL.md only, no memory/history)~/.openclaw/workspace/.soulflow/runs/ as JSON filesWhy these permissions are needed:
openclaw CLI tool)Security considerations:
Recommended practices:
.workflow.json files before running~/.openclaw/workspace/.soulflow/runs/ for workflow execution logsWhen the user requests a workflow (security audit, bug fix, feature build, etc.), you should:
Identify the workflow by matching keywords:
workflows/*.workflow.json for other optionsExtract the task description — the user's description of what they want done
Invoke SoulFlow using exec:
cd /root/.openclaw/workspace/soulflow && node soulflow.js run <workflow> "<task>"
Monitor the run — SoulFlow will output the run ID, then show progress as each step completes
Report results — When complete, relay the final status to the user
Example:
User: "Run a security audit on ~/myapp"
You: [exec] cd /root/.openclaw/workspace/soulflow && node soulflow.js run security-audit "Audit ~/myapp for vulnerabilities"
Creating workflows for users: If the user asks you to create a custom workflow:
.workflow.json file to /root/.openclaw/workspace/soulflow/workflows/See CONTRIBUTING.md for workflow design best practices.
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-0xtommythomas-dev-soulflow/snapshot"
curl -s "https://xpersona.co/api/v1/agents/clawhub-skills-0xtommythomas-dev-soulflow/contract"
curl -s "https://xpersona.co/api/v1/agents/clawhub-skills-0xtommythomas-dev-soulflow/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-0xtommythomas-dev-soulflow/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/clawhub-skills-0xtommythomas-dev-soulflow/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/clawhub-skills-0xtommythomas-dev-soulflow/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-skills-0xtommythomas-dev-soulflow/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-skills-0xtommythomas-dev-soulflow/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-skills-0xtommythomas-dev-soulflow/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-17T04:03:25.496Z"
}
},
"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": "build",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "the",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "create",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "access",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:build|supported|profile capability:the|supported|profile capability:create|supported|profile capability:access|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": "0xtommythomas Dev",
"href": "https://github.com/0xtommythomas-dev/soulflow",
"sourceUrl": "https://github.com/0xtommythomas-dev/soulflow",
"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-0xtommythomas-dev-soulflow/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/clawhub-skills-0xtommythomas-dev-soulflow/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-0xtommythomas-dev-soulflow/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/clawhub-skills-0xtommythomas-dev-soulflow/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 soulflow and adjacent AI workflows.