Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 859 Bytes

File metadata and controls

31 lines (21 loc) · 859 Bytes

Claude Subscription Chat

A minimal chat UI and local backend that routes prompts through the Claude Code CLI, so users can access Claude with their Claude Pro or Claude Max subscription without an API key.

Prerequisites

  • Node.js 18+
  • Claude Code CLI installed and logged in
    • claude --version
    • claude login

Run locally

cd claude-subscription-chat
npm install
npm start

Open http://localhost:3006 in your browser.

How it works

  • The browser sends your chat history to /chat.
  • The server builds a simple prompt with a helpful assistant system instruction.
  • The server invokes claude via the local CLI and returns the response.

Notes

  • This app does not require an Anthropic API key. It uses your existing Claude Code CLI session.
  • If you see a backend error, confirm the CLI is installed and authenticated.