Claudable

作者 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.

4,045
Stars
619
Forks
TypeScript
语言
2026/8/23
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/opactorai/Claudable

快速入门

使用 Claudable 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

Claudable

What is Claudable?

Claudable 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.

Features

Claudable Demo

  • Powerful Agent Performance: Leverage the full power of Claude Code and Cursor CLI Agent capabilities

  • Natural Language to Code: Simply describe what you want to build, and Claudable generates production-ready Next.js code

  • Instant Preview: See your changes immediately with hot-reload as AI builds your app

  • Zero Setup, Instant Launch: No complex sandboxes, no API key, no database headaches - just start building immediately

  • Beautiful UI: Generate beautiful UI with Tailwind CSS and shadcn/ui

  • Deploy to Vercel: Push your app live with a single click, no configuration needed

  • GitHub Integration: Automatic version control and continuous deployment setup

  • Supabase Database: Connect production PostgreSQL with authentication ready to use

  • Desktop App: Available as Electron desktop application for Mac, Windows, and Linux

Demo Examples

Codex CLI Example

Codex CLI Demo

Qwen Code Example

Qwen Code Demo

Supported AI Coding Agents

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

  • Codex CLI - OpenAI's powerful coding agent

  • Cursor CLI - Powerful multi-model AI agent

  • Qwen Code - Alibaba's open-source coding CLI

  • Z.AI GLM-4.6 - Zhipu AI's coding agent

Claude Code (Recommended)

Claude Code - Anthropic's advanced AI coding agent with Claude Opus 4.6

  • Features: Deep codebase awareness, Unix philosophy, direct terminal integration

  • Context: Native 200k tokens

  • Pricing: Included with Claude Pro/Max/Team/Enterprise plans, or Anthropic API key

  • Installation:

npm install -g @anthropic-ai/claude-code
claude  # then > /login

Codex CLI

Codex CLI - OpenAI's powerful coding agent with GPT-5 support

  • Features: High reasoning capabilities, local execution, multiple operating modes (interactive, auto-edit, full-auto)

  • Context: Varies by model

  • Pricing: Included with ChatGPT Plus/Pro/Business/Edu/Enterprise plans (from $20/month)

  • Installation:

npm install -g @openai/codex
codex  # login with ChatGPT account

Cursor CLI

Cursor CLI - Powerful AI agent with access to cutting-edge models

  • Features: Multi-model support (Anthropic, OpenAI), AGENTS.md support

  • Context: Model dependent

  • Pricing: Free tier available, Pro from $20/month (credit-based system)

  • Installation:

curl https://cursor.com/install -fsS | bash
cursor-agent login

Qwen Code

Qwen Code - Alibaba's open-source CLI for Qwen3-Coder models

  • Features: 256K-1M token context, multiple model sizes (0.5B to 480B), Apache 2.0 license

  • Context: 256K native, 1M with extrapolation

  • Pricing: Completely free and open-source

  • Installation:

npm install -g @qwen-code/qwen-code@latest
qwen --version

Z.AI GLM-4.6

Z.AI GLM-4.6 - Zhipu AI's coding agent powered by GLM-4.6

  • Features: Strong reasoning capabilities and cost-efficient, code generation and understanding

  • Context: 200K tokens

  • Pricing: Starting from $3/month (GLM Coding Lite) to $30/month (GLM Coding Max), with 50% off first month

  • Installation: See Quick Start Guide

Technology Stack

Database & Deployment:

  • Supabase: Connect production-ready PostgreSQL database directly to your project.

  • Vercel: Publish your work immediately with one-click deployment

There is no additional subscription cost and built just for YOU.

Prerequisites

Before you begin, ensure you have the following installed:

  • Node.js 18+

  • Claude Code or Cursor CLI (already logged in)

  • Git

Quick Start

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.

Troubleshooting

  • Database migration conflicts: If you upgraded from a previous Claudable version and run into database errors, reset the Prisma database so it matches the latest schema:
npm run prisma:reset

The command drops and recreates the local database, so back up any data you need before running it.

Setup

The npm install command automatically handles the complete setup:

  • Port Configuration: Detects available ports and creates .env files

  • Dependencies: Installs all required Node.js packages

  • Database Setup: SQLite database auto-creates at data/cc.db on first run

Desktop App (Electron)

Build 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

Additional Commands

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

Usage

Getting Started with Development

  • Connect Claude Code: Link your Claude Code CLI to enable AI assistance

  • Describe Your Project: Use natural language to describe what you want to build

  • AI Generation: Watch as the AI generates your project structure and code

  • Live Preview: See changes instantly with hot reload functionality

  • Deploy: Push to production with Vercel integration

Database Operations

Claudable uses SQLite for local development. The database automatically initializes on first run.

Troubleshooting

Port Already in Use

The application automatically finds available ports. Check the .env file to see which ports were assigned.

Installation Failures

# Clean all dependencies and retry
npm run clean
npm install

Claude Code Permission Issues (Windows/WSL)

If you encounter the error: Error output dangerously skip permissions cannot be used which is root sudo privileges for security reasons

Solution:

  • Do not run Claude Code with sudo or as root user

  • Ensure proper file ownership in WSL:

# Check current user
whoami

# Change ownership of project directory to current user
sudo chown -R $(whoami):$(whoami) ~/Claudable
  • If using WSL, make sure you're running Claude Code from your user account, not root

  • Verify Claude Code installation permissions:

# Reinstall Claude Code without sudo
npm install -g @anthropic-ai/claude-code --unsafe-perm=false

Integration Guide

GitHub

**Get To

常见问题

What is Claudable?

Claudable is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built 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. It has 4,045 GitHub stars.

Is Claudable safe to use?

Claudable failed SkillsLLM's automated security scan, which flagged one or more high-severity issues. Review the Security Report section carefully before using it.

How do I install Claudable?

Clone the repository with "git clone https://github.com/opactorai/Claudable" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is Claudable written in?

Claudable is primarily written in TypeScript. It is open-source under opactorai on GitHub, so you can review or fork the full source.

Are there alternatives to Claudable?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh Claudable against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI 智能体
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情