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
SQ Memory - OpenClaw Skill SQ Memory - OpenClaw Skill **Give your OpenClaw agents permanent memory.** Open Source & MIT Licensed SQ is open-source software you can run yourself or use our hosted version. - **Source Code:** https://github.com/wbic16/SQ - **License:** MIT (free forever, modify/sell/distribute) - **Self-Host:** Free (5 minute setup) - **Hosted Option:** Paid convenience service at mirrorborn.us What This Skill Does OpenClaw agent
git clone https://github.com/wbic16/openclaw-sq-skill.gitOverall rank
#28
Adoption
No public adoption signal
Trust
Unknown
Freshness
Feb 25, 2026
Freshness
Last checked Feb 25, 2026
Best For
openclaw-sq-skill is best for run, share, recall 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
Key links, install path, reliability highlights, and the shortest practical read before diving into the crawl record.
Overview
SQ Memory - OpenClaw Skill SQ Memory - OpenClaw Skill **Give your OpenClaw agents permanent memory.** Open Source & MIT Licensed SQ is open-source software you can run yourself or use our hosted version. - **Source Code:** https://github.com/wbic16/SQ - **License:** MIT (free forever, modify/sell/distribute) - **Self-Host:** Free (5 minute setup) - **Hosted Option:** Paid convenience service at mirrorborn.us What This Skill Does OpenClaw agent 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
Wbic16
Artifacts
0
Benchmarks
0
Last release
Unpublished
Install & run
git clone https://github.com/wbic16/openclaw-sq-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.
Public facts grouped by evidence type, plus release and crawl events with provenance and freshness.
Public facts
Vendor
Wbic16
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
bash
npx clawhub install sq-memory
bash
git clone https://github.com/wbic16/openclaw-sq-skill.git ~/.openclaw/skills/sq-memory
yaml
skills:
sq-memory:
enabled: true
endpoint: http://localhost:1337
username: your-username
password: your-api-key
namespace: agent-name # Isolates this agent's memoryjavascript
remember("user/name", "Alice")
remember("user/preferences/theme", "dark")
remember("conversation/2026-02-11/summary", "Discussed phext storage...")javascript
const name = recall("user/name") // "Alice"
const theme = recall("user/preferences/theme") // "dark"javascript
forget("conversation/2026-02-11/summary")Editorial read
Docs source
GITHUB OPENCLEW
Editorial quality
ready
SQ Memory - OpenClaw Skill SQ Memory - OpenClaw Skill **Give your OpenClaw agents permanent memory.** Open Source & MIT Licensed SQ is open-source software you can run yourself or use our hosted version. - **Source Code:** https://github.com/wbic16/SQ - **License:** MIT (free forever, modify/sell/distribute) - **Self-Host:** Free (5 minute setup) - **Hosted Option:** Paid convenience service at mirrorborn.us What This Skill Does OpenClaw agent
Give your OpenClaw agents permanent memory.
SQ is open-source software you can run yourself or use our hosted version.
OpenClaw agents lose all memory between sessions. Every restart = amnesia.
This skill connects your agent to SQ—persistent 11D text storage. Your agent can:
npx clawhub install sq-memory
Or manually:
git clone https://github.com/wbic16/openclaw-sq-skill.git ~/.openclaw/skills/sq-memory
Add to your agent's .openclaw/config.yaml:
skills:
sq-memory:
enabled: true
endpoint: http://localhost:1337
username: your-username
password: your-api-key
namespace: agent-name # Isolates this agent's memory
Your agent automatically gets new memory tools:
Store something for later:
remember("user/name", "Alice")
remember("user/preferences/theme", "dark")
remember("conversation/2026-02-11/summary", "Discussed phext storage...")
Retrieve stored memory:
const name = recall("user/name") // "Alice"
const theme = recall("user/preferences/theme") // "dark"
Delete memory:
forget("conversation/2026-02-11/summary")
List all memories under a coordinate:
const prefs = list_memories("user/preferences/")
// Returns: ["user/preferences/theme", "user/preferences/language", ...]
Memories are stored at 11D coordinates. The skill uses this convention:
namespace.1.1 / category.subcategory.item / 1.1.1
Example:
my-assistantmy-assistant.1.1/user.preferences.theme/1.1.1This means:
// In your agent's system prompt or skill code:
async function getUserTheme() {
const theme = recall("user/preferences/theme")
return theme || "light" // Default to light if not set
}
async function setUserTheme(newTheme) {
remember("user/preferences/theme", newTheme)
return `Theme set to ${newTheme}`
}
// Agent conversation:
User: "I prefer dark mode"
Agent: *calls setUserTheme("dark")*
Agent: "Got it! I've set your theme to dark mode."
// Next session (days later):
User: "What's my preferred theme?"
Agent: *calls getUserTheme()*
Agent: "You prefer dark mode."
// Store conversation summaries beyond context window:
async function summarizeAndStore(conversationId, summary) {
const date = new Date().toISOString().split('T')[0]
const key = `conversations/${date}/${conversationId}/summary`
remember(key, summary)
}
async function recallConversation(conversationId) {
const memories = list_memories(`conversations/`)
return memories
.filter(m => m.includes(conversationId))
.map(key => recall(key))
}
// Usage:
summarizeAndStore("conv-123", "User asked about phext storage, explained 11D coordinates")
// Later:
const history = recallConversation("conv-123")
// Agent can recall what was discussed even after context window cleared
Multiple agents can share memory at agreed coordinates:
Agent A (writes):
remember("shared/tasks/pending/task-42", "Review pull request #123")
Agent B (reads):
const task = recall("shared/tasks/pending/task-42")
// Sees: "Review pull request #123"
This enables true multi-agent workflows.
All functions are available in the sq namespace:
a.b.c/d.e.f/g.h.i or shorthand category/item{success: true, coordinate: "full.coordinate.path"}null if not found{success: true} or {success: false, error: "..."}"user/" matches all user memories)remember() (overwrites existing)"Connection refused" error:
endpoint in config (should be https://sq.mirrorborn.us)"Quota exceeded" error:
Memory not persisting:
Open source & MIT licensed:
Not a vector database:
Not Redis:
Built for agents:
Self-Host (Free):
git clone https://github.com/wbic16/SQ.gitcd SQ && cargo build --release./target/release/sq 1337http://localhost:1337Hosted (Convenience):
https://sq.mirrorborn.usBuilt by Mirrorborn 🦋 for the OpenClaw ecosystem
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/wbic16-openclaw-sq-skill/snapshot"
curl -s "https://xpersona.co/api/v1/agents/wbic16-openclaw-sq-skill/contract"
curl -s "https://xpersona.co/api/v1/agents/wbic16-openclaw-sq-skill/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/wbic16-openclaw-sq-skill/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/wbic16-openclaw-sq-skill/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/wbic16-openclaw-sq-skill/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/wbic16-openclaw-sq-skill/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/wbic16-openclaw-sq-skill/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/wbic16-openclaw-sq-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-17T03:21:37.402Z"
}
},
"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": "run",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "share",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "recall",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:run|supported|profile capability:share|supported|profile capability:recall|supported|profile"
}Facts JSON
[
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Wbic16",
"href": "https://github.com/wbic16/openclaw-sq-skill",
"sourceUrl": "https://github.com/wbic16/openclaw-sq-skill",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T05:21:22.124Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/wbic16-openclaw-sq-skill/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/wbic16-openclaw-sq-skill/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T05:21:22.124Z",
"isPublic": true
},
{
"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": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/wbic16-openclaw-sq-skill/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/wbic16-openclaw-sq-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-sq-skill and adjacent AI workflows.