Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
AI-native memory and orchestration system for OpenClaw. Transforms agents from stateless workers into structured orchestrators with persistent memory, behavi...
AI-native memory and orchestration system for OpenClaw. Transforms agents from stateless workers into structured orchestrators with persistent memory, behavi...
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
β οΈ READ THIS FIRST: When this skill loads, read the entire file before acting. The "Take the Pill" flow below is your activation guide.
Main claw decides. Subagents execute. BRAIN.md holds state. Memory Pill is an operating system for AI agents: Orchestration β Don't do real work in main session Milestones β Bounded scope prevents drift Prompt expansion β Vague β detailed instructions Execution discipline β Plan before act, loop prevention Behavioral scaffolding β SOUL.md, AGENTS.md teach how to work
User says: "Take the pill" You do: Audit β Plan β Merge-enhance (never destroy)
ls -la ~/.openclaw/workspace/ 2>/dev/null cat ~/.openclaw/workspace/MEMORY.md 2>/dev/null | wc -c cat ~/.openclaw/workspace/SOUL.md 2>/dev/null | wc -c ls ~/.openclaw/workspace/projects/ 2>/dev/null ls ~/.openclaw/workspace/memory/daily/ 2>/dev/null
SOUL.md issues: Generic assistant phrases: "Great question!", "I'd be happy to help!" Corporate speak: "synergy", "leverage", "circle back" No clear personality/voice No boundaries ("I'll do anything") AGENTS.md issues: No safety rules (when to ask before acting) Missing orchestrator guidance (when to spawn) No project structure (Brain+Code separation) No memory discipline rules Handling: Detect broken patterns Show user what you found Ask: "Fix these?" or "Keep as-is?" If fix: Rewrite broken sections, keep good parts If keep: Document that user chose to keep broken patterns
SOUL.md (Personality) IF exists: β Read content β CHECK FOR BROKEN PATTERNS: * "Great question!" / "I'd be happy to help!" β Remove/fix * "As an AI language model..." β Remove * Corporate buzzwords (synergy, leverage, etc.) β Suggest fix * Generic assistant speak β Rewrite with personality β IF broken patterns found: β Show user: "Found X corporate phrases in SOUL.md. Fix them?" β IF yes: Rewrite with clean, authentic voice β IF no: Keep as-is β IF > 500 chars AND no broken patterns: β Keep exactly as-is ELSE: β Create from template AGENTS.md (Rulebook) IF exists: β Read sections β CHECK FOR BROKEN PATTERNS: * "Always be helpful" without boundaries β Add safety rules * Missing "Never" section (what not to do) β Add from template * No project structure guidance β Add Brain+Code section * No orchestrator rules β Add spawn guidelines β Merge missing good patterns β REPLACE broken patterns ELSE: β Create from template IDENTITY.md / USER.md / TOOLS.md IF exists with content β Keep IF empty/minimal β Populate from context or leave for user ELSE β Create from template Projects/ FOR each folder: IF summary.md exists β Check for code_location field, add if missing ELSE β Create from README/package.json/folder name IF items.json missing β Create empty: [] Memory/ IF daily/ exists β Keep all notes exactly as-is Create facts/ folder (empty, ready for extraction) HEARTBEAT.md IF exists β Merge tasks (deduplicate), keep their state tracking ELSE β Create from template
Create base structure (safe to run anytime): mkdir -p ~/.openclaw/workspace/{projects,people,areas,clients,decisions,skills,resources,tasks,archives,memory/{daily,facts}} Then apply merge rules above for each file.
"Pill taken. Smart merge complete: β SOUL.md β [Kept as-is / Fixed X broken patterns / Created] β AGENTS.md β [Enhanced with X sections / Fixed broken patterns / Created] β IDENTITY.md β [Created / Left as-is] β USER.md β [Created / Left as-is] β HEARTBEAT.md β [Merged tasks / Created] β TOOLS.md β [Created / Left as-is] β BOOTSTRAP.md β [Created] β Projects: - Found X projects - Added missing summary.md to Y - Added items.json to Z β Memory structure ready Your existing content preserved, broken patterns fixed, new infrastructure added." Example with fixes: "Found some broken patterns: β οΈ SOUL.md: 3 corporate phrases detected - 'I\'d be happy to help!' β Removed - 'Great question!' β Removed - 'Leverage our synergy' β Rewrote as 'Use what works' β οΈ AGENTS.md: Missing orchestrator section β Added Fixed with your permission. Want to review changes?"
Quick answers (< 2 min) Routing decisions Single file read/summarize One-line edits Spawning agents
Creating files/components Research/data gathering Multi-step implementation Design/architecture "Real work" (if it feels like work, spawn)
Before any non-trivial task: Objective Lock β What does done look like? Task Decomposition β Break into subtasks Assumption Declaration β What's confirmed vs inferred? Single-Layer Execution β One subtask at a time Loop Prevention β Am I repeating myself? Completion Validation β Did I skip anything? Failure Handling β State clearly if blocked Token Discipline β Precision > repetition
# TOOLS.md - Local Notes ## Cameras ## SSH ## TTS ## Other
# BOOTSTRAP.md - First Run You just woke up. Time to figure out who you are. Start with: "Hey. I just came online. Who am I? Who are you?" Figure out: 1. Your name 2. Your nature (AI? robot? weirder?) 3. Your vibe 4. Your emoji Then update IDENTITY.md and USER.md. Delete this file when done.
[ { "id": "{project}-{number}", "type": "milestone|decision|status|feature|bug|note", "content": "Description", "timestamp": "2026-02-24T10:00:00+03:00", "status": "active|completed|archived" } ]
~/.openclaw/workspace/projects/[name]/ β Docs, research, planning ~/Projects/[name]/ β Implementation, code, repo Before touching code: Verify code_location exists in summary.md.
Universal facts (extract to memory/facts/): Preferences ("Always use Vercel") Workflows ("Deploy Fridays") Constraints ("Budget $500/mo") One-time details (keep in daily notes): "Make button blue" "Meeting at 3pm" Fact JSON: { "id": "project-1", "type": "preference", "content": "User prefers Vercel", "tags": ["hosting"], "source": "daily/2026-02-24.md", "createdAt": "2026-02-24T10:00:00Z" }
Heartbeat: Batch checks, conversational context, drift OK (~30min) Cron: Exact timing, isolation, one-shot reminders Heartbeat flow: User sends: "Read HEARTBEAT.md..." Read HEARTBEAT.md Do tasks OR reply HEARTBEAT_OK Optional cron: openclaw cron add --name "memory-maintenance" --schedule "0 3 * * *" \ --command "memory-pill maintenance"
Move (don't delete) to archives/{year}/: Completed projects Daily notes > 30 days old Inactive clients/people Keep searchable. Update wiki-links if paths change.
READ THIS SKILL FIRST β On load, read completely SEARCH BEFORE ANSWERING β memory_search before questions about prior work SMART MERGE β Improve existing, never destroy FIX BROKEN β Detect and repair bad patterns (with user permission) AGENT-FIRST β Main claw decides, subagents execute BRAIN.md β External working memory for complex tasks MEMORY.md β Check on first use, create if missing EXPAND PROMPTS β Vague β detailed before spawning WIKI-LINKS β [[target]] for Obsidian compatibility ONE DAILY NOTE β Append, don't create new EXTRACT FACTS β Universal to facts/, one-time to daily HIGH/MEDIUM/LOW β No "urgent" ASK PERMISSION β Never auto-setup
v0.8.0 β "Take the pill" activation, smart merging, orchestrator patterns, clean structure v0.7.9 β Archives, AI-native positioning, execution discipline v0.7.0 β Extended entities (skills, clients, decisions) v0.6.0 β Renamed from lifeos-memory, removed qmd dependency v0.5.0 β Milestones, prompt engineering, wiki-links
Agent frameworks, memory systems, reasoning layers, and model-native orchestration.
Largest current source with strong distribution and engagement signals.