{"id":49571259,"url":"https://github.com/sagargupta16/agent-recipes","last_synced_at":"2026-05-03T14:04:51.231Z","repository":{"id":342168107,"uuid":"1172129670","full_name":"Sagargupta16/agent-recipes","owner":"Sagargupta16","description":"Copy-paste AI agent workflows for real-world developer tasks — code review, testing, migrations, and more","archived":false,"fork":false,"pushed_at":"2026-03-16T01:17:27.000Z","size":104,"stargazers_count":2,"open_issues_count":16,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-16T12:12:43.096Z","etag":null,"topics":["ai-agents","ai-workflows","claude-code","code-review","cursor","developer-tools","devops","prompts","security","testing"],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Sagargupta16.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":["Sagargupta16"]}},"created_at":"2026-03-04T01:11:13.000Z","updated_at":"2026-03-16T01:17:30.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/Sagargupta16/agent-recipes","commit_stats":null,"previous_names":["sagargupta16/agent-recipes"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Sagargupta16/agent-recipes","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sagargupta16%2Fagent-recipes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sagargupta16%2Fagent-recipes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sagargupta16%2Fagent-recipes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sagargupta16%2Fagent-recipes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Sagargupta16","download_url":"https://codeload.github.com/Sagargupta16/agent-recipes/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sagargupta16%2Fagent-recipes/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32571468,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T06:36:36.687Z","status":"ssl_error","status_checked_at":"2026-05-03T06:36:09.306Z","response_time":103,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai-agents","ai-workflows","claude-code","code-review","cursor","developer-tools","devops","prompts","security","testing"],"created_at":"2026-05-03T14:04:48.411Z","updated_at":"2026-05-03T14:04:51.224Z","avatar_url":"https://github.com/Sagargupta16.png","language":null,"funding_links":["https://github.com/sponsors/Sagargupta16"],"categories":[],"sub_categories":[],"readme":"# Agent Recipes\n\n\u003e Copy-paste AI agent workflows for real-world developer tasks.\n\nA 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.\n\n## Recipes\n\n### Code Review\n\n| Recipe | Description |\n|--------|-------------|\n| [PR Review](recipes/code-review/pr-review.md) | Comprehensive pull request review with security, performance, and style checks |\n| [Architecture Review](recipes/code-review/architecture-review.md) | High-level codebase architecture analysis and recommendations |\n| [Dependency Audit](recipes/code-review/dependency-audit.md) | Check for outdated, vulnerable, or unnecessary dependencies |\n| [Performance Review](recipes/code-review/performance-review.md) | Identify performance bottlenecks and optimization opportunities |\n\n### Testing\n\n| Recipe | Description |\n|--------|-------------|\n| [Generate Unit Tests](recipes/testing/generate-unit-tests.md) | Auto-generate unit tests for uncovered functions |\n| [E2E Test Writer](recipes/testing/e2e-test-writer.md) | Generate end-to-end tests from user stories |\n| [Coverage Gap Finder](recipes/testing/coverage-gap-finder.md) | Find untested code paths and edge cases |\n\n### Migrations\n\n| Recipe | Description |\n|--------|-------------|\n| [JavaScript to TypeScript](recipes/migrations/js-to-ts.md) | Migrate JS files to TypeScript with proper types |\n| [React Class to Hooks](recipes/migrations/class-to-hooks.md) | Convert React class components to functional + hooks |\n| [CJS to ESM](recipes/migrations/cjs-to-esm.md) | Convert CommonJS requires to ES module imports |\n\n### Documentation\n\n| Recipe | Description |\n|--------|-------------|\n| [README Generator](recipes/documentation/readme-generator.md) | Generate comprehensive README from repo analysis |\n| [API Docs Generator](recipes/documentation/api-docs-generator.md) | Generate OpenAPI/Swagger docs from code |\n| [Changelog Writer](recipes/documentation/changelog-writer.md) | Generate changelog from git commits |\n\n### Security\n\n| Recipe | Description |\n|--------|-------------|\n| [Secret Scanner](recipes/security/secret-scanner.md) | Find hardcoded secrets, keys, and credentials |\n| [OWASP Top 10 Audit](recipes/security/owasp-audit.md) | Check code against OWASP Top 10 vulnerabilities |\n| [Input Validation](recipes/security/input-validation.md) | Add input validation and sanitization to API endpoints |\n\n### DevOps\n\n| Recipe | Description |\n|--------|-------------|\n| [Dockerfile Generator](recipes/devops/dockerfile-generator.md) | Generate optimized multi-stage Dockerfiles |\n| [CI/CD Pipeline](recipes/devops/ci-cd-pipeline.md) | Generate GitHub Actions / GitLab CI from project analysis |\n| [Monitoring Setup](recipes/devops/monitoring-setup.md) | Add health checks, metrics, and alerting |\n\n## How to Use\n\n### With Claude Code\n\n```bash\n# Copy a recipe and run it\nclaude -p \"$(cat recipes/code-review/pr-review.md)\"\n\n# Or save as a custom command\ncp recipes/code-review/pr-review.md .claude/commands/review.md\n# Then use: /review\n```\n\n### With Cursor / Windsurf / Any AI Assistant\n\n1. Open the recipe `.md` file\n2. Copy the prompt into your AI chat\n3. Run on your codebase\n\n## Recipe Format\n\nEvery recipe follows this structure:\n\n```markdown\n# Recipe Name\n\n\u003e One-line description\n\n## When to Use\n- Bullet points of use cases\n\n## Prompt\nThe exact prompt to copy-paste into your AI assistant.\n\n## Example\nInput -\u003e Output showing what the recipe produces.\n\n## Customization\nHow to modify the recipe for specific needs.\n\n## Tags\n`category` `language` `difficulty`\n```\n\n## Contributing\n\nHave a useful AI workflow? Share it!\n\n1. Fork this repo\n2. Create a recipe in the appropriate `recipes/` subdirectory\n3. Follow the [recipe format](#recipe-format)\n4. Submit a PR\n\n**Ideas for new recipes?** [Open an issue](https://github.com/Sagargupta16/agent-recipes/issues/new?template=recipe-request.yml)!\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md) for full guidelines.\n\n## License\n\n[MIT](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsagargupta16%2Fagent-recipes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsagargupta16%2Fagent-recipes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsagargupta16%2Fagent-recipes/lists"}