halflength-ampleness75/claude-code-recipes
Instructions file
Instructions for halflength-ampleness75/claude-code-recipes, covering claude code recipes — project config, project, structure, conventions and writing style.
halflength-ampleness75/claude-code-recipes
Instructions file
Instructions for halflength-ampleness75/claude-code-recipes, covering claude code recipes — project config, project, structure, conventions and writing style.
halflength-ampleness75/claude-code-recipes
Command
Generate REST API endpoints with routes, validation, error handling, and tests.
halflength-ampleness75/claude-code-recipes
Command
Review staged git changes for bugs, security issues, and style violations.
halflength-ampleness75/claude-code-recipes
Command
Generate a conventional commit message from staged changes.
halflength-ampleness75/claude-code-recipes
Command
Generate React or Vue components with prop types, styling, accessibility, and tests.
halflength-ampleness75/claude-code-recipes
Command
Systematic debugging — reproduce, isolate, fix, verify, and add regression test.
halflength-ampleness75/claude-code-recipes
Command
Generate documentation — JSDoc, docstrings, README sections, or API docs.
halflength-ampleness75/claude-code-recipes
Command
Migrate between framework versions or languages with an audited step-by-step plan.
halflength-ampleness75/claude-code-recipes
Command
Find performance bottlenecks across the stack — queries, rendering, bundle size, memory.
halflength-ampleness75/claude-code-recipes
Command
Generate a PR title and description from the current branch diff against main.
halflength-ampleness75/claude-code-recipes
Command
Plan and execute a refactoring with analysis, confirmation, and passing tests.
halflength-ampleness75/claude-code-recipes
Command
Scan the project for OWASP Top 10 vulnerabilities and exposed secrets.
halflength-ampleness75/claude-code-recipes
Command
Generate comprehensive tests for a specified file with edge cases and error scenarios.
halflength-ampleness75/claude-code-recipes
Skill Claude CodeCodex
GET /api/v1/users GET /api/v1/users/123 GET /api/v1/users/123/orders POST /api/v1/users PATCH /api/v1/users/123 DELETE /api/v1/users/123.
halflength-ampleness75/claude-code-recipes
Skill Claude CodeCodex
Skill "git-workflow" from halflength-ampleness75/claude-code-recipes, covering git workflow, branch naming, rules, conventional commits and format.
halflength-ampleness75/claude-code-recipes
Skill Claude CodeCodex
// Good interface UserCardProps { user: User; onSelect: (id: string) => void; variant?: "compact" | "full"; }.
halflength-ampleness75/claude-code-recipes
Skill Claude CodeCodex
Follow the testing pyramid — more unit tests, fewer integration tests, even fewer e2e tests.
halflength-ampleness75/claude-code-recipes
Skill Claude CodeCodex
Always enable strict mode. Use this tsconfig.json base.