Works with Claude Code CLI, VS Code, JetBrains, and the web app. Takes 30 seconds.
Before you start
You need an existing Next.js 15+ project with TypeScript and Tailwind CSS.
# If you don't have a project yet: npx create-next-app@latest my-saas --typescript --tailwind --app --src-dir
The same install works for CLI, VS Code extension, JetBrains extension, and web app.
unzip vibeconfig-claude.zip
cd your-project cp vibeconfig-claude/CLAUDE.md . cp -r vibeconfig-claude/.claude . cp vibeconfig-claude/plan.md .
claude "Build me a SaaS with auth and Stripe payments"
Claude reads CLAUDE.md automatically. Rules load when you edit matching files. Skills are available as /scaffold-auth, /scaffold-stripe, etc.
git add CLAUDE.md .claude/ plan.md git commit -m "chore: add vibeconfig rules" git push
Select your repo. Claude Code reads CLAUDE.md and .claude/ from the repo root automatically.
11 sections: project overview, database schema, auth strategy, payment model, features, API endpoints, pages, env vars, deployment, security, performance.
"I want to build a project management tool with teams, tasks, and Stripe billing. Help me fill out plan.md."
Claude reads plan.md before every feature and follows your architecture decisions.
"What rules are you following for this project?"
/scaffold-auth
Make sure CLAUDE.md is at the project root (same level as package.json). Restart Claude Code after adding files.
Make sure .claude/skills/ is at the project root. Type / in Claude Code to see available commands.
Intentional. Create a feature branch: git checkout -b feat/my-feature
Update the paths: field in .claude/rules/*.md to match your project layout.