Your Sessions, From Anywhere
Every session is visible in one place. Agents that ran overnight, debugging sessions from your phone, all in one list.
Remote Sessions
Pilot Claude Code from your phone, tablet, or any browser. Your machine does the work. You just steer.
Autonomous Triggers
A Slack message starts an investigation. A Discord alert triggers a fix. Agents run while you sleep, and report back.
Real Conversation, Real Tools
C3 streams Claude Code's full output: thinking, tool calls, file edits, test results. Everything you'd see in the terminal.
Found the issue. The aggregateMetrics() function runs a full table scan on every request because the created_at index was dropped in the last migration.
Two changes made:
- Restored the composite index on
(created_at, metric_type) - Added a 5 minute cache with stale-while-revalidate for the aggregation endpoint
Query time dropped from ~1200ms to ~8ms. All tests pass.
How It Works
Built with Real Components
Everything on this page is rendered using actual C3 components. Fork it and make it yours.
Up and Running in 4 Steps
git clone https://github.com/Ideaplaces/c3 && cd c3 && npm installcp .env.example .env.local # add your API keysnpm run build && npx pm2 start ecosystem.config.cjsopen http://localhost:8347 # done