The power channel to Claude. Hijacks authenticated browser sessions to send AI requests through Claude.ai without requiring API keys.
┌─────────────┐ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐
│ Your App │ ──► │ Conduit │ ──► │ Firefox │ ──► │ Claude.ai │
│ (Forge,etc) │ │ API │ │ Session │ │ │
└─────────────┘ └─────────────┘ └─────────────┘ └─────────────┘
│
Extracts session
cookies from
authenticated
Firefox profile
No API Keys Required: Conduit uses your existing Claude.ai browser session. If you're logged into Claude.ai in Firefox, Conduit can send requests on your behalf.
Extracts authentication cookies from Firefox profiles. No need to manage API keys or tokens.
Queue multiple requests. Conduit handles rate limiting and session management automatically.
Stream Claude's responses in real-time as they're generated. No waiting for complete responses.
Send requests to specific Claude.ai projects. Maintain context separation between workloads.
POST /api/send
{
"message": "Validate this Python code...",
"project": "l_richard",
"conversation_id": "optional-existing-chat"
}
Response:
{
"response": "Claude's response text...",
"conversation_id": "abc123",
"tokens_used": 1542
}
GET /api/status
Response:
{
"session_valid": true,
"queue_depth": 3,
"requests_today": 47,
"rate_limit_remaining": 53
}
Conduit powers several Lightning products:
Sends code to Claude for AI-powered validation and fixing. Multi-pass until perfect.
Background agent uses Conduit for overnight autonomous task execution.
Personal Use Only: Conduit is designed for personal infrastructure. It uses your own Claude.ai session and is subject to Claude.ai's terms of service.
Lightning Forge - Code validation powered by Conduit
Lightning Phantom - Background agent using Conduit
Lightning Continuum - Memory streaming from Claude sessions