code▌
172 indexed skills · max 10 per page
explaining-code
patricio0312rev/skills · AI/ML
When explaining code, always include: \n \n Start with an analogy : Compare the code to something from everyday life \n Draw a diagram : Use ASCII art to show the flow, structure, or relationships \n Walk through the code : Explain step-by-step what happens \n Highlight a gotcha : What's a common mistake or misconception? \n \n Keep explanations conversational. For complex concepts, use multiple analogies.
code-quality
tursodatabase/turso · Productivity
Production-grade code standards emphasizing correctness, crash-safety, and Rust idioms over convenience. \n \n Prioritizes data integrity: crash on invalid state rather than corrupt data; assert invariants aggressively; handle all errors explicitly \n Rust-specific patterns: make illegal states unrepresentable, use exhaustive pattern matching and enums over strings, minimize allocations \n Comments document why , not what ; avoid temporal markers, AI conversation references, and code-repeating e
code-review
skillcreatorai/ai-agent-skills · Productivity
Automated code review across security, performance, quality, and testing dimensions. \n \n Analyzes pull requests for four distinct review categories: security vulnerabilities (SQL injection, XSS, hardcoded secrets), performance issues (N+1 queries, memory leaks, missing caches), code quality (duplication, SRP violations, poor naming), and test coverage gaps \n Flags issues at three severity levels (critical, suggestions, nits) with explanations and suggested fixes for each finding \n Includes a
code-smell-detector
rysweet/amplihack · Productivity
This skill identifies anti-patterns that violate amplihack's development philosophy and provides constructive, specific fixes. It ensures code maintains ruthless simplicity, modular design, and zero-BS implementations.
ray-so-code-snippet
intellectronica/agent-skills · Productivity
Generate beautiful code snippet images using ray.so and save them locally.
nestjs-code-review
giuseppe-trisciuoglio/developer-kit · Productivity
Provides structured code review for NestJS applications. Findings categorized by severity (Critical, Warning, Suggestion) with actionable recommendations. Delegates to nestjs-code-review-expert agent for deep analysis.
code-review
alinaqi/claude-bootstrap · Productivity
Load with: base.md + [codex-review.md for OpenAI Codex] + [gemini-review.md for Google Gemini]
git-guardrails-claude-code
mattpocock/skills · AI/ML
Intercept and block dangerous git commands before Claude executes them via PreToolUse hooks. \n \n Blocks five command categories: git push (including --force ), git reset --hard , git clean , git branch -D , and git checkout / git restore on tracked files \n Installs as a bash hook script to either project scope ( .claude/settings.json ) or globally ( ~/.claude/settings.json ) \n Customizable blocklist: edit the hook script to add or remove patterns based on your safety requirements \n Claude r
langgraph-code-review
existential-birds/beagle · Productivity
Catches common bugs in LangGraph state management, graph structure, and async patterns. \n \n Identifies 20+ critical issues including state mutations, missing reducers, invalid conditional edge returns, and checkpointer configuration errors \n Covers state schema problems like improper use of add_messages , full-state returns, and Pydantic models without annotations \n Detects graph structure issues: missing entry points, unreachable nodes, incomplete conditional paths, and undeclared Command d
code-reviewer
shubhamsaboo/awesome-llm-apps · Productivity
Expert code review identifying security vulnerabilities, performance issues, and quality problems. \n \n Organizes findings by priority: security (critical), performance (high), correctness (high), maintainability (medium), and testing \n Covers five core vulnerability categories: SQL injection, XSS, authentication bypasses, hardcoded secrets, and insecure dependencies \n Detects performance bottlenecks including N+1 queries, missing indexes, inefficient algorithms, and memory leaks \n Provides