An AI webmaster for independent websites — a Claude plugin that scaffolds, designs, and deploys Astro sites on Cloudflare Workers.
Anglesite works with Claude Cowork (for non-technical site owners) and Claude Code (for developers). Both use the same plugin — the experience adapts to the environment.
Plugins in Cowork require a paid plan (Pro, Max, Team, or Enterprise).
- Open Claude and start a Cowork session
- Open the Code tab
- Press + > Plugins > Add Plugin
- Select the Personal tab, press +
- Select Add Marketplace from GitHub
- Enter
Anglesite/anglesiteand press Sync - Enable the anglesite plugin
- Create a new folder for your site and open it in the Code tab
- Type
/anglesite:start
No terminal, no installs, no prerequisites. Claude handles everything.
# Add the marketplace (one-time)
claude plugin marketplace add Anglesite/anglesite
# Install the plugin
claude plugin install anglesite
# Start a new project
mkdir my-site && cd my-site
claudeThen type /anglesite:start to begin.
Individual skills can be installed in any agent that supports the Open Agent Skills spec (skills.sh):
# Install a single skill
npx skills add Anglesite/anglesite/agent-skills/start
# Examples
npx skills add Anglesite/anglesite/agent-skills/deploy
npx skills add Anglesite/anglesite/agent-skills/seo
npx skills add Anglesite/anglesite/agent-skills/contactEach skill is self-contained with bundled reference material. See agent-skills/README.md for the full list of available skills.
The start command scaffolds your project, learns about your business, designs the site with you, and installs the tools to preview it. When you're ready to go live, /anglesite:deploy handles hosting, domains, and publishing.
| Skill | What it does |
|---|---|
/anglesite:start |
First-time setup: discovery, design, tools, preview |
/anglesite:deploy |
Build, security scan, deploy, domain setup |
/anglesite:check |
Health audit (build, privacy, security, accessibility) |
/anglesite:update |
Update dependencies safely |
/anglesite:domain |
Manage DNS records (email, Bluesky verification, etc.) |
/anglesite:import |
Import content from a website URL |
/anglesite:convert |
Convert an SSG project (Hugo, Jekyll, etc.) to Anglesite |
/anglesite:export |
Portable export for self-hosting or migration |
/anglesite:contact |
Set up a contact form |
/anglesite:forms |
Custom forms (RSVP, lead capture, survey, callback) |
/anglesite:inbox |
Browse, triage, and export form submissions from Keystatic |
/anglesite:indieweb |
Self-owned IndieAuth, Webmention, and Micropub endpoints |
/anglesite:backup |
Save work to GitHub |
/anglesite:stats |
Plain-language site analytics |
/anglesite:newsletter |
Set up an email newsletter |
/anglesite:add-store |
Add ecommerce to your site |
/anglesite:booking |
Embed appointment scheduling |
/anglesite:seo |
SEO audit, metadata, Schema.org, sitemap |
/anglesite:search |
Add on-site search via Pagefind |
/anglesite:photography |
Site-specific photo shot list with tips |
/anglesite:menu |
Restaurant menu import, creation, and editing |
/anglesite:podcast |
Podcast episodes, RSS feed, transcripts, audio player |
/anglesite:donations |
Donation button or page (Stripe, Liberapay, GitHub Sponsors) |
/anglesite:redirects |
Manage Cloudflare redirects (add, remove, list, bulk-import) |
/anglesite:design-import |
Import design tokens from Canva or Figma |
/anglesite:giscus |
Blog comments via GitHub Discussions |
/anglesite:consent |
GDPR/CCPA cookie consent banner |
/anglesite:membership |
Paywall and content gating (free newsletter + paid Stripe) |
/anglesite:tracking |
Analytics pixels (Meta, Google, LinkedIn, etc.) via Partytown |
/anglesite:pwa |
Make the site installable as a Progressive Web App |
/anglesite:share |
Native sharing via Web Share API |
Small businesses — farms, restaurants, legal firms, retailers, makers, artists, content creators, service providers — who want a fast, private, professional website without learning to code.
- The website is the center — Publish here first, syndicate elsewhere (POSSE)
- IndieWeb first — Microformats, Webmention, IndieAuth. The owner controls their identity and content.
- Accessible by design — WCAG AA minimum. Not an afterthought.
- No external runtime dependencies — Zero third-party JavaScript in production
- Privacy by default — No tracking, no cookies, no third-party scripts (Cloudflare Web Analytics only)
| Component | Technology |
|---|---|
| Site generator | Astro 5 |
| Content editor | Keystatic |
| Hosting | Cloudflare Workers (Static Assets) |
| Analytics | Cloudflare Web Analytics |
| Language | TypeScript (strict) |
| Styling | Vanilla CSS with custom properties |
See CLAUDE.md for plugin structure, editing guidelines, and testing instructions.