Select or create a conversation to begin...
๐ง Cortex Command Guide
๐ฌ Natural Language (Recommended)
Just talk to Cortex naturally - it will convert to proper commands!
๐ฐ News & Research
"Check Google News for AI stories"
โ Cortex converts to web request + routes to news-capable AI
"Get latest tech headlines from TechCrunch"
โ Cortex fetches and summarizes headlines
"What's happening with Tesla stock today?"
โ Cortex requests financial data and analysis
๐พ Data & Memory
"Remember that I prefer morning workouts"
โ Cortex stores personal preference data
"Show me my exercise history from this month"
โ Cortex queries your fitness data
"Track this meeting: discussed project timeline"
โ Cortex logs meeting notes
๐ค AI Management
"Ask Bob to analyze this data"
โ Cortex routes directly to Bob AI
"Get creative input from multiple AIs"
โ Cortex routes to creative-focused AIs
"Only send this to AIs that know finance"
โ Cortex intelligently selects relevant AIs
โก Advanced Commands (Power Users)
Direct system commands for precise control - mix with natural language!
๐ Inline Data Queries (~{...}~)
My workout progress: ~{SELECT COUNT(*) FROM lim_exercises WHERE date >= '2025-01-01'}~ sessions this year
โ Substitutes query result directly in message
Based on ~{SELECT AVG(duration) FROM lim_workouts WHERE date >= DATE_SUB(CURDATE(), INTERVAL 30 DAY)}~ minutes average, I need advice
โ Real-time data integration in conversation
~{SELECT stock_price FROM market_data WHERE symbol='AAPL' ORDER BY date DESC LIMIT 1}~
โ Get latest Apple stock price inline
๐พ Permanent Data Storage (~<...>~)
~<INSERT INTO lim_notes (note, date) VALUES ('Important meeting with client X', CURDATE())>~
โ Stores data permanently, continues conversation
~<INSERT INTO lim_workouts (exercise, duration, date) VALUES ('Running', 45, CURDATE())>~
โ Log workout automatically
~<UPDATE lim_goals SET status='completed' WHERE goal_name='Q1 targets'>~
โ Update goal status
๐ Web Intelligence (~{WEB_REQUEST...}~)
Latest news: ~{WEB_REQUEST: https://news.google.com, mode: headlines}~
โ Fetches and summarizes current headlines
~{WEB_REQUEST: https://finance.yahoo.com/quote/TSLA, mode: financial_data}~
โ Get Tesla financial data
Research: ~{WEB_REQUEST: https://techcrunch.com, mode: articles}~
โ Summarize latest tech articles
๐ Quick Data Patterns
~{SELECT exercise, COUNT(*) as frequency FROM lim_workouts GROUP BY exercise ORDER BY frequency DESC}~
โ Exercise frequency analysis
~{SELECT DATE(created) as day, COUNT(*) as tasks FROM lim_tasks WHERE created >= DATE_SUB(CURDATE(), INTERVAL 7 DAY) GROUP BY day}~
โ Weekly task creation pattern
๐ Command Combinations
I just completed a 5K run ~<INSERT INTO lim_workouts (exercise, duration) VALUES ('5K Run', 32)>~. My average this month is ~{SELECT AVG(duration) FROM lim_workouts WHERE exercise LIKE '%Run%' AND date >= DATE_SUB(CURDATE(), INTERVAL 30 DAY)}~ minutes. Any thoughts?
โ Store data + query data + ask for analysis
๐ฏ Command Format Reference
Command Types
~{...}~ = Inline Queries
Executes SQL and substitutes result directly in message
~<...>~ = Data Storage
Executes INSERT/UPDATE and continues conversation
~{WEB_REQUEST: url, mode: type}~ = Web Intelligence
Fetches and processes web content (uses API credits)
๐ Security Notes
โ
Allowed: SELECT, INSERT, UPDATE
Safe operations for data access and storage
โ Blocked: DROP, DELETE, TRUNCATE, ALTER
Dangerous operations are automatically rejected
๐ก๏ธ AI Data Isolation: Each AI's data is prefixed with their name
AIs can only access their own data + shared tables
๐ก Pro Tips
- Cortex is Smart: Use natural language first - it understands context and intent
- Be Specific: "Get Tesla news from reliable sources" vs "Get news"
- Name AIs: "Ask Bob to..." routes directly to that AI
- Data Privacy: Your data is stored with your AI name prefix for security
- Web Costs: Web requests use API credits, so be judicious
- Command Mixing: You can use natural language AND technical commands together
๐ Sample Advanced Searches
Market Research: "Check Apple stock price and get recent news about iPhone sales from major tech sites"
Competitive Analysis: "Compare recent AI announcements from Google, Microsoft, and OpenAI"
Personal Analytics: "Show my productivity patterns from my logged data and suggest improvements"
Research Synthesis: "Gather climate change data from multiple sources and have our analytical AIs debate the findings"
Creative Collaboration: "I need creative input on this marketing campaign - involve our most creative AIs"
๐ง Debug & Testing Commands
For system testing and conversation analysis
๐ Cortex Action Tags (For AI Use)
~<ECHO_TO_AI entity="NEXUS" message="Please elaborate on your analysis">~
โ Cortex sends feedback directly to specified AI
~<SQL>SELECT COUNT(*) FROM matrix_communications WHERE conversation_id = 'current'~
โ Cortex executes safe database query
๐ Debug Links (Click to Test)
๐ Open conversationlog_OpenAI (Current Conversation)
โ View current conversation in OpenAI format
๐ Open conversationlog_OpenAI with Debug Mode
โ View with processing logs & Cortex activity
๐ View AI Bootstrap Configuration
โ See how AIs are configured for this conversation
๐ View All Available Entities
โ See all AIs registered in the system
๐งช Test Patterns
~<ECHO_TO_AI entity="AXIOM" message="Test message for debugging">~ Testing echo functionality
โ Test action tag processing
Debug: ~{SELECT entity_name, COUNT(*) as message_count FROM matrix_communications WHERE conversation_id = '{current_conversation}' GROUP BY entity_name}~
โ Check message counts per AI in current conversation
Status check: ~{SELECT response_round, COUNT(*) FROM matrix_communications WHERE conversation_id = '{current_conversation}' GROUP BY response_round ORDER BY response_round DESC LIMIT 5}~
โ View recent response round activity
๐ Quick Copy Commands
1
1