Remove cortex-workflow references since the command is not implemented and workflow orchestration is currently handled through composition of existing commands (agent, skills, review, plan, export, ai). - Remove workflow subcommand from validation and generation - Remove cortex-workflow.1 from manpage bundle - Delete placeholder cortex-workflow.1 manpage file This keeps the build clean and only bundles manpages for implemented commands (cortex.1 and cortex-tui.1).
Cortex Presentations
Reveal.js presentation decks for cortex project overview, demos, and enablement sessions.
📊 Available Presentations
🚀 Cortex Intro Overview
File: cortex-overview.html
Topics: High-level platform overview, AI intelligence, watch mode, asset manager, visual excellence
What's Covered:
- AI Intelligence System (context detection, pattern learning)
- Watch Mode (real-time monitoring, auto-activation)
- Asset Manager + setup guardrails
- Super Saiyan Mode (visual excellence system)
- Multi-LLM consult skill + provider settings
- Recent improvements and momentum
Screenshots: Agent galaxy, AI assistant, watch mode, asset manager, command palette
🧠 Technical Deep Dive
File: cortex-technical-deep-dive.html
Topics: Activation pipeline, intelligence signals, watch mode, skill ratings, plugin + CLI integration
What's Covered:
- Activation + recommendation pipeline
- Signal sources and confidence scoring
- Watch mode loop and tuning
- Skill ratings + feedback loop
- Plugin and CLI integration + install flow
- Operational controls for activation
Screenshots: Galaxy, AI assistant, watch mode, flags, CLI usage
📈 Executive Overview & Roadmap
File: cortex-executive-roadmap.html
Topics: Business value, capability highlights, adoption plan, and roadmap
What's Covered:
- Value proposition and operating leverage
- Capability highlights (watch mode, visual excellence, asset manager)
- Recent improvements and readiness
- Phased roadmap and adoption plan
- Risks and mitigations
Screenshots: AI assistant hero shot
🎨 Feature Catalog (TUI + CLI)
File: tui-showcase.html
Topics: Comprehensive feature catalog with how-to guidance and docs links
What's Covered:
- Agent Galaxy (Press g)
- AI Assistant (Press 0)
- AI Watch Mode (Press w)
- Agents (Press 2)
- Skills (Press 5)
- Command Palette (Ctrl+P)
- Slash Commands (Press /)
- Modes (Press 3)
- Profiles (Press 8)
- Principles (Press p)
- Flags Explorer (Press F)
- Workflows (Press 6)
- Scenarios (Press S)
- Worktrees (Press C)
- Asset Manager (Press A)
- Hooks Manager (Press h)
- Backup Manager (Press b)
- Memory Vault (Press M)
- MCP Manager (Press 7)
- Export (Press 9)
- Setup Wizard (Press I)
- Shortcuts & Help (Press ?)
- CLI Usage (Terminal)
Screenshots: Full-screen TUI captures with feature descriptions and docs links
🚀 Viewing Presentations
Local Development Server
Option 1: Python HTTP Server
cd presentations
python3 -m http.server 8080
# Then open in browser:
open http://localhost:8080/cortex-overview.html
open http://localhost:8080/cortex-technical-deep-dive.html
open http://localhost:8080/cortex-executive-roadmap.html
open http://localhost:8080/tui-showcase.html
Option 2: Node.js HTTP Server
cd presentations
npx http-server -p 8080
# Then open in browser:
open http://localhost:8080/cortex-overview.html
open http://localhost:8080/cortex-technical-deep-dive.html
open http://localhost:8080/cortex-executive-roadmap.html
open http://localhost:8080/tui-showcase.html
Direct File Opening
open presentations/cortex-overview.html
open presentations/cortex-technical-deep-dive.html
open presentations/cortex-executive-roadmap.html
open presentations/tui-showcase.html
Note: Some features may require a local server due to CORS restrictions.
🎨 Presentation Style
Theme: Dark mode with blue/magenta gradient Font: Rubik (Google Fonts) Framework: Reveal.js 5 Features:
- Smooth fade transitions
- Animated gradients and glows
- Hover effects on cards and badges
- Glass morphism design
- Responsive grid layouts
⌨️ Keyboard Controls
Navigation:
→/Space- Next slide←- Previous slideHome- First slideEnd- Last slideEsc- Slide overview
Presentation:
F- FullscreenS- Speaker notes (if available)B/.- Pause/blackout?- Help overlay
🎯 Use Cases
- Project Overview - Intro deck for team onboarding
- Technical Deep Dive - Activation, intelligence, watch mode, and ratings
- Executive Briefings - Roadmap and adoption planning
- Feature Catalog - Full capability walkthrough with docs links
- Demo Preparation - Review features before customer demos
- Enablement Sessions - Onboard new developers
- Progress Updates - Highlight recent improvements
📝 Creating New Presentations
To create a new presentation following the same style:
- Copy
cortex-overview.htmlas a template - Update the
<title>and metadata - Modify slide content within
<section>tags - Adjust
data-backgroundgradients for visual variety - Use existing CSS classes for consistency:
.feature-card- Feature highlights.callout- Important information boxes.two-col/.three-col- Grid layouts.badge- Technology/feature badges.mono- Code/command formatting
🎨 Color Palette
--primary-blue: #0256B6 /* Main brand blue */
--deep-navy: #001E62 /* Dark navy */
--sky-blue: #519DEC /* Bright sky blue */
--magenta: #D62597 /* Accent magenta */
--purple: #430098 /* Deep purple */
--success-green: #02B040 /* Success states */
--alert-orange: #E35205 /* Warnings */
📦 Dependencies
CDN Resources:
- Reveal.js 5: Core presentation framework
- Google Fonts: Rubik font family
- Fira Code: Monospace code font (system fallback)
No build step required - presentations work standalone.
🔧 Customization
Background Variations
<!-- Cool blue gradient -->
<section data-background="radial-gradient(circle at center, rgba(81, 157, 236, 0.3) 0%, rgba(2, 5, 16, 0.95) 60%)">
<!-- Warm magenta gradient -->
<section data-background="radial-gradient(circle at top left, rgba(214, 37, 151, 0.25) 0%, rgba(2, 5, 16, 0.95) 60%)">
<!-- Success green gradient -->
<section data-background="radial-gradient(circle at bottom right, rgba(2, 176, 64, 0.2) 0%, rgba(2, 5, 16, 0.95) 60%)">
Grid Layouts
<!-- Two columns -->
<div class="two-col">
<div>Left content</div>
<div>Right content</div>
</div>
<!-- Three columns -->
<div class="three-col">
<div class="feature-card">Card 1</div>
<div class="feature-card">Card 2</div>
<div class="feature-card">Card 3</div>
</div>
Feature Cards
<div class="feature-card">
<h3>Card Title</h3>
<p>Card description with <strong>highlighted text</strong></p>
<p>Use <span class="mono">code formatting</span> for commands</p>
</div>
📚 Resources
- Reveal.js Docs: https://revealjs.com/
- Google Fonts: https://fonts.google.com/specimen/Rubik
- Project README: ../README.md
- AI Intelligence Guide: ../guides/development/AI_INTELLIGENCE_GUIDE.md
- Watch Mode Guide: ../guides/development/WATCH_MODE_GUIDE.md
🎭 Presentation Tips
- Use speaker notes - Add
<aside class="notes">for presenter context - Practice timing - Aim for 2-3 minutes per slide
- Test locally first - Verify all animations and images work
- Prepare for questions - Have documentation links ready
- Use overview mode - Press
Escto see slide grid
🔄 Updates
When updating presentations:
- Update slide content in HTML
- Test in browser (both Chrome and Firefox)
- Verify all links and images work
- Update this README if adding new presentations
- Consider exporting to PDF for distribution
📤 Exporting
To PDF:
- Open presentation in Chrome
- Add
?print-pdfto URL - Use Print → Save as PDF
- Ensure "Background graphics" is enabled
Example:
http://localhost:8080/cortex-overview.html?print-pdf
Questions? See the main README or check the Reveal.js documentation.