Database
Browse 6,168 skills across 448 packs and 38 categories
Legacy Code Modification
78LSafely modifying legacy code without breaking things, including reading undocumented code, adding tests before changing, and applying minimal-impact strategies.
Log Analysis
87LReading and interpreting application logs effectively, including log level understanding, stack trace parsing, pattern identification, and extracting actionable insights.
Markdown Generation
120LGenerating well-formatted Markdown documents with proper heading hierarchy, code blocks, tables, link references, image embedding, escaping, and linting.
Memory Leak Detection
108LIdentifying and fixing memory leaks — common leak patterns, heap analysis, profiling tools, garbage collection understanding, and preventive techniques like WeakRef and proper cleanup.
Microservices Patterns
84LDesigning and working with microservice architectures including service boundaries, communication patterns, data consistency, and resilience strategies.
Migration Strategies
160LPlanning and executing code migrations safely — database migrations, API version upgrades, framework migrations, feature flag driven rollouts, backward compatibility, data migration scripts, rollback plans, and testing migration paths.
Modal Dialog Patterns
89LImplementing modals and dialogs correctly with focus management, accessibility, and interaction patterns
Monitoring and Observability
91LAdding monitoring and observability to applications through metrics collection, structured logging, distributed tracing, health checks, alerting, and SLI/SLO definition.
Monorepo Navigation
78LWorking effectively in monorepo codebases with package boundaries, workspace tools, shared dependencies, and scoped changes.
Multi File Editing
142LCoordinating changes across multiple files safely with consistency guarantees, dependency tracking, and partial-update prevention
Next.js Patterns
96LNext.js application development patterns — App Router, server components, server actions, data fetching, middleware, route handlers, static generation, and metadata management.
NoSQL Patterns
96LWorking with NoSQL databases effectively — MongoDB document design, Redis data structures, DynamoDB access patterns, denormalization strategies, eventual consistency, secondary indexes, TTL expiration, and atomic operations.
Observability Instrumentation
74LAdding telemetry to code systematically with traces, metrics, and structured logs
ORM Patterns
84LWorking with Object-Relational Mappers effectively — Prisma, Sequelize, SQLAlchemy, TypeORM patterns for relation handling, migrations, query optimization, and transaction management.
Output Verification
119LSystematic verification of your own work through testing, diff review, regression checking, and scope validation before presenting results
Package Publishing
113LPublishing packages to registries including npm and PyPI workflows, semantic versioning, changelog generation, pre-publish checks, handling breaking changes, and deprecation.
Parallel Task Execution
93LRunning independent subtasks in parallel for efficiency while managing shared state, resource conflicts, and result merging
Payment Integration
120LIntegrating payment processing with Stripe/PayPal APIs, handling webhooks, subscriptions, refunds, PCI compliance, currency handling, and tax calculation.
PDF Document Generation
120LGenerating PDF documents programmatically including HTML-to-PDF conversion, template-based generation, layout control, compliance, and digital signatures.
Performance Optimization
153LIdentifying and fixing performance issues — profiling before optimizing, common bottlenecks, Big-O awareness, caching strategies, lazy loading, measuring before and after, and avoiding premature optimization.
Planning Before Coding
104LHow to plan implementation before writing code — requirements analysis, identifying unknowns, architectural decisions, file impact analysis, choosing between approaches, and knowing when a plan is needed vs when to just start.
Progress Reporting
84LCommunicating progress effectively during long tasks — when to update, what to share, and how to structure status messages without overwhelming the user.
Python Best Practices
98LIdiomatic Python development — PEP 8 style, type hints, virtual environments, package management, comprehensions, context managers, decorators, dataclasses, and testing with pytest.
Queue Processing
110LImplementing job queues and background processing — queue selection, retry policies, dead letter queues, concurrency control, and reliable idempotent job execution.
Rate Limiting Implementation
88LImplementing rate limiting and throttling — token bucket, sliding window, distributed limiting, response headers, and graceful degradation under load.
ReAct Loop Reasoning
65LThe ReAct (Reason + Act) pattern for structured problem solving, alternating between thinking and doing while maintaining a coherent reasoning trace.
React Patterns
88LModern React development patterns — hooks, custom hooks, component composition, context usage, state management selection, render optimization, error boundaries, and suspense.
Refactoring Patterns
111LSafe refactoring techniques for autonomous agents — extract method/class, rename with propagation, dead code removal, simplifying conditionals, reducing duplication, maintaining backward compatibility, and refactoring in small verified steps.
Regex Pattern Crafting
84LWriting correct and efficient regular expressions for code manipulation, including avoiding catastrophic backtracking, testing strategies, and knowing when regex is the wrong tool.
Responsive Design Implementation
80LBuilding responsive layouts across devices using mobile-first approaches, flexbox and grid, fluid typography, container queries, and thorough cross-device testing.
Risk Assessment
83LEvaluating risks before taking actions — classifying operations by reversibility, blast radius, and impact to decide when to proceed vs pause and confirm.
Rust Fundamentals
95LRust development patterns for agents working in Rust codebases — ownership, borrowing, lifetimes, Result/Option handling, traits, generics, error handling, cargo workspaces, and common idioms.
Scope Control
143LStaying focused on what was actually requested — avoiding feature creep, not refactoring code you were not asked to touch, minimal viable changes, recognizing gold-plating, asking before expanding scope, and the discipline of
Scope Discipline
94LResisting the urge to over-engineer, gold-plate, and bundle unrequested changes with simple fixes
Search Implementation
93LAdding search functionality to applications including full-text search, Elasticsearch/Algolia/Meilisearch patterns, indexing strategies, relevance tuning, and autocomplete.
Secret Management
76LHandling secrets and credentials safely throughout the development lifecycle
Security Awareness
94LSecurity considerations during code generation — avoiding injection vulnerabilities, secrets management, input validation, safe defaults, recognizing insecure patterns, and OWASP top 10 awareness.
Self Correction
111LHow to detect, diagnose, and recover from mistakes during autonomous execution without cascading failures
Semantic Code Search
72LFinding code by meaning and concept rather than exact text matches
Serverless Patterns
103LBuilding serverless applications with Lambda/Cloud Functions, including cold start optimization, event-driven design, state management, and deployment automation.
Session and Cookie Management
114LManaging sessions and cookies correctly including cookie attributes, session stores, security hardening, consent handling, and token-based alternatives.
Shell Command Safety
100LExecuting shell commands safely and effectively, including proper quoting, exit code handling, avoiding destructive operations, and cross-platform compatibility.
Specification Interpretation
97LCorrectly interpreting user requirements by reading between the lines, identifying gaps, and building accurate mental models of intent
SQL Optimization
93LWriting efficient SQL queries — index design, EXPLAIN analysis, join optimization, CTEs vs subqueries, pagination techniques, aggregate optimization, parameterized queries, and connection pooling.
State Machine Patterns
126LUsing state machines for complex workflows — state definition, transitions, guard conditions, hierarchical states, and knowing when a state machine is the right abstraction.
State Management Across Sessions
114LMaintaining coherent progress and context across context window boundaries and separate agent sessions
Structured Output Generation
76LProducing well-structured, parseable output in formats like JSON, YAML, and TOML with correct syntax, schema adherence, and validation.
Sycophancy Resistance
68LPushing back on bad ideas instead of blindly executing user requests that will cause problems
Table and List Rendering
85LBuilding performant data tables and lists with virtualization, sorting, and responsive patterns
Task Decomposition
86LHow to break complex tasks into atomic subtasks with dependency awareness, scope estimation, and ambiguity handling
Technical Debt Assessment
71LIdentifying, quantifying, and communicating technical debt with actionable remediation plans
Test-Driven Workflow
71LUsing tests to drive autonomous development through red-green-refactor cycles, leveraging test failures as navigation signals, and building confidence through coverage.
Test Writing
120LWriting effective tests autonomously — test structure (arrange-act-assert), choosing what to test, edge cases, mocking strategies, integration vs unit decisions, test naming, avoiding brittle tests, and testing error paths.
Tool Selection
145LChoosing the right tool for each subtask based on cost-benefit analysis, parallelization opportunities, and thoroughness calibration
Type System Usage
81LLeveraging type systems effectively across languages including TypeScript, Python, Go, and Rust for safer, more expressive, and self-documenting code.
Advanced TypeScript
98LAdvanced TypeScript patterns for agents — generic types, conditional types, mapped types, discriminated unions, type guards, utility types, declaration files, strict mode, and module resolution.
Undo Redo Implementation
90LImplementing undo/redo functionality with command patterns, state history, and memory efficiency
URL Routing Patterns
84LImplementing URL routing in web applications with RESTful design and modern patterns
Web Research Synthesis
78LEffective web research techniques including query formulation, source evaluation, cross-referencing, and synthesizing findings into actionable intelligence.
Webhook Integration
94LImplementing and consuming webhooks with endpoint security, signature verification, idempotency handling, retry logic, payload validation, and dead letter queues.