skills/memory/world-weaver/skills/ww-recall/SKILL.md
Recall memories from World Weaver using multi-strategy retrieval
npx skillsauth add astoreyai/claude-skills ww-recallInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Multi-strategy memory retrieval from World Weaver's tripartite memory system.
Search and retrieve relevant memories from:
Invoke this skill when:
mcp__ww-memory__recall_episodes - Search episodic memory
mcp__ww-memory__semantic_recall - Search knowledge graph
mcp__ww-memory__spread_activation - Graph traversal from seed
mcp__ww-memory__recall_skill - Find applicable skills
mcp__ww-memory__query_at_time - Point-in-time queries
Best for: General queries, finding similar content
mcp__ww-memory__recall_episodes(
query: "your search query",
limit: 10,
session_filter: null # All sessions, or specific session_id
)
Returns episodes ranked by:
Best for: "What did we do last week?", time-bounded queries
mcp__ww-memory__recall_episodes(
query: "project work",
limit: 10,
time_filter: {
after: "2025-11-20T00:00:00",
before: "2025-11-27T23:59:59"
}
)
Best for: Finding entities and their relationships
mcp__ww-memory__semantic_recall(
query: "concept or entity name",
limit: 10,
include_relationships: true
)
Best for: Exploring connections from a known starting point
mcp__ww-memory__spread_activation(
seed_entities: ["Entity A", "Entity B"],
max_depth: 2,
min_weight: 0.3
)
Returns entities connected to seeds, weighted by relationship strength.
Best for: "How do I...?", finding applicable procedures
mcp__ww-memory__recall_skill(
query: "how to run tests",
limit: 5,
check_preconditions: true,
context: {
project: "ww",
working_directory: "/home/aaron/ww"
}
)
Best for: "What did we know at time X?"
mcp__ww-memory__query_at_time(
query: "project status",
as_of: "2025-11-15T12:00:00"
)
For comprehensive recall, combine strategies:
Determine what the user is looking for:
Run appropriate strategies in parallel:
episodes = mcp__ww-memory__recall_episodes(query, limit=5)
entities = mcp__ww-memory__semantic_recall(query, limit=5)
skills = mcp__ww-memory__recall_skill(query, limit=3)
Combine results, removing duplicates by ID.
Re-rank by overall relevance:
Present as structured context:
## Memory Context
### Recent Episodes (3 found)
1. **[2025-11-27]** Fixed batch query bug in Neo4j store
- Outcome: success
- Relevance: 0.92
2. **[2025-11-26]** Implemented session isolation tests
- Outcome: success
- Relevance: 0.85
### Related Knowledge (2 entities)
1. **Neo4j** (CONCEPT)
- Graph database used for relationships
- Connected to: Qdrant, Cypher, World Weaver
2. **Batch Queries** (CONCEPT)
- Optimization pattern for N+1 elimination
### Applicable Skills (1 found)
1. **run-ww-tests**
- Run World Weaver test suite
- Preconditions: In WW directory, venv exists
| Parameter | Type | Description |
|-----------|------|-------------|
| query | string | Search query text |
| limit | int | Max results (default: 10) |
| session_filter | string | Filter by session ID |
| time_filter | object | After/before timestamps |
| Parameter | Type | Description |
|-----------|------|-------------|
| outcome_filter | string | success/failure/partial/neutral |
| min_valence | float | Minimum importance (0-1) |
| Parameter | Type | Description |
|-----------|------|-------------|
| entity_type | string | CONCEPT/PERSON/PLACE/etc |
| include_relationships | bool | Include connected entities |
| Parameter | Type | Description |
|-----------|------|-------------|
| check_preconditions | bool | Verify preconditions met |
| min_success_rate | float | Minimum skill success rate |
User: "What have we worked on recently?"
Action:
mcp__ww-memory__recall_episodes(
query="recent work projects tasks",
limit=10,
time_filter={after: "7 days ago"}
)
Output:
Found 8 recent episodes:
1. [Nov 27] Plugin architecture planning for World Weaver
2. [Nov 27] Fixed batch query bugs, session isolation
3. [Nov 26] Implemented HDBSCAN memory clustering
...
User: "How do I run the integration tests?"
Action:
mcp__ww-memory__recall_skill(
query="run integration tests",
limit=3,
check_preconditions=true
)
Output:
Found skill: run-ww-tests
Steps:
1. source .venv/bin/activate
2. pytest tests/integration/ -v -m integration
3. Check output for failures
User: "What do we know about Neo4j?"
Action:
1. mcp__ww-memory__semantic_recall(query="Neo4j", limit=1)
2. mcp__ww-memory__spread_activation(seed_entities=["Neo4j"], max_depth=2)
Output:
## Neo4j (CONCEPT)
Graph database for relationship storage.
### Connected Entities:
- Cypher (query language) - strength: 0.9
- Qdrant (co-storage) - strength: 0.8
- World Weaver (uses) - strength: 0.95
- Batch Queries (optimization) - strength: 0.7
User: "What did we do last week on the PhD project?"
Action:
mcp__ww-memory__recall_episodes(
query="PhD dissertation xai",
limit=10,
time_filter={
after: "2025-11-20",
before: "2025-11-27"
}
)
Output:
Found 4 episodes from Nov 20-27:
1. [Nov 25] Committee meeting preparation
2. [Nov 23] VGGFace2 dataset removal analysis
3. [Nov 21] Article C IEEE T-BIOM submission
4. [Nov 20] Experiment 6.1 planning
When presenting recall results:
If recall fails:
tools
# YouTube Transcriber Pipeline - Claude Code Skill **Version**: 1.0.0 | **Status**: Ready for Claude Code Integration ## Overview Complete 4-skill pipeline for extracting, formatting, organizing, and archiving YouTube transcripts. Integrates with Claude Code CLI using the system's configured API keys (no manual key management needed). ## Capabilities This skill provides a complete workflow: 1. **Extract Facts** - AI-powered fact extraction from transcripts (uses Claude API via Claude Code)
content-media
# YouTube Transcriber Skill Extract transcripts from YouTube videos, playlists, and channels with automatic intelligent processing. ## Overview One unified command that intelligently assesses input and handles everything—single videos, batch files, playlist expansion, channel extraction. No need to choose between commands; it figures out what to do. ## Capabilities - **Auto-Detect Input**: Single URL, file of URLs, playlist, channel - **Smart Expansion**: Automatically expands playlists/cha
development
# Trading Analysis Skill **Version**: 1.0.0 **Category**: Financial Analysis / Trading **Author**: Claude Code **Last Updated**: November 22, 2025 ## Overview Comprehensive trading performance analysis and edge identification system for Interactive Brokers accounts. Analyzes CSV statements to identify trading patterns, position sizing issues, time-of-day edges, and risk management problems. ## Features ### 1. **CSV Statement Parsing** - Parse Interactive Brokers activity statements (CSV for
development
# System Health Check & Cleanup Skill **Version**: 1.0.0 **Category**: System Administration / Performance Optimization **Author**: Claude Code **Last Updated**: November 22, 2025 ## Overview Automated system health monitoring and cleanup workflow. Diagnoses performance issues, identifies resource bottlenecks, fixes orphaned services, kills stale processes, and cleans cache bloat. Designed for archimedes (32c/125GB) but works on any Linux system. ## Features ### 1. **System Diagnostics** -