Full visibility into every AI agent session. Monitor costs, replay sessions, catch failures before they cost you.
Traxon is an observability platform purpose-built for teams running AI agents in production. Whether you're orchestrating Claude, GPT-4o, Gemini, or custom LLMs, Traxon gives you the visibility you need:
- Session Replay — Watch every tool call, message, and decision step by step
- Cost Explorer — Break down spend by agent, project, and time period
- Real-time Logs — Stream live events with powerful filtering and search
- Smart Alerts — Set budget limits and failure thresholds with instant notifications
- Multi-Provider — Works with Anthropic, OpenAI, Gemini, and any OpenAI-compatible API
- Team Collaboration — Share sessions, annotate findings, manage access
- Framework: Next.js 15 (App Router)
- Language: TypeScript
- Styling: Tailwind CSS + custom design system
- Database: Supabase (PostgreSQL + Auth + RLS)
- Charts: Recharts
- Deployment: Vercel
git clone https://github.com/gosarmarcel7-creator/traxon.git
cd traxon
npm install- Create a project at supabase.com
- Run the migration in
supabase/migrations/20260530_init_traxon.sqlin your Supabase SQL editor - Copy your project URL and anon key
cp .env.example .env.localFill in your Supabase credentials in .env.local.
npm run devDemo Mode: By default, the app runs with hardcoded demo data. Set
NEXT_PUBLIC_DEMO_MODE=falsein.env.localto use real Supabase data.
The easiest way is to connect your GitHub repo directly in vercel.com:
- Import the
traxonrepo - Add your environment variables in the Vercel project settings
- Deploy
Or use the CLI:
vercel --prodimport { Traxon } from '@traxon/sdk';
const traxon = new Traxon({ apiKey: 'trx_live_...' });
const agent = traxon.wrap(yourLLMCall);traxon/
├── src/
│ ├── app/
│ │ ├── (app)/ # Authenticated app pages (with sidebar)
│ │ │ ├── dashboard/
│ │ │ ├── agents/
│ │ │ ├── sessions/
│ │ │ ├── cost/
│ │ │ ├── logs/
│ │ │ ├── alerts/
│ │ │ └── settings/
│ │ ├── login/
│ │ ├── signup/
│ │ ├── globals.css # Design system
│ │ └── layout.tsx
│ ├── components/
│ │ ├── Sidebar.tsx
│ │ └── TopBar.tsx
│ └── lib/
│ ├── demo-data.ts # Realistic demo data
│ └── utils.ts # Utility functions
├── supabase/
│ └── migrations/
│ └── 20260530_init_traxon.sql
└── vercel.json
MIT