Agent Recipes banner
Sagargupta16 Sagargupta16

Agent Recipes

Security community

Description

Copy-paste AI agent workflows for real-world dev tasks - code review, testing, security scanning, DevOps automation

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

Agent Recipes

[![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE) [![Recipes](https://img.shields.io/badge/recipes-22-brightgreen.svg)](#recipes) [![Contributions Welcome](https://img.shields.io/badge/contributions-welcome-orange.svg)](CONTRIBUTING.md)

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

Recipe Description
PR Review Comprehensive pull request review with security, performance, and style checks
Architecture Review High-level codebase architecture analysis and recommendations
Dependency Audit Check for outdated, vulnerable, or unnecessary dependencies
Performance Review Identify performance bottlenecks and optimization opportunities
Multi-Repo PR Check Check all your open PRs across multiple repos in parallel

Testing

Recipe Description
Generate Unit Tests Auto-generate unit tests for uncovered functions
E2E Test Writer Generate end-to-end tests from user stories
Coverage Gap Finder Find untested code paths and edge cases

Migrations

Recipe Description
JavaScript to TypeScript Migrate JS files to TypeScript with proper types
React Class to Hooks Convert React class components to functional + hooks
[CJS to ESM](recipes/migrations/cjs-to-esm