vibe-stack CLAUDE.md

A project instruction document for Claude Code, Anthropic’s command-line coding agent. It describes a Next.js 15 application using Supabase, Stripe, TypeScript, Tailwind CSS, and related tools, including required build and security practices.

In plain words
What is it for?
Use it when working on this project’s architecture, authentication, payments, validation, styling, builds, linting, or type checking.
Why use it?
It gives the agent project-specific rules so it is less likely to use the wrong framework patterns or unsafe authentication methods. It also records the commands used to check the application.

Instructions file

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.

agentmods
npx agentmods add instructions/vibestackdev/vibe-stack/claude-md
Clone the repo
git clone --depth 1 https://github.com/vibestackdev/vibe-stack
Per session 1,289 This file is loaded in full into every session.
When invoked 1,289 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
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 $0.01289 $0.01289
Opus 5 $0.00645 $0.00645
Sonnet 5 $0.00258 $0.00258
Haiku 4.5 $0.00129 $0.00129

Measured 2d ago against content hash 6e8458e7f48c, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

vibe-stack CLAUDE.md scanned grade A with 0 findings 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 2d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

CLAUDE.md · 110 lines

How it starts

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

CLAUDE.md — Vibe Stack Architecture Rules

For use with Claude Code (Anthropic's agentic CLI)

These rules prevent the most common AI hallucinations in Next.js 15 + Supabase + Stripe projects.

Project Overview

This is a Next.js 15 + Supabase + Stripe application using the App Router, TypeScript strict mode, and Tailwind CSS. All server-side auth MUST use getUser(), never getSession().

Tech Stack

  • Next.js 15 (App Router only — no Pages Router)
  • React 19
  • TypeScript (strict mode)
  • Supabase (auth, database, storage)
  • Stripe (payments via Checkout Sessions)
  • Tailwind CSS + shadcn/ui
  • Zod (validation at every boundary)

Critical Build Commands

npm run dev          # Start dev server
npm run build        # Production build (catches type errors)
npm run lint         # ESLint
npx tsc --noEmit     # Type check without emitting

SECURITY RULES — NEVER VIOLATE

<security_critical>

  1. NEVER use supabase.auth.getSession() in server-side code (Server Components, Server Actions, Route Handlers, middleware). It reads the JWT from cookies WITHOUT verifying it — a forged token passes silently. ALWAYS use supabase.auth.getUser() which makes a verification call to the Supabase auth server.

  2. NEVER import from @supabase/auth-helpers-nextjs — it is DEPRECATED. Always use @supabase/ssr for both createBrowserClient (client) and createServerClient (server).

  3. NEVER put auth enforcement logic in middleware.ts. Middleware runs on Edge Runtime and cannot securely verify Supabase JWTs. Middleware should ONLY call updateSession() to refresh tokens. Auth enforcement MUST happen in layouts/pages via getUser().

  4. NEVER build a custom credit card form. ALWAYS redirect to Stripe Checkout. Custom forms create PCI compliance liability.

  5. NEVER handle Stripe webhook events without calling stripe.webhooks.constructEvent() first to verify the stripe-signature header. Without this, anyone can POST fake events to your webhook endpoint.

  6. NEVER upload files directly from client code using the Supabase anon key — it allows writing to any storage path. ALWAYS generate signed upload URLs server-side, scoped to user.id.

Read the full file on GitHub · 110 lines

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. 2d ago First seen · 110 lines · 1,289 tokens per session scan A 6e8458e7f48c

Subscribe to this mod's changes

vibe-stack CLAUDE.md is an instructions file published in the GitHub repository vibestackdev/vibe-stack (7 stars, last pushed 2d ago), licensed MIT. It adds 1,289 tokens to every session, about $0.0064 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other instructions, from other repositories

codeguide-starter-fullstack CLAUDE.md

Claude Code instructions for CodeGuide-dev/codeguide-starter-fullstack, covering claude code task management guide, documentation available, mandatory task management workflow, step 1: discover tasks (mandatory) and step 2: start each task (mandatory).

CodeGuide-dev/codeguide-starter-fullstack · 621 tokens

nextarter-tailwind AGENTS.md

AGENTS.md instructions for agustinusnathaniel/nextarter-tailwind, covering next.js: always read docs before coding, ai agent guidance: nextarter-tailwind, 1. mental model for agents, implementation delegation and tooling strategy.

agustinusnathaniel/nextarter-tailwind · 1,839 tokens

expo_boilerplate CLAUDE.md

Instructions for chohra-med/expo_boilerplate, covering claude.md — mobilelauncher lt, 🌿 branches — the trunk is development, there is no main, project skill, what this project is and the master rules.

chohra-med/expo_boilerplate · 782 tokens

expo_boilerplate AGENTS.md

Instructions for chohra-med/expo_boilerplate, covering agents.md — mobilelauncher lt, project and 🎯 the master rules location.

chohra-med/expo_boilerplate · 345 tokens

mcp-quickstart AGENTS.md

Instructions for G12789/mcp-quickstart, covering agents.md, what this project is, layout, conventions and how to test changes.

G12789/mcp-quickstart · 714 tokens

guardvibe CLAUDE.md

Instructions for goklab/guardvibe, covering project guidelines, guardvibe security scanner, when user asks for security scan/fix, never do these and quick reference.

goklab/guardvibe · 597 tokens