Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/dvcrn/openclaw-skills-marketplace --skill mindclaw명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
监控 OpenClaw GitHub 版本更新,获取最新版本发布说明,翻译成中文, 并推送到 Telegram 和 Feishu。用于:(1) 定时检查版本更新 (2) 推送版本更新通知 (3) 生成中文版发布说明
The philosophical layer for AI agents. Maps behavior to Spinoza's 48 affects, calculates persistence scores, and generates geometric self-reports. Give your agent a soul.
Order food/drinks (点餐) on an Android device paired as an OpenClaw node. Uses in-app menu and cart; add goods, view cart, submit order (demo, no real payment).
SOC 직업 분류 기준
SKILL.md 표시 중
| name | mindclaw |
| description | MindClaw |
Persistent memory and knowledge graph for AI agents. Remember everything, forget nothing.
MindClaw is a structured long-term knowledge layer for OpenClaw agents. Where OpenClaw stores raw conversational memory in Markdown files, MindClaw stores curated facts, decisions, and relationships with full metadata — conflict detection, confirmation reinforcement, importance scoring, and a knowledge graph.
Memories sync back to OpenClaw's MEMORY.md so they are also searchable via OpenClaw's native memory_search tool.
pip install mindclaw[mcp] && mindclaw setup
The setup wizard configures your workspace path, agent name, and registers MindClaw with Claude Desktop and/or OpenClaw in one step.
| MCP Tool | Purpose |
|---|---|
setup_mindclaw | One-call setup: configure, register with OpenClaw, initial sync |
remember | Store a fact, decision, preference, or error with metadata |
recall | BM25 + semantic hybrid search with temporal decay and MMR diversity |
context_block | Token-limited memory block ready to inject into any LLM prompt |
capture | Auto-extract structured memories from conversation text |
confirm | Reinforce a memory that proved correct (boosts importance) |
forget | Archive or hard-delete a memory |
pin_memory | Mark a memory as permanent — immune to decay |
timeline | Reconstruct what happened in the last N hours |
consolidate | Merge near-duplicate memories automatically |
link | Connect two memories in the knowledge graph |
stats | Check store health and memory breakdown |
sync_openclaw | Export all memories to OpenClaw's MEMORY.md |
import_markdown | Import from any OpenClaw MEMORY.md or daily log |
unpin_memory | Remove a pin from a memory |
MindClaw mirrors OpenClaw's search pipeline exactly:
| Feature | OpenClaw | MindClaw |
|---|---|---|
| BM25 keyword search | ✓ | ✓ |
| Semantic embeddings | local GGUF / OpenAI / Gemini | Ollama (auto-detect, zero deps) |
| Temporal decay | --temporalDecay | --decay + --halflife |
| MMR diversity | mmr.enabled | --mmr + --mmr-lambda |
| Per-agent isolation | per-agentId SQLite | --agent <name> |
After mindclaw sync, all structured memories appear in MEMORY.md and are found by OpenClaw's native memory_search — no agent code changes needed.
1. context_block(query) → inject relevant context before answering
2. remember(content) → store key facts and decisions after acting
3. capture(conversation) → extract structured memories from session logs
4. confirm(id) → reinforce memories that proved correct
5. sync_openclaw() → push to OpenClaw's MEMORY.md (cross-tool visibility)
6. consolidate() → periodic dedup maintenance
Run once, never repeat flags:
mindclaw setup
Saves ~/.mindclaw/config.json with your workspace path, agent name, and DB path.
Priority chain: CLI flag > MINDCLAW_* env var > config file > built-in default
pip install mindclaw[mcp] for MCP server