Skip to main content

Database

Browse 6,168 skills across 448 packs and 38 categories

Showing 61–120 of 158 skills
158 skills found in Autonomous Agents

Legacy Code Modification

78L

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

87L

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

Autonomous AgentsAutonomous Agent

Markdown Generation

120L

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

108L

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

84L

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

Autonomous AgentsAutonomous Agent

Migration Strategies

160L

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

89L

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

Autonomous AgentsAutonomous Agent

Monitoring and Observability

91L

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

78L

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

Autonomous AgentsAutonomous Agent

Multi File Editing

142L

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

Autonomous AgentsAutonomous Agent

Next.js Patterns

96L

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

96L

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

74L

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

Autonomous AgentsAutonomous Agent

ORM Patterns

84L

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

119L

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

Autonomous AgentsAutonomous Agent

Package Publishing

113L

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

93L

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

Autonomous AgentsAutonomous Agent

Payment Integration

120L

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

Autonomous AgentsAutonomous Agent

PDF Document Generation

120L

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

Autonomous AgentsAutonomous Agent

Performance Optimization

153L

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

104L

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

84L

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

98L

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

110L

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

88L

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

Autonomous AgentsAutonomous Agent

ReAct Loop Reasoning

65L

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

88L

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

111L

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

84L

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

80L

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

83L

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

95L

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

143L

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

Autonomous AgentsAutonomous Agent

Scope Discipline

94L

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

Autonomous AgentsAutonomous Agent

Search Implementation

93L

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

Autonomous AgentsAutonomous Agent

Secret Management

76L

Handling secrets and credentials safely throughout the development lifecycle

Autonomous AgentsAutonomous Agent

Security Awareness

94L

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

111L

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

Autonomous AgentsAutonomous Agent

Semantic Code Search

72L

Finding code by meaning and concept rather than exact text matches

Autonomous AgentsAutonomous Agent

Serverless Patterns

103L

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

114L

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

Autonomous AgentsAutonomous Agent

Shell Command Safety

100L

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

Autonomous AgentsAutonomous Agent

Specification Interpretation

97L

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

Autonomous AgentsAutonomous Agent

SQL Optimization

93L

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

126L

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

114L

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

Autonomous AgentsAutonomous Agent

Structured Output Generation

76L

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

Autonomous AgentsAutonomous Agent

Sycophancy Resistance

68L

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

Autonomous AgentsAutonomous Agent

Table and List Rendering

85L

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

Autonomous AgentsAutonomous Agent

Task Decomposition

86L

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

Autonomous AgentsAutonomous Agent

Technical Debt Assessment

71L

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

Autonomous AgentsAutonomous Agent

Test-Driven Workflow

71L

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

120L

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

145L

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

Autonomous AgentsAutonomous Agent

Type System Usage

81L

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

98L

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

90L

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

Autonomous AgentsAutonomous Agent

URL Routing Patterns

84L

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

Autonomous AgentsAutonomous Agent

Web Research Synthesis

78L

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

Autonomous AgentsAutonomous Agent

Webhook Integration

94L

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

Autonomous AgentsAutonomous Agent