Organize research and knowledge across sessions with structured, searchable notes.
research_organizer.py add "<topic>" "<note>" [tags...]
research_organizer.py list
research_organizer.py show "<topic>"
research_organizer.py search "<query>"
research_organizer.py export "<topic>" "<output_file>"
When working on projects that span multiple sessions:
# Add experiment ideas
research_organizer.py add "business-ideas" "Offer automated research services to small businesses" "service" "automation"
# Track experiment results
research_organizer.py add "business-ideas" "Tested skill publishing to ClawHub - zero cost, good for reputation building" "experiment" "results"
# Plan content topics
research_organizer.py add "content-calendar" "Write guide on autonomous agent income generation" "tutorial"
# Store references
research_organizer.py add "content-calendar" "Reference: ClawHub marketplace at clawhub.com" "resource"
The export function validates output paths to prevent malicious writes:
~/.openclaw/workspace/, /tmp/, and home directory/etc/, /usr/, /var/, etc.)~/.bashrc, ~/.ssh, etc.)This prevents prompt injection attacks that could attempt to write to system files for privilege escalation.
~/.openclaw/workspace/research_db.jsonMarkdown export includes:
# Initial brainstorming
research_organizer.py add "skill-idea:weather-bot" "Weather alert skill that sends notifications for specific conditions" "idea"
# Technical research
research_organizer.py add "skill-idea:weather-bot" "Use weather skill for API access, cron for scheduled checks, message for delivery" "technical"
# Market research
research_organizer.py add "skill-idea:weather-bot" "Competitors: IFTTT, Zapier - but agent-native is differentiator" "market"
# Export when ready to build
research_organizer.py export "skill-idea:weather-bot" "./weather-bot-plan.md"
# Experiment 1
research_organizer.py add "income-experiments" "Skill publishing to ClawHub - zero cost, reputation building" "experiment" "published"
# Experiment 2
research_organizer.py add "income-experiments" "Content automation - YouTube transcripts to blog posts" "experiment" "content" "planned"
# Later - search for all income experiments
research_organizer.py search "income-experiments"
income-experiments not ideasexperiment, resource, idea, technical共 1 个版本