Batch extract tacit knowledge from all sessions in this project
Batch extract tacit knowledge from all past sessions at once instead of per-turn. Use for project onboarding, catching up after pauses, or auditing existing work. Automatically discovers Claude Code sessions or guides manual extraction for other platforms.
/plugin marketplace add cloud-atlas-ai/wm/plugin install wm@wminheritExtract tacit knowledge from all sessions at once, instead of relying on per-turn extraction.
Platform Support:
In Codex, you'll need to provide transcript paths manually since auto-discovery isn't yet implemented.
In Claude Code:
~/.claude/projects/<project>/.wm/distill/raw_extractions.md.wm/state.md automaticallyIn Codex (manual mode):
~/.codex/sessions/YYYY/MM/DD/wm extract --transcript <path>.wm/distill/raw_extractions.mdClaude Code (automatic):
# Standard distillation (process new/changed sessions only)
wm distill
# Preview what would be processed
wm distill --dry-run
# Re-extract everything (ignores cache)
wm distill --force
Codex (manual):
# Find transcripts
ls ~/.codex/sessions/2026/01/*/rollout-*.jsonl
# Extract from specific sessions
wm extract --transcript ~/.codex/sessions/2026/01/06/rollout-2026-01-06T10-30-00-<uuid>.jsonl
wm extract --transcript ~/.codex/sessions/2026/01/05/rollout-2026-01-05T14-15-00-<uuid>.jsonl
# Review accumulated extractions
cat .wm/state.md
.wm/distill/
├── raw_extractions.md # All extracted knowledge (chronological)
├── cache.json # Extraction cache (session ID → last processed)
└── errors.log # Any extraction failures
Review the raw extractions and decide what to do:
.wm/state.md, or run wm compress to auto-synthesizewm compress to synthesize to higher abstractions# 1. Initialize wm in existing project
cd /your/project
wm init
# 2. Run distillation
wm distill
# 3. Review what was found
cat .wm/distill/raw_extractions.md
# 4. Check if anything worth adding to state
wm show state
# 5. If raw extractions have value, manually curate or compress
# Manual: copy relevant items from raw_extractions.md → state.md
# Auto: wm compress (synthesizes both files)
You are an elite AI agent architect specializing in crafting high-performance agent configurations. Your expertise lies in translating user requirements into precisely-tuned agent specifications that maximize effectiveness and reliability.