Install
openclaw skills install @jlacroix82/agent-researcherKnowledge builder that extracts entities, relationships, and key facts from web pages, documents, and files. Builds a searchable knowledge base with entity resolution and auto-summarization. Integrates with memory-router.
openclaw skills install @jlacroix82/agent-researcherTurn everything you read into a searchable knowledge base.
Agents read web pages, docs, and files — but the knowledge disappears after the session. No persistent knowledge base, no entity tracking, no relationship mapping.
Research Assistant fixes this with one tool.
node skills/research-assistant/research-assistant.js --extract /path/to/file.md
Extracts entities (proper nouns, numbers, URLs, emails), relationships, and creates a summary.
node skills/research-assistant/research-assistant.js --extract https://example.com/article
Fetches the page, strips HTML, extracts entities and relationships.
node skills/research-assistant/research-assistant.js --extract --all /path/to/docs
Processes all .md, .txt, and .json files in a directory.
node skills/research-assistant/research-assistant.js --search "machine learning"
Searches all indexed sources by entities and content.
node skills/research-assistant/research-assistant.js --summarize "climate change"
Collects all relevant entities and sources, generates a summary with key findings.
node skills/research-assistant/research-assistant.js --graph
Shows entities grouped by type and their relationships.
node skills/research-assistant/research-assistant.js
Overview of indexed sources, unique entities, relations, and entity type breakdown.
Research Assistant builds on the same entity resolution system as MemoryRouter. Entities extracted from research can be linked to MEMORY.md sections for persistent memory.
No config needed. Knowledge base is stored in memory/research/.
Override data directory:
--dir /path/to/data
When reading new content:
--extract <file|url>--search <topic> before reading new content--summarize <topic> after extraction| Approach | Knowledge Retention | Setup | Maintenance |
|---|---|---|---|
| No knowledge base | 0% | None | None |
| Manual notes | 30-50% | High | High |
| Research Assistant | 80-95% | None | Automated |
| Vector DB | 80-95% | Very High | High |
Research Assistant gives you 80-95% knowledge retention with zero setup.