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
OpenClaw CLI management for personal AI assistant. Use when queries involve: Gateway: "start openclaw", "stop gateway", "gateway status", "restart openclaw", "gateway service", "run gateway", "gateway logs", "gateway port", "bind loopback" Channels: "whatsapp", "add telegram", "discord setup", "slack", "signal", "imessage", "channel status", "channel login", "channel logs", "pairing", "whatsapp qr", "linked phone" Config: "openclaw config", "config get", "config set", "configure openclaw", "openclaw.json", "model config", "agent config", "workspace", "auth" Security: "openclaw security", "security audit", "audit --fix", "audit --deep", "permissions", "exec approvals" Skills: "openclaw skills", "skill list", "skill info", "install skill", "skill check", "eligible skills" Models: "openclaw models", "model auth", "anthropic", "openai", "ollama", "set model", "model status", "scan models", "model aliases", "fallbacks" Agents: "openclaw agents", "agent list", "add agent", "delete agent", "agent main", "custom agent", "subagents" Messaging: "openclaw message", "send message", "message poll", "message thread" Diagnostics: "openclaw doctor", "health check", "status", "status --deep", "logs", "troubleshoot", "debug", "verbose" macOS: "homebrew openclaw", "launchd", "menu bar", "node runtime" Full CLI: "openclaw help", "openclaw --help", "all commands", "cli reference" --- name: openclaw description: | OpenClaw CLI management for personal AI assistant. Use when queries involve: Gateway: "start openclaw", "stop gateway", "gateway status", "restart openclaw", "gateway service", "run gateway", "gateway logs", "gateway port", "bind loopback" Channels: "whatsapp", "add telegram", "discord setup", "slack", "signal", "imessage", "channel status", "channel login", "channel logs", "pairing" Capability contract not published. No trust telemetry is available yet. Last updated 4/14/2026.
Freshness
Last checked 4/14/2026
Best For
openclaw is best for for, openclaw 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
OpenClaw CLI management for personal AI assistant. Use when queries involve: Gateway: "start openclaw", "stop gateway", "gateway status", "restart openclaw", "gateway service", "run gateway", "gateway logs", "gateway port", "bind loopback" Channels: "whatsapp", "add telegram", "discord setup", "slack", "signal", "imessage", "channel status", "channel login", "channel logs", "pairing", "whatsapp qr", "linked phone" Config: "openclaw config", "config get", "config set", "configure openclaw", "openclaw.json", "model config", "agent config", "workspace", "auth" Security: "openclaw security", "security audit", "audit --fix", "audit --deep", "permissions", "exec approvals" Skills: "openclaw skills", "skill list", "skill info", "install skill", "skill check", "eligible skills" Models: "openclaw models", "model auth", "anthropic", "openai", "ollama", "set model", "model status", "scan models", "model aliases", "fallbacks" Agents: "openclaw agents", "agent list", "add agent", "delete agent", "agent main", "custom agent", "subagents" Messaging: "openclaw message", "send message", "message poll", "message thread" Diagnostics: "openclaw doctor", "health check", "status", "status --deep", "logs", "troubleshoot", "debug", "verbose" macOS: "homebrew openclaw", "launchd", "menu bar", "node runtime" Full CLI: "openclaw help", "openclaw --help", "all commands", "cli reference" --- name: openclaw description: | OpenClaw CLI management for personal AI assistant. Use when queries involve: Gateway: "start openclaw", "stop gateway", "gateway status", "restart openclaw", "gateway service", "run gateway", "gateway logs", "gateway port", "bind loopback" Channels: "whatsapp", "add telegram", "discord setup", "slack", "signal", "imessage", "channel status", "channel login", "channel logs", "pairing"
Public facts
4
Change events
1
Artifacts
0
Freshness
Apr 14, 2026
Capability contract not published. No trust telemetry is available yet. Last updated 4/14/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Apr 14, 2026
Vendor
Karmiphuc
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/14/2026.
Setup snapshot
git clone https://github.com/karmiphuc/openclaw-docs-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
Karmiphuc
Protocol compatibility
OpenClaw
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
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
bash
# Version openclaw --version # Gateway mode (local or remote) openclaw config get gateway.mode # Gateway port openclaw config get gateway.port # Auth mode openclaw config get gateway.auth.mode # Your configured agents openclaw agents list # Your default model openclaw config get agents.defaults.model.primary # Your installed skills openclaw skills list # Your configured channels openclaw channels list # Your cron jobs openclaw cron list
bash
# Via npm (recommended) npm install -g openclaw@latest # Or pnpm pnpm add -g openclaw@latest
bash
# Install daemon (runs gateway as user service) openclaw onboard --install-daemon # Service management openclaw gateway status # probes RPC openclaw gateway install # installs launchd service openclaw gateway uninstall # removes service openclaw gateway start/stop/restart # Check service status launchctl list | grep openclaw
bash
# Start gateway manually openclaw gateway run --port 18789 --bind loopback # Start with verbose logging openclaw gateway run --verbose # Check if gateway is responding openclaw health --verbose openclaw status --deep # Restart gateway (after config changes) openclaw gateway restart # View real-time logs openclaw logs --follow openclaw logs --limit 200 --plain
bash
# List all configured channels openclaw channels list # Check channel status openclaw channels status openclaw channels status --probe # Add a new channel openclaw channels add --channel telegram --account alerts --name "Alerts Bot" --token $TELEGRAM_BOT_TOKEN openclaw channels add --channel discord --account work --token $DISCORD_BOT_TOKEN # WhatsApp login (shows QR code) openclaw channels login --channel whatsapp # View channel logs openclaw channels logs --channel whatsapp --lines 200 # Pairing requests openclaw pairing list whatsapp openclaw pairing approve whatsapp <code>
bash
# Get a config value openclaw config get gateway.port openclaw config get agents.defaults.model.primary openclaw config get channels.whatsapp.allowFrom # Set a config value openclaw config set agents.defaults.model.primary "anthropic/claude-sonnet-4-20250514" openclaw config set channels.whatsapp.enabled true # Unset a config value openclaw config unset channels.whatsapp.customOption # Run configure wizard openclaw configure openclaw configure --section models # View full config cat ~/.openclaw/openclaw.json
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
OpenClaw CLI management for personal AI assistant. Use when queries involve: Gateway: "start openclaw", "stop gateway", "gateway status", "restart openclaw", "gateway service", "run gateway", "gateway logs", "gateway port", "bind loopback" Channels: "whatsapp", "add telegram", "discord setup", "slack", "signal", "imessage", "channel status", "channel login", "channel logs", "pairing", "whatsapp qr", "linked phone" Config: "openclaw config", "config get", "config set", "configure openclaw", "openclaw.json", "model config", "agent config", "workspace", "auth" Security: "openclaw security", "security audit", "audit --fix", "audit --deep", "permissions", "exec approvals" Skills: "openclaw skills", "skill list", "skill info", "install skill", "skill check", "eligible skills" Models: "openclaw models", "model auth", "anthropic", "openai", "ollama", "set model", "model status", "scan models", "model aliases", "fallbacks" Agents: "openclaw agents", "agent list", "add agent", "delete agent", "agent main", "custom agent", "subagents" Messaging: "openclaw message", "send message", "message poll", "message thread" Diagnostics: "openclaw doctor", "health check", "status", "status --deep", "logs", "troubleshoot", "debug", "verbose" macOS: "homebrew openclaw", "launchd", "menu bar", "node runtime" Full CLI: "openclaw help", "openclaw --help", "all commands", "cli reference" --- name: openclaw description: | OpenClaw CLI management for personal AI assistant. Use when queries involve: Gateway: "start openclaw", "stop gateway", "gateway status", "restart openclaw", "gateway service", "run gateway", "gateway logs", "gateway port", "bind loopback" Channels: "whatsapp", "add telegram", "discord setup", "slack", "signal", "imessage", "channel status", "channel login", "channel logs", "pairing"
name: openclaw description: | OpenClaw CLI management for personal AI assistant. Use when queries involve:
Gateway: "start openclaw", "stop gateway", "gateway status", "restart openclaw", "gateway service", "run gateway", "gateway logs", "gateway port", "bind loopback"
Channels: "whatsapp", "add telegram", "discord setup", "slack", "signal", "imessage", "channel status", "channel login", "channel logs", "pairing", "whatsapp qr", "linked phone"
Config: "openclaw config", "config get", "config set", "configure openclaw", "openclaw.json", "model config", "agent config", "workspace", "auth"
Security: "openclaw security", "security audit", "audit --fix", "audit --deep", "permissions", "exec approvals"
Skills: "openclaw skills", "skill list", "skill info", "install skill", "skill check", "eligible skills"
Models: "openclaw models", "model auth", "anthropic", "openai", "ollama", "set model", "model status", "scan models", "model aliases", "fallbacks"
Agents: "openclaw agents", "agent list", "add agent", "delete agent", "agent main", "custom agent", "subagents"
Messaging: "openclaw message", "send message", "message poll", "message thread"
Diagnostics: "openclaw doctor", "health check", "status", "status --deep", "logs", "troubleshoot", "debug", "verbose"
macOS: "homebrew openclaw", "launchd", "menu bar", "node runtime"
| Task | Command |
|------|---------|
| Start gateway | openclaw gateway run |
| Stop gateway | openclaw gateway stop |
| Gateway status | openclaw gateway status |
| Service restart | openclaw gateway restart |
| Add channel | openclaw channels add --channel telegram --token $TOKEN |
| List channels | openclaw channels list |
| Channel status | openclaw channels status --probe |
| WhatsApp login | openclaw channels login --channel whatsapp |
| Config get | openclaw config get agents.defaults.model.primary |
| Config set | openclaw config set channels.whatsapp.enabled true |
| Security audit | openclaw security audit --deep --fix |
| Skills list | openclaw skills list |
| Doctor check | openclaw doctor --yes |
| View logs | openclaw logs --follow |
| Model status | openclaw models status --probe |
| Agents list | openclaw agents list |
| Send message | openclaw message send --target <PHONE_NUMBER> --message "Hello" |
| Cron list | openclaw cron list |
| Health check | openclaw health --verbose |
After installing OpenClaw, your config lives at ~/.openclaw/openclaw.json.
# Version
openclaw --version
# Gateway mode (local or remote)
openclaw config get gateway.mode
# Gateway port
openclaw config get gateway.port
# Auth mode
openclaw config get gateway.auth.mode
# Your configured agents
openclaw agents list
# Your default model
openclaw config get agents.defaults.model.primary
# Your installed skills
openclaw skills list
# Your configured channels
openclaw channels list
# Your cron jobs
openclaw cron list
# Via npm (recommended)
npm install -g openclaw@latest
# Or pnpm
pnpm add -g openclaw@latest
# Install daemon (runs gateway as user service)
openclaw onboard --install-daemon
# Service management
openclaw gateway status # probes RPC
openclaw gateway install # installs launchd service
openclaw gateway uninstall # removes service
openclaw gateway start/stop/restart
# Check service status
launchctl list | grep openclaw
--daemon-runtime node)# Start gateway manually
openclaw gateway run --port 18789 --bind loopback
# Start with verbose logging
openclaw gateway run --verbose
# Check if gateway is responding
openclaw health --verbose
openclaw status --deep
# Restart gateway (after config changes)
openclaw gateway restart
# View real-time logs
openclaw logs --follow
openclaw logs --limit 200 --plain
# List all configured channels
openclaw channels list
# Check channel status
openclaw channels status
openclaw channels status --probe
# Add a new channel
openclaw channels add --channel telegram --account alerts --name "Alerts Bot" --token $TELEGRAM_BOT_TOKEN
openclaw channels add --channel discord --account work --token $DISCORD_BOT_TOKEN
# WhatsApp login (shows QR code)
openclaw channels login --channel whatsapp
# View channel logs
openclaw channels logs --channel whatsapp --lines 200
# Pairing requests
openclaw pairing list whatsapp
openclaw pairing approve whatsapp <code>
# Get a config value
openclaw config get gateway.port
openclaw config get agents.defaults.model.primary
openclaw config get channels.whatsapp.allowFrom
# Set a config value
openclaw config set agents.defaults.model.primary "anthropic/claude-sonnet-4-20250514"
openclaw config set channels.whatsapp.enabled true
# Unset a config value
openclaw config unset channels.whatsapp.customOption
# Run configure wizard
openclaw configure
openclaw configure --section models
# View full config
cat ~/.openclaw/openclaw.json
# List agents
openclaw agents list
# Get agent details
openclaw agents list --bindings
# Add new agent
openclaw agents add myagent --workspace ~/.openclaw/agents/myagent/workspace --model anthropic/claude-sonnet-4-20250514
openclaw agents add --non-interactive --workspace /path/to/workspace --bind whatsapp:default
# Delete agent
openclaw agents delete myagent --force
# Run agent manually
openclaw agent --message "Summarize recent work"
openclaw agent --message "Check cron job status" --session-id <id>
# With thinking mode (if supported)
openclaw agent --message "Analyze this" --thinking high
# List available models
openclaw models list
openclaw models list --provider anthropic
# Check model status
openclaw models status
openclaw models status --probe
# Setup auth (preferred: setup-token)
openclaw models auth setup-token --provider anthropic
openclaw models auth paste-token --provider anthropic --profile-id anthropic:manual --expires-in 365d
# Scan for new models
openclaw models scan --provider ollama
openclaw models scan --yes --set-default
# Model aliases
openclaw models aliases list
openclaw models aliases add "sonnet" "anthropic/claude-sonnet-4-20250514"
openclaw models aliases remove "sonnet"
# Fallback models
openclaw models fallbacks list
openclaw models fallbacks add "ollama/llama3.2:3b"
# List installed skills
openclaw skills list
openclaw skills list --eligible
# Get skill info
openclaw skills info <skill-name>
# Check skill requirements
openclaw skills check
openclaw skills check --eligible -v
# Search for skills (via ClawHub)
npx clawhub search "github"
# List cron jobs
openclaw cron list
openclaw cron list --all
# View job details
openclaw cron list | grep my-job
# Get job runs
openclaw cron runs --id <job-id> --limit 5
# Manually trigger job
openclaw cron run <job-id>
# Add new job (requires gateway RPC)
openclaw cron add --name "my-task" --every 1h --system-event "Task reminder"
# Basic audit
openclaw security audit
# Deep audit (probes gateway)
openclaw security audit --deep
# Auto-fix issues
openclaw security audit --deep --fix
# View exec approvals
openclaw config get tools.exec.security
cat ~/.openclaw/exec-approvals.json
# Send message
openclaw message send --channel whatsapp --target <PHONE_NUMBER> --message "Hello!"
openclaw message send --target <ANOTHER_NUMBER> --message "Test message"
# Create poll
openclaw message poll --channel whatsapp --target <PHONE_NUMBER> \
--poll-question "Lunch?" \
--poll-option "Pizza" \
--poll-option "Sushi"
# Message thread operations
openclaw message thread create --channel whatsapp --target <PHONE_NUMBER> --message "New thread"
openclaw message thread reply --thread-id <id> --message "Reply"
# Search messages
openclaw message search --channel whatsapp --query "important"
# Doctor check (auto-fix common issues)
openclaw doctor
openclaw doctor --yes
openclaw doctor --deep
# Full status
openclaw status
openclaw status --deep
openclaw status --all
openclaw status --usage
# Health check
openclaw health
openclaw health --verbose
# View logs
openclaw logs
openclaw logs --follow
openclaw logs --json --limit 100
# Session management
openclaw sessions
openclaw sessions --active 60
# Check port availability
lsof -i :18789
# Kill existing process
kill $(lsof -t -i :18789)
# Try with --force
openclaw gateway run --force
# Check logs
openclaw logs --limit 50
cat ~/.openclaw/logs/gateway.log
# Check channel status
openclaw channels status --probe
# View channel logs
openclaw channels logs --channel whatsapp --lines 200
# Re-login to channel
openclaw channels logout --channel whatsapp
openclaw channels login --channel whatsapp
# Run doctor
openclaw doctor
# Check model status
openclaw models status --probe
# Re-setup auth
openclaw models auth setup-token --provider anthropic
# Check config
openclaw config get models.providers.anthropic
# Validate config
openclaw doctor --non-interactive
# View config backup
cat ~/.openclaw/openclaw.json.bak
# Reset config (keeps CLI)
openclaw reset --scope config --yes
# Full reset (everything)
openclaw reset --scope full --yes
# Verbose output
openclaw status --verbose --debug
# JSON output for parsing
openclaw status --json
openclaw health --json
# Check all services
openclaw status --deep
# System scan
openclaw doctor --deep
| Path | Purpose |
|------|---------|
| ~/.openclaw/openclaw.json | Main config |
| ~/.openclaw/credentials/ | Auth credentials |
| ~/.openclaw/agents/<id>/ | Agent workspaces + sessions |
| ~/.openclaw/skills/ | Installed skills |
| ~/.openclaw/logs/ | Gateway logs |
| ~/.openclaw/cron/jobs.json | Cron job definitions |
| ~/.openclaw/browser/ | Browser profiles |
| ~/.openclaw/media/ | Media cache |
| ~/.openclaw/shared/ | Shared data between agents |
| ~/.openclaw/workspace/ | Default workspace |
| Flag | Description |
|------|-------------|
| --dev | Dev mode: ~/.openclaw-dev, shifted ports |
| --profile <name> | Profile mode: ~/.openclaw-<name> |
| --no-color | Disable ANSI colors |
| --json | JSON output (when supported) |
| -V, --version | Print version |
| -h, --help | Show help |
Machine 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/karmiphuc-openclaw-docs-skill/snapshot"
curl -s "https://xpersona.co/api/v1/agents/karmiphuc-openclaw-docs-skill/contract"
curl -s "https://xpersona.co/api/v1/agents/karmiphuc-openclaw-docs-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 5d 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/karmiphuc-openclaw-docs-skill/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/karmiphuc-openclaw-docs-skill/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/karmiphuc-openclaw-docs-skill/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/karmiphuc-openclaw-docs-skill/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/karmiphuc-openclaw-docs-skill/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/karmiphuc-openclaw-docs-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-16T23:30:21.629Z"
}
},
"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": "for",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "openclaw",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:for|supported|profile capability:openclaw|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": "Karmiphuc",
"href": "https://github.com/karmiphuc/openclaw-docs-skill",
"sourceUrl": "https://github.com/karmiphuc/openclaw-docs-skill",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-14T22:23:41.779Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/karmiphuc-openclaw-docs-skill/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/karmiphuc-openclaw-docs-skill/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-14T22:23:41.779Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/karmiphuc-openclaw-docs-skill/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/karmiphuc-openclaw-docs-skill/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 openclaw and adjacent AI workflows.