Concept
A new mem:brainstorm skill that rapidly populates the knowledge graph through automated web research and Wikipedia link traversal, then ingests everything into agentmemory for dynamic belief formation.
Envisioned Workflow
- Prior art search: Web searches for the topic/hypothesis to find existing work
- Wikipedia seeding: Find Wikipedia articles covering key topics
- Link traversal game: Starting from a Wikipedia page, follow interesting links recursively:
- Scan the article for key concepts
- Click interesting links to related articles
- Scan those articles, find more links
- Backtrack or keep going based on relevance
- Humans do this for hours and retain a fraction; LLM + agentmemory could do it in seconds and retain everything
- Bulk ingestion: Dump all discovered information into the knowledge graph as uncertain beliefs
- Dynamic refinement: Talk through findings, run tests, let agentmemory hooks start dynamically firing and connecting things -- the graph self-organizes as beliefs get used, confirmed, or contradicted
Key Insight
The value is in the combination: rapid uncertain ingestion + agentmemory's existing feedback loops. You don't need high-confidence input if you have a good refinement mechanism. The brainstorm populates the graph with raw material; normal usage shapes it into knowledge.
Technical Considerations
- Subagent parallelization for multiple search/traverse paths simultaneously
- TTL on brainstorm-sourced beliefs (like wonder_generated) so stale unvalidated ones decay
- Rate limiting on web requests (Wikipedia has usage policies)
- Source attribution (which URL, which article, which link path)
- Depth limits on traversal to prevent runaway exploration
- Integration with existing wonder/wonder_ingest infrastructure
Related
Concept
A new mem:brainstorm skill that rapidly populates the knowledge graph through automated web research and Wikipedia link traversal, then ingests everything into agentmemory for dynamic belief formation.
Envisioned Workflow
Key Insight
The value is in the combination: rapid uncertain ingestion + agentmemory's existing feedback loops. You don't need high-confidence input if you have a good refinement mechanism. The brainstorm populates the graph with raw material; normal usage shapes it into knowledge.
Technical Considerations
Related