vite-flare-starter

vite-flare-starter is a skill for Claude Code from jezweb/claude-skills. It costs 110 tokens per session (2,782 once invoked), scanned C, original, MIT.

A starter project for building and deploying a full-stack web app on Cloudflare. It combines a React and Vite interface with a Hono server, a D1 database, login, file storage, AI access, and common user-interface and data-fetching tools.

In plain words
What is it for?
Use it to create a rebranded Cloudflare app with a web interface, server routes, database, Google or email login, file uploads, user avatars, and AI features.
Why use it?
It provides the main parts of a web application in one configured project, reducing the setup work before development begins.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions CLAUDE.md.

Part of the cloudflare plugin — 8 skills, 8 commands shipped together

Good fit Use it to create a rebranded Cloudflare app with a web interface, server routes, database, Google or email login, file uploads, user avatars, and AI features.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/jezweb/claude-skills/vite-flare-starter
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add jezweb/claude-skills --skill vite-flare-starter
Clone the repo
git clone --depth 1 https://github.com/jezweb/claude-skills

Made for: Claude Code.

Or install cloudflare, the plugin that ships this one along with the rest of its 8 skills, 8 commands.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for vite-flare-starter

README.md
[![agentmods](https://agentmods.dev/badge/skills/jezweb/claude-skills/vite-flare-starter/github.svg)](https://agentmods.dev/skills/jezweb/claude-skills/vite-flare-starter)
Your own site
<a href="https://agentmods.dev/skills/jezweb/claude-skills/vite-flare-starter"><img src="https://agentmods.dev/badge/skills/jezweb/claude-skills/vite-flare-starter/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for vite-flare-starter

Your own site · 80×15
<a href="https://agentmods.dev/skills/jezweb/claude-skills/vite-flare-starter"><img src="https://agentmods.dev/badge/skills/jezweb/claude-skills/vite-flare-starter.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 110 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,782 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • Socket pass 15 May 2026
  • Snyk warn 15 May 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00110 $0.02782
Opus 5 $0.00055 $0.01391
Sonnet 5 $0.00022 $0.00556
Haiku 4.5 $0.00011 $0.00278

Measured 12d ago against content hash 30ca2d482743, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade C, and why

vite-flare-starter scanned grade C with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

rm -rf .git
plugins/cloudflare/skills/vite-flare-starter/SKILL.md · 292 lines

How it starts

The opening of the file, as written. The whole thing — 292 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Vite Flare Starter

Clone and configure the batteries-included Cloudflare starter into a standalone project. Produces a fully rebranded, deployable full-stack app.

Stack

Layer Technology Version
Frontend React, Vite, Tailwind CSS, shadcn/ui 19, 6.x, v4, latest
Backend Hono (on Cloudflare Workers) 4.x
Database D1 (SQLite at edge) + Drizzle ORM 0.38+
Auth better-auth (Google OAuth + email/password) latest
Storage R2 (S3-compatible object storage)
AI Workers AI binding
Data Fetching TanStack Query v5

Cloudflare Bindings

Binding Type Purpose
DB D1 Database Primary application database
AVATARS R2 Bucket User avatar storage
FILES R2 Bucket General file uploads
AI Workers AI AI model inference

Project Structure

src/
├── client/                 # React frontend
│   ├── components/         # UI components
│   ├── hooks/              # Custom hooks + TanStack Query
│   ├── pages/              # Route pages
│   ├── lib/                # Utilities (auth client, etc.)
│   └── main.tsx            # App entry point
├── server/                 # Hono backend
│   ├── index.ts            # Worker entry point
│   ├── routes/             # API routes
│   ├── middleware/          # Auth, CORS, etc.
│   └── db/                 # Drizzle schema + queries
└── shared/                 # Shared types between client/server

Key Commands

Command Purpose
pnpm dev Start local dev server
pnpm build Production build
pnpm deploy Deploy to Cloudflare
pnpm db:migrate:local Apply migrations locally
pnpm db:migrate:remote Apply migrations to production
pnpm db:generate Generate migration from schema changes

Workflow

Step 1: Gather Project Info

Ask for:

Required Optional
Project name (kebab-case) Admin email
Description (1 sentence) Google OAuth credentials
Cloudflare account Custom domain

Read the full file on GitHub · 292 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 292 lines · 110 tokens per session scan C 30ca2d482743

Subscribe to this mod's changes

vite-flare-starter is a skill published in the GitHub repository jezweb/claude-skills (1,001 stars, last pushed 2mo ago), licensed MIT. It adds 110 tokens to every session and 2,782 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

liveview-patterns

Build LiveView: async data (assignasync), PubSub (check connected?), phx-change events, form components/modals/uploads, streams for lists, livepatch. Use when handling interactions, debugging events, or tracking Presence.

oliver-kriska/claude-elixir-phoenix · 51 tokens

nextjs-expert

Use when building Next.js 14/15 applications with the App Router. Invoke for routing, layouts, Server Components, Client Components, Server Actions, Route Handlers, authentication, middleware, data fetching, caching, revalidation, streaming, Suspense, loading states, error boundaries, dynamic routes, parallel routes…

S3YED/appie-kit · 79 tokens

implementing-navigation

Implements navigation patterns and routing for both frontend (React/TS) and backend (Python) including menus, tabs, breadcrumbs, client-side routing, and server-side route configuration. Use when building navigation systems or setting up routing.

ancoleman/ai-design-components · 50 tokens

implementing-search-filter

Implements search and filter interfaces for both frontend (React/TypeScript) and backend (Python) with debouncing, query management, and database integration. Use when adding search functionality, building filter UIs, implementing faceted search, or optimizing search performance.

ancoleman/ai-design-components · 57 tokens

fullstack-developer

Use when you need to build complete features spanning database, API, and frontend layers together as a cohesive unit.

risadams/ink-and-agency · 27 tokens

trigger-realtime-and-frontend

Trigger.dev client/frontend surface: subscribe to runs in realtime (runs.subscribeToRun and the @trigger.dev/react-hooks hook useRealtimeRun), consume metadata and AI/text streams in React (useRealtimeStream), trigger tasks from the browser (useTaskTrigger, useRealtimeTaskTrigger), and mint scoped frontend credentials…

triggerdotdev/trigger.dev · 148 tokens