Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Organize your agent's knowledge using PARA (Projects, Areas, Resources, Archive) — then make it ALL searchable. The symlink trick enables full semantic search across your entire knowledge base, not just MEMORY.md. Includes session transcript indexing and memory flush protocol. Your agent finally has a real second brain.
Organize your agent's knowledge using PARA (Projects, Areas, Resources, Archive) — then make it ALL searchable. The symlink trick enables full semantic search across your entire knowledge base, not just MEMORY.md. Includes session transcript indexing and memory flush protocol. Your agent finally has a real second brain.
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.
Your agent's memory just got a massive upgrade. Full semantic search across your entire knowledge base — not just MEMORY.md.
Before v2.0: memory_search only found content in MEMORY.md and daily logs. Your entire notes/ folder was invisible to search. You had to manually know where to look. After v2.0: One symlink command makes your entire PARA knowledge base searchable. Ask about anything in your notes — it finds it. Plus session transcripts and memory flush protocol to prevent context loss. BeforeAfterSearch only MEMORY.md + daily logsSearch EVERYTHING"I don't have that information"Finds it instantlyContext compaction = lost informationFlush protocol saves critical contextConversations forgottenSession transcripts indexed
Creates a "second brain" structure that separates: Raw capture (daily logs) from curated knowledge (MEMORY.md) Active work (projects) from ongoing responsibilities (areas) Reference material (resources) from completed work (archive)
There's another popular second-brain skill powered by Ensue. Both are great — they solve different problems: PARA Second Brain (this skill)Ensue Second BrainStorageLocal files in your workspaceCloud API (Ensue)CostFree, self-hostedRequires Ensue API keyBest forWork context, agent continuity, project trackingEvergreen knowledge base, semantic queriesSearchClawdbot's memory_searchEnsue's vector searchStructurePARA (Projects/Areas/Resources/Archive)Namespaces (concepts/toolbox/patterns)Use case"What did we decide yesterday?""How does recursion work?" Use this skill if: You want file-based memory that works offline, costs nothing, and tracks ongoing work context. Use Ensue's skill if: You want a cloud-hosted knowledge base optimized for semantic "what do I know about X" queries. Use both if: You want PARA for work context + Ensue for evergreen knowledge. They complement each other.
workspace/ ├── MEMORY.md # Curated long-term memory ├── memory/ │ └── YYYY-MM-DD.md # Daily raw logs └── notes/ ├── projects/ # Active work with end dates ├── areas/ # Ongoing life responsibilities ├── resources/ # Reference material │ └── templates/ # Content templates └── archive/ # Completed/inactive items Run this to scaffold: mkdir -p memory notes/projects notes/areas notes/resources/templates notes/archive
By default, memory_search only indexes MEMORY.md and memory/*.md. Your entire notes/ folder is invisible to semantic search! Fix this with one command: ln -s /path/to/your/workspace/notes /path/to/your/workspace/memory/notes Example: ln -s /Users/yourname/clawd/notes /Users/yourname/clawd/memory/notes What this does: Creates a symbolic link so memory/notes/ points to your actual notes/ folder. Now Clawdbot's memory_search sees all your PARA notes. Verify it worked: ls -la memory/notes # Should show: memory/notes -> /path/to/notes Test the search: Ask your agent something that's in your notes but NOT in MEMORY.md. If it finds it, the symlink is working. Why this matters: BeforeAfterSearch only finds MEMORY.md + daily logsSearch finds ALL your notesMust manually know where to lookSemantic search across everything"I don't have that information"Finds connections you forgot existed
Make your past conversations searchable too. Add this to your Clawdbot config: "memorySearch": { "sources": ["memory", "sessions"], "query": { "minScore": 0.3, "maxResults": 20 } } What this does: Indexes your conversation transcripts alongside your notes. Now when you ask "what did we discuss about X last week?" — it can actually find it.
Your agent's context window is finite. When it fills up, older context gets compacted or lost. Don't lose important information.
Run session_status periodically. Look for: 📚 Context: 36k/200k (18%) · 🧹 Compactions: 0
Context %What to Do< 50%Normal operation. Write decisions as they happen.50-70%Increased vigilance. Write key points after each substantial exchange.70-85%Active flushing. Write everything important to daily notes NOW.> 85%Emergency flush. Stop and write full context summary before responding.After compactionImmediately note what context may have been lost. Check continuity.
Decisions made — what was decided and why Action items — who's doing what Open threads — anything unfinished → notes/areas/open-loops.md Working changes — if you discussed changes to files, make them NOW
Before a long session ends or context gets high: Key decisions documented? Action items captured? New learnings written to appropriate files? Open loops noted for follow-up? Could future-me continue this conversation from notes alone?
The core question: "Will future-me thank me for this?"
Concepts you actually understand (not half-learned ideas) Tools you've actually used (not just heard about) Patterns that worked (with concrete examples) Lessons learned from mistakes
Half-understood concepts (learn first, save after) Tools you haven't tried yet (bookmarks ≠ knowledge) Shallow entries without the WHY Duplicates of existing notes
Before saving any curated note: Written for future self who forgot context? Includes WHY, not just WHAT? Has concrete examples or key insight? Structured for retrieval (scannable)?
Use these for structured, high-quality entries in notes/resources/:
# [CONCEPT NAME] ## What It Is [One-line definition] ## Why It Matters [What problem it solves, when you'd need it] ## How It Works [Explanation with examples] ## Key Insight [The "aha" moment — what makes this click]
# [PATTERN NAME] ## Problem [What situation triggers this pattern] ## Solution [The approach] ## Trade-offs **Pros:** [Why this works] **Cons:** [When NOT to use it]
PARA is a knowledge organization system created by Tiago Forte, author of Building a Second Brain. It organizes everything into four categories based on actionability:
What: Work with a deadline or end state Examples: "Launch website", "Plan trip to Japan", "Finish client proposal" File as: notes/projects/website-launch.md
What: Ongoing responsibilities with no end date Examples: Health, finances, relationships, career development File as: notes/areas/health.md, notes/areas/dating.md
What: Reference material for future use Examples: Research, tutorials, templates, interesting articles File as: notes/resources/tax-guide.md, notes/resources/api-docs.md
What: Inactive items from the other categories Examples: Completed projects, outdated resources, paused areas Move to: notes/archive/ when done
Log notable events to memory/YYYY-MM-DD.md File topic-specific notes to appropriate notes/ folder
Review the week's daily logs Extract patterns and learnings to MEMORY.md Move completed projects to archive
Review MEMORY.md for outdated info Consolidate or archive old project notes Ensure areas reflect current priorities
Is it about today specifically? → memory/YYYY-MM-DD.md Is it a task with an end date? → notes/projects/ Is it an ongoing responsibility? → notes/areas/ Is it reference material for later? → notes/resources/ Is it done or no longer relevant? → notes/archive/ Is it a distilled lesson or preference? → MEMORY.md
Daily LogsMEMORY.mdRaw, timestampedCurated, organizedEverything capturedOnly what mattersChronologicalTopicalHigh volumeCondensed"What happened""What I learned" Daily logs are your journal. MEMORY.md is your wisdom.
Quality over quantity — Curated notes beat note hoarding Capture fast, curate deliberately — Daily logs are loose; curated notes are high quality Text > brain — If it matters, write it down Future-me test — "Will future-me thank me for this?" One home per item — Don't duplicate; link instead Include the WHY — Facts without context are useless Flush before you lose — Monitor context, write before compaction Pairs well with memory-setup for technical config and proactive-agent for behavioral patterns.
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.