Knowledge work loop for OpenClaw: brainstorm, plan, review, execute, and compound learnings into durable memory.
Inspired by EveryInc/compound-knowledge-plugin by Austin Tedesco at Every. Adapted for OpenClaw's plugin system and memory architecture.
Clawpound Knowledge provides six workflow skills that form a compounding loop:
/kw:brainstorm-- Brain dump capture, extract decisions/questions/constraints, search knowledge base/kw:plan-- Research past work, structure plans grounded in data and past learnings/kw:confidence-- Epistemic gut-check before proceeding/kw:review-- Parallel strategic alignment and data accuracy review/kw:work-- Execute plans batch-by-batch with progress tracking/kw:compound-- Extract and save learnings so the next cycle starts smarter
Each cycle produces learnings saved to memory/knowledge/, which OpenClaw's memory_search automatically indexes. Future planning cycles find these learnings, closing the loop.
openclaw plugins install -l /path/to/clawpound-knowledgeOr via npm (once published):
openclaw plugins install @wonderchook/clawpound-knowledgeEnable the tools in your OpenClaw config:
{
"plugins": {
"entries": {
"clawpound-knowledge": {
"enabled": true,
"config": {
"knowledgeSubdir": "knowledge",
"plansDir": "plans",
"autoSuggestCompound": true
}
}
}
},
"agents": {
"defaults": {
"tools": {
"enable": ["clawpound-knowledge"]
}
}
}
}Knowledge entries are stored in memory/knowledge/ within the OpenClaw workspace directory. This means:
memory_searchautomatically indexes and finds knowledge entries via hybrid BM25 + vector search- Knowledge entries are "evergreen" (no temporal decay since filenames aren't date-based)
- The
kw_knowledge_searchtool adds structured search by tags, type, and confidence
Plans are stored in plans/ at the workspace root -- they're working documents, not durable knowledge.
Three opt-in tools complement the skills:
kw_knowledge_save-- Save learnings with YAML frontmatter tomemory/knowledge/kw_knowledge_search-- Search knowledge entries by tags, type, or contentkw_knowledge_check_stale-- Find entries that conflict with or are superseded by new learnings
MIT -- see LICENSE.
This project is inspired by the compound-knowledge-plugin created by Austin Tedesco at Every, Inc. The original plugin provides the same knowledge work loop for Claude Code. Clawpound Knowledge adapts the concept for OpenClaw's plugin system, integrating with OpenClaw's memory architecture.