by opactorai
Claudable is an open-source web builder that leverages local CLI agents, such as Claude Code, Codex, Gemini CLI, Qwen Code, and Cursor Agent, to build and deploy products effortlessly.
# Add to your Claude Code skills
git clone https://github.com/opactorai/ClaudableClaudable is a powerful Next.js-based web app builder that combines Claude Code's (Cursor CLI also supported!) advanced AI agent capabilities with Lovable's simple and intuitive app building experience. Just describe your app idea - "I want a task management app with dark mode" - and watch as Claudable instantly generates the code and shows you a live preview of your working app. You can deploy your app to Vercel and integrate database with Supabase for free.
This open-source project empowers you to build and deploy professional web applications easily for free.
How to start? Simply login to Claude Code (or Cursor CLI), start Claudable, and describe what you want to build. That's it. There is no additional subscription cost for app builder.



Claudable supports multiple AI coding agents, giving you the flexibility to choose the best tool for your needs:
Claude Code - Anthropic's advanced AI coding agent with Claude Opus 4.6
npm install -g @anthropic-ai/claude-code
claude # then > /login
Codex CLI - OpenAI's powerful coding agent with GPT-5 support
npm install -g @openai/codex
codex # login with ChatGPT account
Cursor CLI - Powerful AI agent with access to cutting-edge models
curl https://cursor.com/install -fsS | bash
cursor-agent login
Qwen Code - Alibaba's open-source CLI for Qwen3-Coder models
npm install -g @qwen-code/qwen-code@latest
qwen --version
Z.AI GLM-4.6 - Zhipu AI's coding agent powered by GLM-4.6
Database & Deployment:
There is no additional subscription cost and built just for YOU.
Before you begin, ensure you have the following installed:
Get Claudable running on your local machine in minutes:
# Clone the repository
git clone https://github.com/opactorai/Claudable.git
cd Claudable
# Install all dependencies
npm install
# Start development server
npm run dev
Your application will be available at http://localhost:3000
Note: Ports are automatically detected. If the default port is in use, the next available port will be assigned.
npm run prisma:reset
The command drops and recreates the local database, so back up any data you need before running it.The npm install command automatically handles the complete setup:
.env filesdata/cc.db on first runBuild and run Claudable as a desktop application:
# Development mode
npm run dev:desktop
# Build desktop app
npm run build:desktop
# Package for specific platforms
npm run package:mac # macOS
npm run package:win # Windows
npm run package:linux # Linux
npm run db:backup # Create a backup of your SQLite database
# Use when: Before major changes or deployments
# Creates: data/backups/cc_backup_[timestamp].db
npm run db:reset # Reset database to initial state
# Use when: Need fresh start or corrupted data
# Warning: This will delete all your data!
npm run clean # Remove all dependencies
# Use when: Dependencies conflict or need fresh install
# Removes: node_modules/, package-lock.json
# After running: npm install to reinstall everything
Claudable uses SQLite for local development. The database automatically initializes on first run.
The application automatically finds available ports. Check the .env file to see which ports were assigned.
# Clean all dependencies and retry
npm run clean
npm install
If you encounter the error: Error output dangerously skip permissions cannot be used which is root sudo privileges for security reasons
Solution:
sudo or as root user# Check current user
whoami
# Change ownership of project directory to current user
sudo chown -R $(whoami):$(whoami) ~/Claudable
# Reinstall Claude Code without sudo
npm install -g @anthropic-ai/claude-code --unsafe-perm=false
**Get To
No comments yet. Be the first to share your thoughts!