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
OpenClaw Mastery — The Complete Agent Engineering & Operations System OpenClaw Mastery — The Complete Agent Engineering & Operations System Built by AfrexAI — the team that runs 9+ production agents 24/7 on OpenClaw. You are an expert OpenClaw platform engineer. Follow this complete system to design, deploy, optimize, and scale autonomous AI agents on OpenClaw. --- Phase 1: Architecture Assessment Before building, assess what you need: Agent Complexity Matrix | Complexity | Examples |
clawhub skill install skills:1kalin:afrexai-openclaw-masteryOverall rank
#62
Adoption
No public adoption signal
Trust
Unknown
Freshness
Feb 25, 2026
Freshness
Last checked Feb 25, 2026
Best For
afrexai-openclaw-mastery is best for batch, drift 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
OpenClaw Mastery — The Complete Agent Engineering & Operations System OpenClaw Mastery — The Complete Agent Engineering & Operations System Built by AfrexAI — the team that runs 9+ production agents 24/7 on OpenClaw. You are an expert OpenClaw platform engineer. Follow this complete system to design, deploy, optimize, and scale autonomous AI agents on OpenClaw. --- Phase 1: Architecture Assessment Before building, assess what you need: Agent Complexity Matrix | Complexity | Examples | 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:1kalin:afrexai-openclaw-masterySetup 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
yaml
readiness_check:
hardware:
- [ ] Machine with 4GB+ RAM (8GB recommended)
- [ ] Stable internet connection
- [ ] Node.js v20+ installed
- [ ] Git installed
accounts:
- [ ] Anthropic API key (primary model)
- [ ] At least one channel configured (Telegram recommended for starting)
- [ ] Optional: OpenAI key (for embeddings/fallback)
planning:
- [ ] Agent purpose defined (1 sentence)
- [ ] Target audience identified
- [ ] Success metrics defined
- [ ] Budget estimated (model costs)bash
# Install OpenClaw npm install -g openclaw # Initialize workspace openclaw init # Configure (interactive) openclaw setup # Start the gateway openclaw gateway start # Verify openclaw status
yaml
# Essential config structure
version: 1
gateway:
port: 3578 # Default port
heartbeat:
intervalMs: 1800000 # 30 min default
prompt: "..." # Heartbeat instruction
models:
default: anthropic/claude-sonnet-4-20250514 # Cost-effective default
# Override per-session or per-agent
channels:
telegram:
botToken: "..." # From @BotFather
# discord, slack, signal, whatsapp, imessage, webchat
agents: {} # Multi-agent configs
bindings: [] # Channel-to-agent routingbash
# Required ANTHROPIC_API_KEY=sk-ant-... # Optional but recommended OPENAI_API_KEY=sk-... # Fallback model BRAVE_API_KEY=... # Web search
text
workspace/ ├── SOUL.md # WHO the agent is (personality, values, voice) ├── AGENTS.md # HOW it operates (rules, workflows, protocols) ├── IDENTITY.md # Quick identity card (name, role, emoji) ├── USER.md # WHO it serves (user context, preferences) ├── MEMORY.md # Long-term curated memory ├── HEARTBEAT.md # Proactive check instructions ├── TOOLS.md # Local tool notes, API keys location ├── ACTIVE-CONTEXT.md # Current priorities, hot items ├── memory/ # Daily logs │ ├── 2026-02-19.md │ └── heartbeat-state.json ├── skills/ # Installed ClawHub skills ├── scripts/ # Custom automation scripts ├── reference/ # Knowledge base documents ├── projects/ # Project-specific work └── docs/ # OpenClaw documentation
markdown
# SOUL.md — [Agent Name] ## Prime Directive [One sentence: what is this agent's primary purpose?] ## Core Truths - [Personality trait 1 — be specific, not generic] - [Personality trait 2] - [Communication style] - [Decision-making philosophy] ## Anti-Patterns Never do these: - [Specific behavior to avoid] - [Another anti-pattern] ## Relationship With Operator - [How formal/casual] - [When to ask vs act] - [Escalation rules] ## Boundaries - [What's off-limits] - [Privacy rules] - [External action rules] ## Vibe [2-3 sentences describing the overall feel]
Editorial read
Docs source
CLAWHUB
Editorial quality
ready
OpenClaw Mastery — The Complete Agent Engineering & Operations System OpenClaw Mastery — The Complete Agent Engineering & Operations System Built by AfrexAI — the team that runs 9+ production agents 24/7 on OpenClaw. You are an expert OpenClaw platform engineer. Follow this complete system to design, deploy, optimize, and scale autonomous AI agents on OpenClaw. --- Phase 1: Architecture Assessment Before building, assess what you need: Agent Complexity Matrix | Complexity | Examples |
Built by AfrexAI — the team that runs 9+ production agents 24/7 on OpenClaw.
You are an expert OpenClaw platform engineer. Follow this complete system to design, deploy, optimize, and scale autonomous AI agents on OpenClaw.
Before building, assess what you need:
| Complexity | Examples | Channels | Crons | Memory | Skills | |-----------|---------|----------|-------|--------|--------| | Simple | Personal assistant, reminder bot | 1 | 0-2 | Basic MEMORY.md | 2-5 | | Standard | Business ops, content creator | 1-2 | 3-5 | Daily + long-term | 5-10 | | Advanced | Multi-agent swarm, trading system | 3+ | 5-10 | Full system + databases | 10-20 | | Enterprise | Full business automation | 5+ | 10+ | Multi-DB + RAG | 20+ |
readiness_check:
hardware:
- [ ] Machine with 4GB+ RAM (8GB recommended)
- [ ] Stable internet connection
- [ ] Node.js v20+ installed
- [ ] Git installed
accounts:
- [ ] Anthropic API key (primary model)
- [ ] At least one channel configured (Telegram recommended for starting)
- [ ] Optional: OpenAI key (for embeddings/fallback)
planning:
- [ ] Agent purpose defined (1 sentence)
- [ ] Target audience identified
- [ ] Success metrics defined
- [ ] Budget estimated (model costs)
# Install OpenClaw
npm install -g openclaw
# Initialize workspace
openclaw init
# Configure (interactive)
openclaw setup
# Start the gateway
openclaw gateway start
# Verify
openclaw status
OpenClaw config lives at ~/.openclaw/config.yaml. Key sections:
# Essential config structure
version: 1
gateway:
port: 3578 # Default port
heartbeat:
intervalMs: 1800000 # 30 min default
prompt: "..." # Heartbeat instruction
models:
default: anthropic/claude-sonnet-4-20250514 # Cost-effective default
# Override per-session or per-agent
channels:
telegram:
botToken: "..." # From @BotFather
# discord, slack, signal, whatsapp, imessage, webchat
agents: {} # Multi-agent configs
bindings: [] # Channel-to-agent routing
| Model | Best For | Cost | Speed | Thinking | |-------|---------|------|-------|----------| | claude-sonnet-4-20250514 | Daily ops, chat, most tasks | $$ | Fast | Good | | claude-opus-4-6 | Complex reasoning, strategy | $$$$ | Slower | Excellent | | gpt-4o | Vision tasks, alternatives | $$$ | Fast | Good | | claude-haiku | High-volume, simple tasks | $ | Fastest | Basic |
Cost optimization rule: Use Sonnet as default, Opus for strategy/complex tasks, Haiku for high-frequency simple operations.
# Required
ANTHROPIC_API_KEY=sk-ant-...
# Optional but recommended
OPENAI_API_KEY=sk-... # Fallback model
BRAVE_API_KEY=... # Web search
Your workspace (~/.openclaw/workspace/) IS the agent's persistent memory and personality. Design it carefully.
workspace/
├── SOUL.md # WHO the agent is (personality, values, voice)
├── AGENTS.md # HOW it operates (rules, workflows, protocols)
├── IDENTITY.md # Quick identity card (name, role, emoji)
├── USER.md # WHO it serves (user context, preferences)
├── MEMORY.md # Long-term curated memory
├── HEARTBEAT.md # Proactive check instructions
├── TOOLS.md # Local tool notes, API keys location
├── ACTIVE-CONTEXT.md # Current priorities, hot items
├── memory/ # Daily logs
│ ├── 2026-02-19.md
│ └── heartbeat-state.json
├── skills/ # Installed ClawHub skills
├── scripts/ # Custom automation scripts
├── reference/ # Knowledge base documents
├── projects/ # Project-specific work
└── docs/ # OpenClaw documentation
This is the most important file. It defines WHO your agent is.
Template:
# SOUL.md — [Agent Name]
## Prime Directive
[One sentence: what is this agent's primary purpose?]
## Core Truths
- [Personality trait 1 — be specific, not generic]
- [Personality trait 2]
- [Communication style]
- [Decision-making philosophy]
## Anti-Patterns
Never do these:
- [Specific behavior to avoid]
- [Another anti-pattern]
## Relationship With Operator
- [How formal/casual]
- [When to ask vs act]
- [Escalation rules]
## Boundaries
- [What's off-limits]
- [Privacy rules]
- [External action rules]
## Vibe
[2-3 sentences describing the overall feel]
Quality Checklist (score 0-10 each):
Target: 40+ out of 50 before deploying.
# AGENTS.md
## Session Startup
1. Read SOUL.md
2. Read USER.md
3. Read memory/YYYY-MM-DD.md (today + yesterday)
4. If main session: Read MEMORY.md
## Decision Framework
[Your PIV, OODA, or custom loop]
## Daily Rhythm
- Morning: [tasks]
- Midday: [tasks]
- Evening: [tasks]
## Memory Protocol
- Daily notes: memory/YYYY-MM-DD.md
- Long-term: MEMORY.md (curated)
- Write it down — no "mental notes"
## Safety Rules
- [Specific to your use case]
## External vs Internal Actions
- Safe to do freely: [list]
- Ask first: [list]
# USER.md
## Identity
- Name, timezone, language preferences
- Communication style preferences
## Professional Context
- Role, company, industry
- Current priorities
- Technical level
## Preferences
- How they like to receive information
- Pet peeves
- Activation phrases
Three-Layer System:
memory/YYYY-MM-DD.md) — Raw event logs, decisions, outcomesMEMORY.md) — Curated insights, lessons, persistent contextACTIVE-CONTEXT.md) — Current priorities, hot items, WIPMemory Maintenance Protocol:
| Signal | Single Agent | Multi-Agent | |--------|-------------|-------------| | Tasks are related | ✅ | | | Different personas needed | | ✅ | | Different channels/audiences | | ✅ | | Workload exceeds context window | | ✅ | | Security isolation needed | | ✅ | | Different model requirements | | ✅ |
channels:
telegram:
accounts:
main:
botToken: "TOKEN_1"
trader:
botToken: "TOKEN_2"
fitness:
botToken: "TOKEN_3"
agents:
trader:
model: anthropic/claude-sonnet-4-20250514
workspace: agents/trader
fitness:
model: anthropic/claude-sonnet-4-20250514
workspace: agents/fitness
bindings:
- pattern:
channel: telegram
account: trader
agent: trader
- pattern:
channel: telegram
account: fitness
agent: fitness
Each agent gets its own workspace directory:
workspace/
├── agents/
│ ├── trader/
│ │ ├── SOUL.md # Trader personality
│ │ ├── AGENTS.md # Trading rules
│ │ └── memory/
│ └── fitness/
│ ├── SOUL.md # Coach personality
│ ├── AGENTS.md # Fitness protocols
│ └── memory/
# From main agent, delegate to sub-agent:
sessions_spawn(task="Analyze BTC 4h chart", agentId="trader")
# Send message to another session:
sessions_send(sessionKey="...", message="Update: new client signed")
Rules:
sessions_spawn for fire-and-forget taskssessions_send for ongoing communication# 1. System Event (main session) — inject text as system message
payload:
kind: systemEvent
text: "Check for new emails and report"
# 2. Agent Turn (isolated session) — full agent run
payload:
kind: agentTurn
message: "Run morning briefing: check email, calendar, weather"
model: anthropic/claude-sonnet-4-20250514
timeoutSeconds: 300
# One-shot at specific time
schedule:
kind: at
at: "2026-02-20T09:00:00Z"
# Recurring interval
schedule:
kind: every
everyMs: 3600000 # Every hour
# Cron expression
schedule:
kind: cron
expr: "0 8 * * 1-5" # 8 AM weekdays
tz: "Europe/London"
Morning Briefing (Daily, 8:00 AM):
name: "Morning Ops"
schedule:
kind: cron
expr: "0 8 * * *"
tz: "America/New_York"
sessionTarget: isolated
payload:
kind: agentTurn
message: "Morning briefing: check email inbox for urgent items, review calendar for today and tomorrow, check weather, summarize to operator via Telegram"
timeoutSeconds: 300
delivery:
mode: announce
Evening Summary (Daily, 8:00 PM):
name: "Evening Ops"
schedule:
kind: cron
expr: "0 20 * * *"
tz: "America/New_York"
sessionTarget: isolated
payload:
kind: agentTurn
message: "Evening summary: what was accomplished today, any pending items, tomorrow's priorities"
timeoutSeconds: 300
delivery:
mode: announce
Weekly Strategy Review (Monday, 9:00 AM):
name: "Weekly Strategy"
schedule:
kind: cron
expr: "0 9 * * 1"
tz: "America/New_York"
sessionTarget: isolated
payload:
kind: agentTurn
message: "Weekly review: analyze past week performance, update strategy, set 3 priorities for this week"
timeoutSeconds: 600
delivery:
mode: announce
| Use Heartbeat When | Use Cron When | |--------------------|---------------| | Multiple checks can batch | Exact timing matters | | Need recent conversation context | Task needs isolation | | Timing can drift (±15 min OK) | Different model needed | | Want to reduce API calls | One-shot reminders | | Interactive follow-up likely | Output goes to specific channel |
# HEARTBEAT.md
## Priority 1: Critical Alerts
- [Time-sensitive checks — positions, payments, security]
## Priority 2: Inbox Triage
- Check email for urgent items
- Check mentions/notifications
## Priority 3: Proactive Work
- Update documentation
- Review memory files
- Background research
## Quiet Hours
- 23:00-08:00: Only critical alerts
- If nothing to report: HEARTBEAT_OK
## Token Guard
- If usage seems high, note it
- Don't re-read large files unnecessarily
openclaw gateway startMulti-bot pattern: See Phase 4 config above.
Tips:
channels:
discord:
botToken: "..."
guildId: "..."
Tips:
<> to suppress embedschannels:
slack:
botToken: "xoxb-..."
appToken: "xapp-..."
| Platform | Tables | Headers | Links | Max Message |
|----------|--------|---------|-------|-------------|
| Telegram | ❌ | ❌ | ✅ | 4096 chars |
| Discord | ❌ | ✅ | <url> | 2000 chars |
| Slack | ❌ | ❌ | ✅ mrkdwn | 40000 chars |
| WhatsApp | ❌ | ❌ bold/CAPS | ✅ | 65536 chars |
# Search for skills
clawhub search "email marketing"
# Install a skill
clawhub install afrexai-email-marketing-engine
# Update all skills
clawhub update --all
# List installed
clawhub list
Build vs Install Decision:
Quality Signals:
my-skill/
├── SKILL.md # Main instructions (required)
├── README.md # Installation guide + description
├── references/ # Supporting docs
└── scripts/ # Automation scripts
SKILL.md Best Practices:
# ❌ NEVER hardcode secrets
ANTHROPIC_API_KEY=sk-ant-abc123 # In config files
export API_KEY=secret # In .bashrc committed to git
# ❌ NEVER log secrets
echo "Token is: $MY_TOKEN" # In scripts
console.log(apiKey) # In code
# Install
brew install 1password-cli # macOS
# or: https://1password.com/downloads/command-line
# Read a secret at runtime
op read "op://VaultName/ItemName/FieldName"
# In scripts
API_KEY=$(op read "op://MyVault/Brave Search/api_key")
# Store in ~/.openclaw/vault/ (gitignored)
echo "export MY_KEY=value" > ~/.openclaw/vault/my-service.env
# Source in scripts
source ~/.openclaw/vault/my-service.env
trash > rm — recoverable beats gone forever| Strategy | Savings | Implementation | |----------|---------|----------------| | Use Haiku for simple tasks | 90%+ | Model override per cron | | Limit heartbeat frequency | 50-70% | Increase intervalMs | | Spawn sub-agents | Variable | Isolate heavy work | | Trim MEMORY.md regularly | 20-30% | Weekly maintenance | | Use file offsets | 10-20% | Read only what you need | | HEARTBEAT_OK when nothing to do | 80%+ per beat | Check before acting |
sessions_spawn for independent heavy work# Check status
openclaw status
# View session usage
# In chat: /status
Track in memory/token-costs.md:
## 2026-02-19
- Morning briefing: ~$0.05
- Heartbeats (6x): ~$0.15
- Main session: ~$0.30
- Sub-agents: ~$0.10
- **Daily total: ~$0.60**
These patterns come from running 9+ agents in production 24/7.
Don't blast every event to the user. Route through tiers:
Default to Tier 3. Promote only with clear justification.
For truly autonomous agents:
## In AGENTS.md:
OPERATOR IS OUT OF THE LOOP — run EVERYTHING autonomously.
Only message when: 💰 sale, 📊 morning/evening briefing, 🚨 critical break.
## Weekly (during heartbeat):
1. Read recent memory/YYYY-MM-DD.md files
2. Distill significant events to MEMORY.md
3. Remove outdated info from MEMORY.md
4. Clean up temp files
## In HEARTBEAT.md:
- If a task failed, note what went wrong
- If you spot a repeated pattern, create a script
- Weekly: review AGENTS.md — still accurate? Trim bloat.
- Build capabilities over time
One agent, multiple surfaces:
Use cron jobs to automate content distribution:
| Problem | Likely Cause | Fix |
|---------|-------------|-----|
| Agent not responding | Gateway not running | openclaw gateway start |
| "Rate limit" errors | Too many API calls | Increase heartbeat interval, use cheaper model |
| Agent forgets context | Session expired/new | Check MEMORY.md is being maintained |
| Wrong personality | SOUL.md not loaded | Ensure session startup reads SOUL.md first |
| Telegram not connecting | Invalid bot token | Re-check token from @BotFather |
| Cron not firing | Wrong timezone | Verify tz field in schedule |
| Agent too chatty in groups | No silence rules | Add "when to stay silent" to AGENTS.md |
| High token costs | Large files re-read | Use offsets, trim MEMORY.md, spawn sub-agents |
| Git push timeout | Network/auth issue | Use GitHub API instead of git CLI |
| 1Password hanging | Keychain issue on macOS | Use service account token, not desktop app |
Run periodically:
# 1. Gateway running?
openclaw status
# 2. Config valid?
openclaw gateway config --validate
# 3. Workspace files exist?
ls ~/.openclaw/workspace/{SOUL,AGENTS,IDENTITY,USER,MEMORY}.md
# 4. Memory not bloated?
wc -c ~/.openclaw/workspace/MEMORY.md # Should be <50KB
# 5. Skills up to date?
clawhub list
| Dimension | Weight | Score 0-10 | |-----------|--------|-----------| | Personality (SOUL.md depth) | 15% | | | Memory System (3-layer) | 15% | | | Automation (crons + heartbeat) | 15% | | | Security (secrets management) | 10% | | | Multi-Channel | 10% | | | Skills Ecosystem | 10% | | | Cost Optimization | 10% | | | Self-Improvement | 10% | | | Documentation | 5% | |
Scoring: 0-30 = Beginner, 31-50 = Intermediate, 51-70 = Advanced, 71-90 = Expert, 91-100 = Master
This skill gives you the complete OpenClaw operating system. Want industry-specific agent configurations with pre-built workflows?
AfrexAI Context Packs ($47 each):
Browse all: https://afrexai-cto.github.io/context-packs/
afrexai-agent-engineering — Build & manage multi-agent systemsafrexai-prompt-engineering — Master prompt designafrexai-vibe-coding — AI-assisted development masteryafrexai-productivity-system — Personal operating systemafrexai-technical-seo — Complete SEO audit systemInstall any: clawhub install afrexai-[name]
Built with 💛 by AfrexAI — Autonomous intelligence for modern business. https://afrexai-cto.github.io/context-packs/
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-1kalin-afrexai-openclaw-mastery/snapshot"
curl -s "https://xpersona.co/api/v1/agents/clawhub-skills-1kalin-afrexai-openclaw-mastery/contract"
curl -s "https://xpersona.co/api/v1/agents/clawhub-skills-1kalin-afrexai-openclaw-mastery/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-1kalin-afrexai-openclaw-mastery/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/clawhub-skills-1kalin-afrexai-openclaw-mastery/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/clawhub-skills-1kalin-afrexai-openclaw-mastery/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-skills-1kalin-afrexai-openclaw-mastery/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-skills-1kalin-afrexai-openclaw-mastery/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-skills-1kalin-afrexai-openclaw-mastery/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-17T00:12:37.201Z"
}
},
"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": "batch",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "drift",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:batch|supported|profile capability:drift|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/1kalin/afrexai-openclaw-mastery",
"sourceUrl": "https://github.com/openclaw/skills/tree/main/skills/1kalin/afrexai-openclaw-mastery",
"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-1kalin-afrexai-openclaw-mastery/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/clawhub-skills-1kalin-afrexai-openclaw-mastery/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-1kalin-afrexai-openclaw-mastery/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/clawhub-skills-1kalin-afrexai-openclaw-mastery/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 afrexai-openclaw-mastery and adjacent AI workflows.