create-ai-driven-templates
v0.2.0
Published
Cursor-ready AI templates: Launchpad (Next.js + Tailwind + FSD-style structure) with capability presets, agent skills, and npm run verify.
Maintainers
Readme
Create AI-Driven Templates
Cursor-ready AI project templates for vibe-coders and founders.
Create a Project
This is a project generator, similar to create-next-app.
npm create ai-driven-templatesYou can also run the package directly:
npx create-ai-driven-templatesThe MVP package ships one production-oriented template:
launchpad— a runnable Next.js + Tailwind landing starter with Feature-Sliced Design, Cursor rules, capability presets, docs, skills, security baseline, and quality checks.
Create a Launchpad Project
npm create ai-driven-templatesYou do not need to install the generator into your app. The command runs the generator package, then creates your actual project folder.
Recommended defaults:
npm create ai-driven-templates -- --yes --name my-launchpadLocal development command:
npm run create -- --yes --name my-launchpadCapability override example:
npm run create -- --yes --name my-saas-start --auth clerk --database neon-drizzleWhat Gets Generated
The generated project includes:
- Cursor rules in
.cursorrules; - project context in
SYSTEM_BLUEPRINT.md; - stack decisions in
TECH_STACK.md; - docs for architecture, analytics, SEO, security, performance, deployment, and costs;
- agent skills in
docs/skills; - selected capability skills for hosting, analytics, auth, or database presets;
- runnable App Router files in
app; - FSD modules in
src; - quality commands in
package.json.
Recommended Defaults
The MVP defaults are intentionally simple:
- template:
launchpad; - hosting:
vercel-free; - database:
none; - auth:
none; - payments:
none; - analytics:
vercel; - design:
dark-premium; - seo:
basic; - security:
owasp-next-baseline; - checks:
enabled.
Recommended generation also applies capability presets for Vercel hosting and Vercel Analytics. Custom generation can add Clerk auth and Neon Postgres + Drizzle database support.
After Generation
cd my-launchpad
npm install
npm run dev
npm run verifynpm run verify checks formatting, linting, TypeScript, Feature-Sliced Design structure, security baseline, template module coverage, and production build.
Status
This is an MVP package. Shop, SaaS, and Blog are planned for later versions.
