Vibe-coding prompts
Breaks a feature down into short, verifiable prompts for an AI coding tool: context, a plan before code, testable steps and done-when criteria, plus the pitfalls to avoid.
Real example
Taken from the skill's “Example” section (in French: the skill answers in your language).
`
Prompt 0 — Contexte
Projet Next.js (App Router) + Supabase. Table posts existante. Je veux ajouter un like par utilisateur sur chaque post.
Prompt 1 — Plan
Avant de coder, propose-moi un plan pour ajouter les likes (table, policy RLS, API, UI). N'écris pas de code avant validation.
Étape 1 — Table et RLS
Prompt : « Crée la table likes (post_id, user_id, created_at) avec une contrainte d'unicité et une policy RLS : un utilisateur ne voit et ne modifie que ses propres likes. »
Vérification : insérer un like deux fois avec le même utilisateur doit échouer.
C'est fini quand : la contrainte et la policy existent et sont testées.
`
…
Install in two minutes
- 1
claude.ai or Claude Desktop
Settings, capabilities (skills) section, then import the .zip file.
- 2
Claude Code
Unzip the folder into
~/.claude/skills/: the/prompts-vibe-codingcommand appears. - 3
Ask as usual
Claude triggers the skill on its own when your request matches.
The skill helps you learn and produce your own work; it never writes graded work for you. Check your school's rules on AI use.
In the same field
REST API design
Designs a project's REST API: resources, endpoints (method, path, body, status codes), errors, pagination, authentication and a ready-to-copy OpenAPI 3 excerpt in YAML.
MVP spec sheet
Turns an app idea into a one-page MVP spec (problem, users, user stories, features, data model, screens, stack, acceptance criteria) plus the first five prompts for your AI coding tool.
Project CLAUDE.md
Generates a project's CLAUDE.md and its AGENTS.md variant (the open format read by other AI coding tools): commands, architecture, conventions, rules and no-go zones.