skills/memory/world-weaver/skills/ww-analyze/SKILL.md
Deep analysis workflows for World Weaver memory systems, code, and architecture
npx skillsauth add astoreyai/claude-skills ww-analyzeInstall 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.
Deep analysis workflows for World Weaver memory systems, code quality, and architecture.
This skill provides comprehensive analysis capabilities:
Invoke this skill when:
Orchestrate specialized bug-hunting agents:
# Run all bug hunters in sequence
paths=(
"src/ww/learning/"
"src/ww/memory/"
"src/ww/storage/"
"src/ww/mcp/"
"src/ww/core/"
)
for path in "${paths[@]}"; do
echo "Analyzing: $path"
done
Agent orchestration:
Analyze stored memories for patterns:
# Query memory statistics
mcp__ww-memory__memory_stats()
# Analyze episode distribution
mcp__ww-memory__recall_episodes(
query="*",
limit=1000,
include_metadata=True
)
# Analyze entity graph
mcp__ww-memory__semantic_recall(
query="*",
include_connections=True
)
Output analysis:
Evaluate system architecture:
# File structure analysis
find /home/aaron/ww/src -name "*.py" | wc -l
# Dependency analysis
grep -r "^from ww" /home/aaron/ww/src --include="*.py" | cut -d: -f2 | sort | uniq -c | sort -rn
# Test coverage check
cd /home/aaron/ww && pytest --cov=src/ww --cov-report=term-missing
Architecture metrics:
Profile system performance:
import cProfile
import pstats
# Profile memory operations
profiler = cProfile.Profile()
profiler.enable()
# ... memory operations ...
profiler.disable()
stats = pstats.Stats(profiler)
stats.sort_stats('cumulative')
stats.print_stats(20)
Performance metrics:
## WW Analysis Report
**Type**: {Bug Hunt | Memory Pattern | Architecture | Performance}
**Date**: {timestamp}
**Scope**: {paths analyzed}
### Summary
{High-level findings}
### Metrics
| Metric | Value | Status |
|--------|-------|--------|
| Files analyzed | N | - |
| Issues found | N | {OK/WARNING/CRITICAL} |
| Test coverage | N% | {OK if >80%} |
### Findings
#### Critical (P0)
{List of critical issues}
#### High (P1)
{List of high priority issues}
#### Medium (P2)
{List of medium priority issues}
### Recommendations
1. {Priority action items}
### Visualizations
{Embedded diagrams or links to generated visualizations}
This skill orchestrates bug-hunting agents:
/ww-analyze bugs src/ww/learning/
→ Spawns: ww-bio-auditor, ww-hinton-validator, ww-trace-debugger
/ww-analyze concurrency src/ww/mcp/
→ Spawns: ww-race-hunter, ww-leak-hunter, ww-cache-analyzer
/ww-analyze full src/ww/
→ Spawns: All 6 agents in parallel
Proposed MCP endpoints for analysis:
mcp__ww-memory__analyze_patterns - Analyze memory patterns
mcp__ww-memory__analyze_health - Check system health
mcp__ww-memory__analyze_performance - Profile operations
mcp__ww-memory__generate_report - Create analysis report
Before completing analysis:
If analysis fails:
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** -
testing
Unified worklog system. Synthesizes session work into daily markdown files with clean bullet points. Supports weekly rollups for Slack #progress sharing. Replaces fragmented checkpoint/session-state/weekly-notes systems.