Prompt Recipes Overview
Pre-built prompts that give AI full context about your KitRocket project for faster, better code generation.
What are Prompt Recipes?
Prompt Recipes are pre-written markdown files that tell AI exactly how to work with your KitRocket project. Each recipe is a structured prompt for a specific development task — implementing a feature, fixing a bug, adding an API endpoint, and so on.
They live in the /prompts/ directory of your KitRocket project:
prompts/
├── implement.md
├── review.md
├── fix-bug.md
├── add-api.md
├── add-page.md
├── add-component.md
├── refactor.md
├── test.md
├── deploy.md
├── security.md
├── performance.md
└── document.md
Why use them?
Without a recipe, you'd tell AI: "Add a settings page." The AI has to guess your conventions, file structure, and patterns.
With a recipe, the AI already knows:
- Your exact tech stack and versions
- Where to put files and how to name them
- Which patterns to follow (server components, immutable data, etc.)
- How to connect to existing auth, database, and payment logic
- What your code style looks like
The result: less back-and-forth, fewer mistakes, code that matches the rest of your project.
How they work
Each recipe has three parts:
- Context — references
CLAUDE.mdfor project-wide knowledge - Instructions — step-by-step guide for the specific task
- Output requirements — what the AI should produce and quality constraints
When you feed a recipe to Claude Code or Cursor, the AI reads the recipe, reads your CLAUDE.md, and then executes the task with full understanding of your project.
Compatible tools
Prompt Recipes work with:
- Claude Code —
claude < prompts/implement.mdor paste into a session - Cursor — paste recipe content into the chat panel or Cmd+K
- Any AI coding tool — the recipes are plain markdown, copy-paste anywhere
Quick start
# Navigate to your project
cd my-saas
# Use a recipe with Claude Code
claude < prompts/implement.md
# Claude will ask you what feature to implement, then build it
See How to Use for detailed instructions with each tool.
All recipes
| Recipe | Purpose |
|---|---|
| implement | Build a complete feature |
| review | Code review with feedback |
| fix-bug | Debug and fix issues |
| add-api | Create API endpoints |
| add-page | Add new pages |
| add-component | Build UI components |
| refactor | Improve code quality |
| test | Write tests |
| deploy | Deployment checklist |
| security | Security audit |
| performance | Performance optimization |
| document | Generate documentation |
See Recipe List for full descriptions of each recipe.