WakeIQX Playground โ
Experience the 5-layer temporal intelligence architecture with interactive scenarios. Each demo shows how WakeIQX tracks context across time dimensions: Past (WHY), Present (HOW), Future (WHAT), Adaptive (HOW WELL), and Personality (HOW FRAMED).
๐ฎ WakeIQX Playground
Experience 4-layer temporal intelligence with interactive scenarios
Development Session - Causal Chain
See how Layer 1 (Causality Engine) tracks decision history backwards through time
Memory Tier Evolution
Watch how Layer 2 (Memory Manager) manages context lifecycle over time
Future Context Prediction
See Layer 3 (Propagation Engine) predict which contexts you'll need next
Save Context & Reconstruct Reasoning
Create a new context and later understand WHY it was created
Adaptive Weights โ Layer 4 in Action
See how Layer 4 (Meta-Learning) tunes prediction weights based on your project's actual access patterns
Semantic Search Across Time
Find contexts by keyword and see how they connect across all 4 layers
About These Examples โ
All scenarios above are based on real MCP tool implementations with:
- Actual tool schemas from the WakeIQX codebase
- Real 5-layer architecture (Causality, Memory, Propagation, Meta-Learning, Personality Modes)
- Authentic responses matching actual tool output format
What You're Seeing: โ
- User Query - Natural language question about context
- Tool Invocation - MCP server selects appropriate tool and parameters
- Tool Result - Temporal intelligence analysis across layers
- WakeIQX Response - Actionable insights with causal chains, memory tiers, and predictions
The 5-Layer Brain Architecture: โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Layer 5: PERSONALITY MODES (Presentation) โ
โ historian ยท prophet ยท archaeologist ยท minimalist โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Layer 4: META-LEARNING (Adaptive - HOW WELL) โ
โ Tunes prediction weights per project over time โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Layer 3: PROPAGATION ENGINE (Future - WHAT) โ
โ Predicts which contexts will be needed next โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Layer 2: MEMORY MANAGER (Present - HOW) โ
โ Manages context relevance and lifecycle โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Layer 1: CAUSALITY ENGINE (Past - WHY) โ
โ Tracks decision history and reasoning chains โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโKey Features Demonstrated: โ
- ๐ Layer 1: Causality Engine - Backward causal chain reconstruction
- ๐พ Layer 2: Memory Manager - Memory tier evolution (ACTIVE โ RECENT โ ARCHIVED โ EXPIRED)
- ๐ฎ Layer 3: Propagation Engine - Multi-factor prediction scoring (temporal + causal + frequency)
- ๐ Layer 4: Meta-Learning - Per-project adaptive weight tuning based on real outcomes
- ๐ญ Layer 5: Personality Modes - historian, prophet, archaeologist, minimalist
- โก Cross-Layer Integration - How all five layers work together
- ๐ Temporal Analytics - Statistics and insights across time dimensions
Memory Tier System: โ
| Tier | Age | Purpose | Example |
|---|---|---|---|
| ๐ฅ ACTIVE | < 1 hour | Hot, frequently accessed | Current work session |
| โก RECENT | 1-24 hours | Warm, recently used | Today's context |
| ๐ฆ ARCHIVED | 1-30 days | Cold, aging | Last week's work |
| โ๏ธ EXPIRED | > 30 days | Pruning candidates | Old contexts |
Prediction Scoring Algorithm: โ
Combined Score = (Temporal ร wโ) + (Causal ร wโ) + (Frequency ร wโ)
Default weights: wโ = 0.40, wโ = 0.30, wโ = 0.30
- Temporal: Recent access patterns and momentum
- Causal: Position in causal chain (root causes score higher)
- Frequency: Overall popularity and access count
Weights adapt per project via Layer 4 Meta-Learning after 20+ recorded outcomes. Each project learns its own optimal blend โ see the Adaptive Weights scenario above.
Want to Try the Real Thing? โ
To use WakeIQX with your own projects:
- Install Claude Desktop - Required for MCP integration
- Clone the Repo - Open source on GitHub
- Follow Setup Guide - 5-minute configuration with Cloudflare D1
Real-World Use Cases โ
๐ Development Session Tracking โ
// Save context with causality
save_context({
project: "my-app",
summary: "Implemented OAuth2 authentication",
context: "Chose OAuth2 over JWT for third-party integrations",
causedBy: "ctx_security_discussion_123",
actionType: "implementation",
rationale: "Need social login providers"
})
// Later: Why did I choose OAuth2?
reconstruct_reasoning({
snapshotId: "ctx_oauth_implementation_456"
})
// โ See the full causal chain back to original discussion๐พ Memory Management โ
// Check memory health
get_memory_stats({
project: "my-app"
})
// โ See tier distribution, identify expired contexts
// Clean up old contexts
prune_expired_contexts({
limit: 50
})
// โ Remove contexts older than 30 days๐ฎ Proactive Context Loading โ
// Get prediction scores
get_high_value_contexts({
project: "my-app",
minScore: 0.6,
limit: 10
})
// โ Pre-fetch likely-needed contexts before starting work
// Update predictions
update_predictions({
project: "my-app",
staleThreshold: 3600 // 1 hour
})
// โ Recalculate scores for fresh recommendationsโก Full Workflow Example โ
// Morning: Start work session
const recentContexts = await load_context({
project: "my-app",
limit: 5
})
// Identify what you were working on
const causalChain = await build_causal_chain({
snapshotId: recentContexts[0].id
})
// Get predictions for today's work
const predictions = await get_high_value_contexts({
project: "my-app",
minScore: 0.7
})
// Work throughout the day, saving contexts...
// Evening: Check memory health
const stats = await get_memory_stats({
project: "my-app"
})Technical Deep Dive โ
Interested in how the 5-layer architecture works under the hood?
- Architecture Overview - Complete system design
- Layer 1: Causality Engine - Decision history tracking
- Layer 2: Memory Manager - Lifecycle management
- Layer 3: Propagation Engine - Prediction scoring
- Layer 4: Meta-Learning - Adaptive weight tuning
- Layer 5: Personality Modes - Temporal postures
- Tools Documentation - All 15 MCP tools
- API Reference - Service interfaces and entities
Ready to add temporal intelligence to your AI workflows?
Past โ Present โ Future โ Adaptive โ Personality | Temporal Intelligence for AI Agents ๐ฆ
