KitRocket

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:

  1. Context — references CLAUDE.md for project-wide knowledge
  2. Instructions — step-by-step guide for the specific task
  3. 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 Codeclaude < prompts/implement.md or 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

RecipePurpose
implementBuild a complete feature
reviewCode review with feedback
fix-bugDebug and fix issues
add-apiCreate API endpoints
add-pageAdd new pages
add-componentBuild UI components
refactorImprove code quality
testWrite tests
deployDeployment checklist
securitySecurity audit
performancePerformance optimization
documentGenerate documentation

See Recipe List for full descriptions of each recipe.

On this page