Getting Started
Clodsite is an opinionated website-building workflow for Claude Code. Interview → spec → plan → build → deploy. Five commands. One live site on Cloudflare Pages.
Quick Start
git clone https://github.com/nopolabs/clodsite my-site && cd my-site && claude
Then inside Claude Code:
/setup collect and verify your Cloudflare API token
/interview 10-question session → site/site-spec.json
/plan review and approve the build plan
/build generate and build the site
/deploy ship to Cloudflare Pages → live URL
Requirements
- Claude Code
- Node.js 18+
- Wrangler (
npm install -g wrangler) - A Cloudflare account (free tier works)
- A Cloudflare API token with Cloudflare Pages: Edit permission
The Idea
Most AI site builders are autocomplete with a pretty UI. Clodsite is a structured process: the AI interviews you, produces a reviewable spec, and only builds after you approve. Every step is labeled [SCRIPT], [LLM], or [HYBRID].
This isn't a rejection of vibe coding — it's a lane assignment for it. [LLM] steps handle what LLMs are actually good at: writing copy, interpreting tone, synthesizing interview answers, explaining errors. [SCRIPT] steps handle everything else: reading files, validating schemas, running CLI tools.