AI-powered workspace for solo CEOs and indie builders — manage your entire business with AI agents, not just code. Kanban board, code editor, Git integration, claw agent hub, local-first SQLite.
DISCLAIMER: This software is provided "AS IS" without warranty. Read full disclaimer.
Claude Workspace is evolving from a developer tool into a full AI-powered business hub. By integrating ClaudeWs existing multi-agents, OpenClaw and compatible claw agents, solo founders can manage email, calendar, messaging, sales, support, and operations — all from one workspace alongside their code. See the Project Roadmap for details.
- Kanban Board — Drag-and-drop task management with full conversation history
- Real-time Streaming — Live Claude responses via Socket.io
- Checkpoints — Save and rewind to any conversation state
- Code Editor — Tabbed CodeMirror with syntax highlighting and AI suggestions
- Git Integration — Status, stage, commit, diff, visual graph
- Agent Factory — Plugin system for custom skills, commands, agents
- Agentic SDK — Headless REST + SSE backend for programmatic access (docs)
- Themes — Light, Dark, VS Code variants, Dracula
- Claw Agent Hub — Adopt and manage OpenClaw agents for business tasks
- Multi-Channel Inbox — Unified messaging across WhatsApp, Slack, Discord, Teams, email
- Business Agent Templates — Pre-built agents for email, calendar, social media, customer support
- Workflow Automation — Visual pipelines connecting agents to automate business operations
Prerequisites: Node.js 20+, pnpm 9+, Claude Code CLI
# Option 1: npx (quick try)
npx -y claude-ws
# Option 2: Global install
npm install -g claude-ws
claude-ws
# Option 3: From source
git clone https://github.com/cl77/claude-ws.git
cd claude-ws
pnpm install && pnpm devclaude-ws/
├── src/ # Next.js app (frontend + API routes)
├── server.ts # Custom server entry point
├── packages/
│ └── agentic-sdk/ # Headless Fastify backend (REST + SSE)
├── public/ # Static assets, swagger docs
├── drizzle/ # Database migrations
├── locales/ # i18n translations
└── scripts/ # Build and maintenance scripts
| Package | Description |
|---|---|
| agentic-sdk | Standalone Fastify server implementing the full claude-ws API. No frontend, no Socket.io — pure REST + SSE. Use it for headless automation, CI/CD pipelines, or custom integrations. |
The agentic-sdk is a headless backend that exposes the same API as the main claude-ws server but without the UI. Useful for programmatic task execution, automation, and integration with external tools.
# Development (with file watching)
pnpm agentic-sdk:dev
# Production
pnpm agentic-sdk:startServer starts at http://localhost:3100. See agentic-sdk README for full API documentation.
See Swagger API Docs
Create .env file at the project root:
# Server
PORT=8556
API_ACCESS_KEY=your-secret-key
# Anthropic API (or custom proxy)
ANTHROPIC_BASE_URL=https://api.anthropic.com
ANTHROPIC_AUTH_TOKEN=your-token
ANTHROPIC_MODEL=claude-sonnet-4-20250514
# Model tier overrides (optional)
ANTHROPIC_DEFAULT_OPUS_MODEL=claude-opus-4-6
ANTHROPIC_DEFAULT_SONNET_MODEL=claude-sonnet-4-6
ANTHROPIC_DEFAULT_HAIKU_MODEL=claude-haiku-4-5-20251001| Variable | Description | Default |
|---|---|---|
PORT |
Server port | 8556 |
API_ACCESS_KEY |
API authentication key | (empty) |
ANTHROPIC_BASE_URL |
Anthropic API base URL (or custom endpoint) | https://api.anthropic.com |
ANTHROPIC_AUTH_TOKEN |
Auth token for the Anthropic API | — |
ANTHROPIC_MODEL |
Default model | — |
ANTHROPIC_DEFAULT_OPUS_MODEL |
Model for opus tier | Falls back to ANTHROPIC_MODEL |
ANTHROPIC_DEFAULT_SONNET_MODEL |
Model for sonnet tier | Falls back to ANTHROPIC_MODEL |
ANTHROPIC_DEFAULT_HAIKU_MODEL |
Model for haiku tier | Falls back to ANTHROPIC_MODEL |
LOG_LEVEL |
Logging level | debug (dev), warn (prod) |
ANTHROPIC_API_RETRY_TIMES |
Retry attempts for failed API requests | 3 |
ANTHROPIC_API_RETRY_DELAY_MS |
Delay between retries (ms) | 10000 |
For secure remote access, see Cloudflare Tunnel Setup.
Next.js 16, React 19, Fastify 5, SQLite + Drizzle ORM, Socket.io, Claude Agent SDK, Tailwind CSS 4, Radix UI, Zustand, Pino
- Project Overview & PDR — Features, tech stack, requirements
- Project Roadmap — Feature timeline, claw agent integration plans
- System Architecture — Component design, API structure
- Code Standards — Development conventions and patterns
- Cloudflare Tunnel Setup — Remote access configuration
MIT




