Skip to content

Skills Marketplace

Browse 2,562 skills across 122 packs and 30 categories

Showing 61–120 of 122 skills

Legacy Code Modification

79L

Safely modifying legacy code without breaking things, including reading undocumented code, adding tests before changing, and applying minimal-impact strategies.

Autonomous AgentsAutonomous Agent

Log Analysis

88L

Reading and interpreting application logs effectively, including log level understanding, stack trace parsing, pattern identification, and extracting actionable insights.

Autonomous AgentsAutonomous Agent

Markdown Generation

121L

Generating well-formatted Markdown documents with proper heading hierarchy, code blocks, tables, link references, image embedding, escaping, and linting.

Autonomous AgentsAutonomous Agent

Memory Leak Detection

109L

Identifying and fixing memory leaks — common leak patterns, heap analysis, profiling tools, garbage collection understanding, and preventive techniques like WeakRef and proper cleanup.

Autonomous AgentsAutonomous Agent

Microservices Patterns

85L

Designing and working with microservice architectures including service boundaries, communication patterns, data consistency, and resilience strategies.

Autonomous AgentsAutonomous Agent

Migration Strategies

161L

Planning 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.

Autonomous AgentsAutonomous Agent

Modal Dialog Patterns

90L

Implementing modals and dialogs correctly with focus management, accessibility, and interaction patterns

Autonomous AgentsAutonomous Agent

Monitoring and Observability

92L

Adding monitoring and observability to applications through metrics collection, structured logging, distributed tracing, health checks, alerting, and SLI/SLO definition.

Autonomous AgentsAutonomous Agent

Monorepo Navigation

79L

Working effectively in monorepo codebases with package boundaries, workspace tools, shared dependencies, and scoped changes.

Autonomous AgentsAutonomous Agent

Multi-File Editing

143L

Coordinating changes across multiple files safely with consistency guarantees, dependency tracking, and partial-update prevention

Autonomous AgentsAutonomous Agent

Next.js Patterns

97L

Next.js application development patterns — App Router, server components, server actions, data fetching, middleware, route handlers, static generation, and metadata management.

Autonomous AgentsAutonomous Agent

NoSQL Patterns

97L

Working with NoSQL databases effectively — MongoDB document design, Redis data structures, DynamoDB access patterns, denormalization strategies, eventual consistency, secondary indexes, TTL expiration, and atomic operations.

Autonomous AgentsAutonomous Agent

Observability Instrumentation

75L

Adding telemetry to code systematically with traces, metrics, and structured logs

Autonomous AgentsAutonomous Agent

ORM Patterns

85L

Working with Object-Relational Mappers effectively — Prisma, Sequelize, SQLAlchemy, TypeORM patterns for relation handling, migrations, query optimization, and transaction management.

Autonomous AgentsAutonomous Agent

Output Verification

120L

Systematic verification of your own work through testing, diff review, regression checking, and scope validation before presenting results

Autonomous AgentsAutonomous Agent

Package Publishing

114L

Publishing packages to registries including npm and PyPI workflows, semantic versioning, changelog generation, pre-publish checks, handling breaking changes, and deprecation.

Autonomous AgentsAutonomous Agent

Parallel Task Execution

94L

Running independent subtasks in parallel for efficiency while managing shared state, resource conflicts, and result merging

Autonomous AgentsAutonomous Agent

Payment Integration

121L

Integrating payment processing with Stripe/PayPal APIs, handling webhooks, subscriptions, refunds, PCI compliance, currency handling, and tax calculation.

Autonomous AgentsAutonomous Agent

PDF Document Generation

121L

Generating PDF documents programmatically including HTML-to-PDF conversion, template-based generation, layout control, compliance, and digital signatures.

Autonomous AgentsAutonomous Agent

Performance Optimization

154L

Identifying and fixing performance issues — profiling before optimizing, common bottlenecks, Big-O awareness, caching strategies, lazy loading, measuring before and after, and avoiding premature optimization.

Autonomous AgentsAutonomous Agent

Planning Before Coding

105L

How 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.

Autonomous AgentsAutonomous Agent

Progress Reporting

85L

Communicating progress effectively during long tasks — when to update, what to share, and how to structure status messages without overwhelming the user.

Autonomous AgentsAutonomous Agent

Python Best Practices

99L

Idiomatic Python development — PEP 8 style, type hints, virtual environments, package management, comprehensions, context managers, decorators, dataclasses, and testing with pytest.

Autonomous AgentsAutonomous Agent

Queue Processing

111L

Implementing job queues and background processing — queue selection, retry policies, dead letter queues, concurrency control, and reliable idempotent job execution.

Autonomous AgentsAutonomous Agent

Rate Limiting Implementation

89L

Implementing rate limiting and throttling — token bucket, sliding window, distributed limiting, response headers, and graceful degradation under load.

Autonomous AgentsAutonomous Agent

ReAct Loop Reasoning

66L

The ReAct (Reason + Act) pattern for structured problem solving, alternating between thinking and doing while maintaining a coherent reasoning trace.

Autonomous AgentsAutonomous Agent

React Patterns

89L

Modern React development patterns — hooks, custom hooks, component composition, context usage, state management selection, render optimization, error boundaries, and suspense.

Autonomous AgentsAutonomous Agent

Refactoring Patterns

112L

Safe 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.

Autonomous AgentsAutonomous Agent

Regex Pattern Crafting

85L

Writing correct and efficient regular expressions for code manipulation, including avoiding catastrophic backtracking, testing strategies, and knowing when regex is the wrong tool.

Autonomous AgentsAutonomous Agent

Responsive Design Implementation

81L

Building responsive layouts across devices using mobile-first approaches, flexbox and grid, fluid typography, container queries, and thorough cross-device testing.

Autonomous AgentsAutonomous Agent

Risk Assessment

84L

Evaluating risks before taking actions — classifying operations by reversibility, blast radius, and impact to decide when to proceed vs pause and confirm.

Autonomous AgentsAutonomous Agent

Rust Fundamentals

96L

Rust development patterns for agents working in Rust codebases — ownership, borrowing, lifetimes, Result/Option handling, traits, generics, error handling, cargo workspaces, and common idioms.

Autonomous AgentsAutonomous Agent

Scope Control

144L

Staying 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 "good enough."

Autonomous AgentsAutonomous Agent

Scope Discipline

95L

Resisting the urge to over-engineer, gold-plate, and bundle unrequested changes with simple fixes

Autonomous AgentsAutonomous Agent

Search Implementation

94L

Adding search functionality to applications including full-text search, Elasticsearch/Algolia/Meilisearch patterns, indexing strategies, relevance tuning, and autocomplete.

Autonomous AgentsAutonomous Agent

Secret Management

77L

Handling secrets and credentials safely throughout the development lifecycle

Autonomous AgentsAutonomous Agent

Security Awareness

95L

Security considerations during code generation — avoiding injection vulnerabilities, secrets management, input validation, safe defaults, recognizing insecure patterns, and OWASP top 10 awareness.

Autonomous AgentsAutonomous Agent

Self-Correction

112L

How to detect, diagnose, and recover from mistakes during autonomous execution without cascading failures

Autonomous AgentsAutonomous Agent

Semantic Code Search

73L

Finding code by meaning and concept rather than exact text matches

Autonomous AgentsAutonomous Agent

Serverless Patterns

104L

Building serverless applications with Lambda/Cloud Functions, including cold start optimization, event-driven design, state management, and deployment automation.

Autonomous AgentsAutonomous Agent

Session and Cookie Management

115L

Managing sessions and cookies correctly including cookie attributes, session stores, security hardening, consent handling, and token-based alternatives.

Autonomous AgentsAutonomous Agent

Shell Command Safety

101L

Executing shell commands safely and effectively, including proper quoting, exit code handling, avoiding destructive operations, and cross-platform compatibility.

Autonomous AgentsAutonomous Agent

Specification Interpretation

98L

Correctly interpreting user requirements by reading between the lines, identifying gaps, and building accurate mental models of intent

Autonomous AgentsAutonomous Agent

SQL Optimization

94L

Writing efficient SQL queries — index design, EXPLAIN analysis, join optimization, CTEs vs subqueries, pagination techniques, aggregate optimization, parameterized queries, and connection pooling.

Autonomous AgentsAutonomous Agent

State Machine Patterns

127L

Using state machines for complex workflows — state definition, transitions, guard conditions, hierarchical states, and knowing when a state machine is the right abstraction.

Autonomous AgentsAutonomous Agent

State Management Across Sessions

115L

Maintaining coherent progress and context across context window boundaries and separate agent sessions

Autonomous AgentsAutonomous Agent

Structured Output Generation

77L

Producing well-structured, parseable output in formats like JSON, YAML, and TOML with correct syntax, schema adherence, and validation.

Autonomous AgentsAutonomous Agent

Sycophancy Resistance

69L

Pushing back on bad ideas instead of blindly executing user requests that will cause problems

Autonomous AgentsAutonomous Agent

Table and List Rendering

86L

Building performant data tables and lists with virtualization, sorting, and responsive patterns

Autonomous AgentsAutonomous Agent

Task Decomposition

87L

How to break complex tasks into atomic subtasks with dependency awareness, scope estimation, and ambiguity handling

Autonomous AgentsAutonomous Agent

Technical Debt Assessment

72L

Identifying, quantifying, and communicating technical debt with actionable remediation plans

Autonomous AgentsAutonomous Agent

Test-Driven Workflow

72L

Using tests to drive autonomous development through red-green-refactor cycles, leveraging test failures as navigation signals, and building confidence through coverage.

Autonomous AgentsAutonomous Agent

Test Writing

121L

Writing 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.

Autonomous AgentsAutonomous Agent

Tool Selection

146L

Choosing the right tool for each subtask based on cost-benefit analysis, parallelization opportunities, and thoroughness calibration

Autonomous AgentsAutonomous Agent

Type System Usage

82L

Leveraging type systems effectively across languages including TypeScript, Python, Go, and Rust for safer, more expressive, and self-documenting code.

Autonomous AgentsAutonomous Agent

Advanced TypeScript

99L

Advanced TypeScript patterns for agents — generic types, conditional types, mapped types, discriminated unions, type guards, utility types, declaration files, strict mode, and module resolution.

Autonomous AgentsAutonomous Agent

Undo Redo Implementation

91L

Implementing undo/redo functionality with command patterns, state history, and memory efficiency

Autonomous AgentsAutonomous Agent

URL Routing Patterns

85L

Implementing URL routing in web applications with RESTful design and modern patterns

Autonomous AgentsAutonomous Agent

Web Research Synthesis

79L

Effective web research techniques including query formulation, source evaluation, cross-referencing, and synthesizing findings into actionable intelligence.

Autonomous AgentsAutonomous Agent

Webhook Integration

95L

Implementing and consuming webhooks with endpoint security, signature verification, idempotency handling, retry logic, payload validation, and dead letter queues.

Autonomous AgentsAutonomous Agent