Agent Recipes

July 3, 2026 ยท View on GitHub

License: MIT Recipes Contributions Welcome

Copy-paste AI agent workflows for real-world developer tasks.

A community-driven collection of ready-to-use AI agent workflows. Each recipe is a self-contained prompt you can drop into Claude Code, Cursor, Aider, or any AI coding assistant.

Recipes

Code Review

RecipeDescription
PR ReviewComprehensive pull request review with security, performance, and style checks
Architecture ReviewHigh-level codebase architecture analysis and recommendations
Dependency AuditCheck for outdated, vulnerable, or unnecessary dependencies
Performance ReviewIdentify performance bottlenecks and optimization opportunities
Multi-Repo PR CheckCheck all your open PRs across multiple repos in parallel

Testing

RecipeDescription
Generate Unit TestsAuto-generate unit tests for uncovered functions
E2E Test WriterGenerate end-to-end tests from user stories
Coverage Gap FinderFind untested code paths and edge cases

Migrations

RecipeDescription
JavaScript to TypeScriptMigrate JS files to TypeScript with proper types
React Class to HooksConvert React class components to functional + hooks
CJS to ESMConvert CommonJS requires to ES module imports
Upgrade DependenciesSafely upgrade all project dependencies with automated testing

Documentation

RecipeDescription
README GeneratorGenerate comprehensive README from repo analysis
API Docs GeneratorGenerate OpenAPI/Swagger docs from code
Changelog WriterGenerate changelog from git commits

Security

RecipeDescription
Secret ScannerFind hardcoded secrets, keys, and credentials
OWASP Top 10 AuditCheck code against OWASP Top 10 vulnerabilities
Input ValidationAdd input validation and sanitization to API endpoints

DevOps

RecipeDescription
Dockerfile GeneratorGenerate optimized multi-stage Dockerfiles
CI/CD PipelineGenerate GitHub Actions / GitLab CI from project analysis
Monitoring SetupAdd health checks, metrics, and alerting
Background Deploy MonitorMonitor a deployment in the background while continuing other work

How to Use

With Claude Code

# Copy a recipe and run it
claude -p "$(cat recipes/code-review/pr-review.md)"

# Or save as a custom command
cp recipes/code-review/pr-review.md .claude/commands/review.md
# Then use: /review

With Cursor / Windsurf / Any AI Assistant

  1. Open the recipe .md file
  2. Copy the prompt into your AI chat
  3. Run on your codebase

Recipe Format

Every recipe follows this structure:

# Recipe Name

> One-line description

## When to Use
- Bullet points of use cases

## Prompt
The exact prompt to copy-paste into your AI assistant.

## Example
Input -> Output showing what the recipe produces.

## Customization
How to modify the recipe for specific needs.

## Tags
`category` `language` `difficulty`

Contributing

Have a useful AI workflow? Share it!

  1. Fork this repo
  2. Create a recipe in the appropriate recipes/ subdirectory
  3. Follow the recipe format
  4. Submit a PR

Ideas for new recipes? Open an issue!

See CONTRIBUTING.md for full guidelines.

License

MIT