code▌
172 indexed skills · max 10 per page
claude-code-guide
davila7/claude-code-templates · Frontend
Master guide for configuring Claude Code with templates, prompting strategies, and debugging techniques. \n \n Provides a CLAUDE.md configuration template for documenting project commands, code style rules, and agent workflows \n Includes \"Thinking\" keywords like \"step-by-step analysis\" and \"root cause investigation\" to trigger deeper reasoning in agent responses \n Offers debugging strategies for stuck agents: clearing context, using explicit instructions, and requesting verbose logs \n R
code-refactoring-refactor-clean
sickn33/antigravity-awesome-skills · Productivity
Code refactoring expert applying clean code principles, SOLID patterns, and best practices to improve maintainability. \n \n Analyzes code smells, dependencies, and risky hotspots to identify refactoring priorities \n Proposes incremental refactor plans with small, reviewable slices that preserve existing behavior \n Covers duplication reduction, complexity simplification, testability improvements, and design consistency \n Includes test updates and regression verification to ensure safe, non-br
swiftui-code-review
existential-birds/beagle · Frontend
swiftui-code-review
code-security
semgrep/skills · Productivity
Comprehensive security rules for writing secure code across 15+ languages. Covers OWASP Top 10, infrastructure security, and coding best practices with 28 rule categories.
code-simplifier
pproenca/dot-skills · Productivity
Comprehensive code simplification guide for AI agents and LLMs. Contains 47 rules across 8 categories, prioritized by impact from critical (context discovery, behavior preservation) to incremental (language idioms). Each rule includes detailed explanations, real-world examples comparing incorrect vs. correct implementations, and specific impact metrics.
code-review
davila7/claude-code-templates · Productivity
Follow these guidelines when reviewing code for Sentry projects.
code-review
getsentry/skills · Productivity
Code review framework following Sentry engineering practices for pull requests and code quality assessment. \n \n Covers six key problem areas: runtime errors, performance bottlenecks, side effects, backwards compatibility, ORM query issues, and security vulnerabilities \n Includes design assessment guidance for component interactions, architectural alignment, and requirement conflicts \n Requires appropriate test coverage across functional, integration, and end-to-end tests with verification of
everything-claude-code-conventions
affaan-m/everything-claude-code · AI/ML
Generated from affaan-m/everything-claude-code on 2026-03-20
clean-code
davila7/claude-code-templates · Productivity
Pragmatic coding standards emphasizing conciseness, single responsibility, and direct solutions. \n \n Covers five core principles: Single Responsibility, DRY, KISS, YAGNI, and the Boy Scout rule for incremental code improvement \n Provides naming conventions for variables, functions, booleans, and constants designed to self-document intent without excessive comments \n Enforces function discipline: max 20 lines, one level of abstraction, minimal arguments, and no unexpected side effects \n Incl
code-refactoring
skillcreatorai/ai-agent-skills · Productivity
Structured patterns and techniques for improving code quality through safe, behavior-preserving refactoring. \n \n Covers common code smells including long methods, deeply nested conditionals, primitive obsession, and feature envy with before/after examples \n Provides core refactoring techniques: extract method, replace conditional with polymorphism, introduce parameter objects, and replace magic numbers with constants \n Emphasizes safe refactoring workflow: ensure test coverage first, make sm