>_
CLI
The operator's entry point
Start a capture session, run a review, compare against your last session, and ask
questions — all from your terminal. Local-first by default, no login required for
basic workflows.
logito dev start — begin capturing logito review — see what changed and what to do next logito ask "what happened?" — query your session logito compare last — diff against the previous session logito dev install-service — survive reboots automatically logito dev install-tray — add the menu bar icon logito dev ui — open the local dashboard
Install the CLI ▦
Local Dashboard
Cross-project visibility, no cloud required
The daemon embeds a lightweight web dashboard on localhost:7429 showing
all active projects, per-service capture coverage, sync status, and recent sessions.
Opens instantly with logito dev ui. Auto-refreshes every 5 seconds.
- Daemon status, PID, uptime, and service registration
- All active projects with per-project capture state
- Expected-service coverage: declared vs observed
- Sync status per project (local-only vs synced)
- Authenticated via one-time session token — no login required
Learn more ◉
System Tray
Ambient status, one click away
A lightweight menu bar app that reflects capture state with a colored Logito
icon. Green means capturing, yellow means coverage gaps or paused, red means
the daemon is down. Click the icon for quick actions without breaking your flow.
- Install with one command:
logito dev install-tray - Registers itself for autostart at login automatically
- Menu: Open Dashboard, Open in VS Code, Pause/Resume, Quit
- Polls daemon over localhost every 10s — no network traffic
- Remove any time with
logito dev uninstall-tray
Install the CLI {}
VS Code Extension
Runtime intelligence in your editor
A sidebar dashboard with live session stats, clickable signals that drill into
contributing events, and code links that navigate from runtime issues directly to
the handler function in your codebase.
- Live dashboard with errors, latency, and event timeline
- Click any issue to investigate with pre-populated questions
- Service filter to focus on specific components
- Code Trace panel maps endpoints to source files
- Debug mode for log visibility and LLM input inspection
Install the Extension ☁
Cloud Dashboard
Intelligence that cannot exist locally
The cloud dashboard doesn't just store more sessions — it computes things
your local history can't. Cross-session pattern detection, intelligent baseline
selection, and drift trajectory analysis require history depth that local
capture doesn't have.
- Recurring issue detection across 20+ sessions
- Intelligent baselines: statistically stable, outliers rejected
- Drift trajectories: "latency degraded 18% over 6 sessions"
- Post-login insight summary: immediate value after first sync
- Team visibility, decision tracking, and watch rules
Get Started /api
REST API
Programmatic access to everything
Every capability available in the CLI and dashboard is also available via the REST
API. Integrate Logito into your CI/CD pipelines, build custom dashboards, or feed
runtime intelligence into your own tools.
- Ingest events from any source
- Create and manage runs, sessions, and reviews
- Query the evidence graph: issues, drivers, events, logs
- Programmatic watch rule and policy management
- Usage metering and billing APIs
API Documentation ⚙
MCP (Model Context Protocol)
Agent-native intelligence
Logito exposes its capabilities as MCP tools, allowing AI agents and coding
assistants to query system status, run reviews, and get context-aware answers
without custom integration code.
- Read-only tool surface for agent safety
- OAuth 2.1 protected endpoints
- Tools: get_system_status, run_review, ask_question, get_issues
- Compatible with Claude, Cursor, and other MCP-capable agents
Agent Setup ▢
Self-Hosted Sidecar
Local intelligence, zero cloud dependency
Run the Logito intelligence engine as a Docker container alongside your application.
Deterministic analysis runs entirely on your infrastructure — sessions, events,
evidence graphs, and issue detection all happen locally. Your data never leaves
your network.
- Single Docker container:
docker run -p 3000:3000 logito-local - SQLite storage — no external database to manage
- Full evidence graph: Issue → Driver → Event → Log
- Session management, event recording, and deterministic analysis API
- BYO LLM support (OpenAI, Anthropic, or local models)
- CLI and VS Code extension auto-detect the local instance
- Optional API key auth for team environments
See use case