Skip to main content

// category

Backend Development

Backend development, APIs, and server-side programming

198 skills in this category

198 matches

pt2-bug-basher 100k

Debug PyTorch 2 compiler stack failures including Dynamo graph breaks, Inductor codegen errors, AOTAutograd crashes, and accuracy mismatches. Use when encountering torch.compile errors, BackendCompilerFailed exceptions, recompilation issues, Triton kernel failures, FX graph problems, or when the user mentions debugging PT2, Dynamo, Inductor, or compiled model issues.

pytorch 2026-05-30
agent-dev-backend-api 57k

Agent skill for dev-backend-api - invoke with $agent-dev-backend-api

ruvnet 2026-05-30
V3 Memory Unification 57k

Unify 6+ memory systems into AgentDB with HNSW indexing for 150x-12,500x search improvements. Implements ADR-006 (Unified Memory Service) and ADR-009 (Hybrid Memory Backend).

ruvnet 2026-05-30
Add Admin API Endpoint 54k

Add a new endpoint or endpoints to Ghost's Admin API at `ghost/api/admin/**`.

TryGhost 2026-05-29
add-private-feature-flag 54k

Use when adding a new private (developer experiments) feature flag to Ghost, including the backend registration and settings UI toggle.

TryGhost 2026-05-29
commit 54k

Commit message formatting and guidelines

TryGhost 2026-05-29
Create database migration 54k

Create a database migration to add a table, add columns to an existing table, add a setting, or otherwise change the schema of Ghost's MySQL database. Use this skill whenever the task involves modifying Ghost's database schema — including adding, removing, or renaming columns or tables, adding new settings, creating indexes, updating data, or any change that requires a migration file in ghost/core. Also use when the user references schema.js, knex-migrator, the migrations directory, or asks to "add a field" or "add a column" to any Ghost model/table. Even if the user frames it as a feature or Linear issue, if the implementation requires a schema change, this skill applies.

TryGhost 2026-05-29
Format numbers 54k

Format numbers using the formatNumber function from Shade whenever someone edits a TSX file.

TryGhost 2026-05-29
cell-architecture 44k

>-

getsentry 2026-05-30
cmdk-actions 44k

Guide for adding new actions to Sentry's Command+K palette. Use when implementing new cmdk actions, registering page-level or global actions, building async resource pickers, or adding contextual actions to a view.

getsentry 2026-05-30
design-system 44k

Guide for using Sentry's layout and text primitives. Use when implementing UI components, layouts, or typography. Enforces use of core components over styled components.

getsentry 2026-05-30
django-models 44k

Design Django ORM models for Sentry following architectural conventions for silos, replication, relocation, and foreign keys. Use when adding a new Django model, designing a model for a feature, deciding where data should live, picking a foreign key type, or refactoring an existing model's silo placement. Trigger on "add a Django model", "create a model", "design a model for X", "new database table", "store this data in the DB", "I need to track Y", "model for [feature]". Not for Pydantic models, dataclasses, ML models, or Protobuf — this is specifically for Django ORM models in the Sentry codebase.

getsentry 2026-05-30
generate-migration 44k

Generate Django database migrations for Sentry. Use when creating migrations, adding/removing columns or tables, adding indexes, or resolving migration conflicts.

getsentry 2026-05-30
hybrid-cloud-outboxes 44k

>-

getsentry 2026-05-30
hybrid-cloud-rpc 44k

Guide for creating, updating, and deprecating hybrid cloud RPC services in Sentry. Use when asked to "add RPC method", "create RPC service", "hybrid cloud service", "new RPC model", "deprecate RPC method", "remove RPC endpoint", "cross-silo service", "cell RPC", or "control silo service". Covers service scaffolding, method signatures, RPC models, cell resolvers, testing, and safe deprecation workflows.

getsentry 2026-05-30
hybrid-cloud-test-gen 44k

Generate hybrid cloud tests for the Sentry codebase. Use when asked to "generate HC test", "create hybrid cloud test", "write HC test", "add HC test", "write RPC test", "test RPC service", "silo test", "cross-silo test", "outbox test", "API gateway test", or "endpoint silo test". Covers RPC service tests, API gateway tests, outbox pattern tests, and API endpoint tests with silo decorators.

getsentry 2026-05-30
lint-fix 44k

Fix violations of an eslintPluginScraps rule across the codebase. Use when asked to "fix lint violations", "apply a lint rule", "fix scraps rule errors", "roll out a lint rule", "enforce a rule codebase-wide", or "fix design system lint". Covers manual fixes, autofix, batching, and codemod strategies for large-scale rollouts.

getsentry 2026-05-30
lint-new 44k

Create a new ESLint rule with tests for eslintPluginScraps. Use when asked to "create a lint rule", "add an eslint rule", "scaffold a rule", "write a new scraps rule", or "new design system lint rule". Covers rule creation, test authoring, registration, and autofix implementation.

getsentry 2026-05-30
notification-platform 44k

Guide for adding notifications, custom renderers, or new providers to Sentry's NotificationPlatform. Use when asked to "add notification", "new notification", "notification platform", "send notification", "notification template", "notification renderer", "notification provider", "NotificationPlatform", "notify user", "send email notification", "send slack notification".

getsentry 2026-05-30
sentry-backend-bugs 44k

Review Sentry Python and Django changes for bug patterns drawn from real production issues. Use when reviewing a backend diff or PR, checking Warden findings, auditing the current branch, reviewing production-error patterns, or looking for common regressions in `src/` and `tests/`.

getsentry 2026-05-30
sentry-security 44k

Sentry-specific security review based on real vulnerability history. Use when reviewing Sentry endpoints, serializers, or views for security issues. Trigger keywords: "sentry security review", "check for IDOR", "access control review", "org scoping", "cross-org", "security audit endpoint".

getsentry 2026-05-30
setup-dev 44k

Set up and manage the Sentry development environment using devenv. Handles fresh setup, updating existing environments, starting dev services, and troubleshooting. Use when asked to "set up sentry", "setup dev environment", "get sentry running", "start dev server", "devenv setup", "devservices not working", "sentry won't start", or any development environment issue.

getsentry 2026-05-30
api-design-principles 39k

Master REST and GraphQL API design principles to build intuitive, scalable, and maintainable APIs that delight developers and stand the test of time.

sickn33 2026-05-30
api-endpoint-builder 39k

Builds production-ready REST API endpoints with validation, error handling, authentication, and documentation. Follows best practices for security and scalability.

sickn33 2026-05-30
api-fuzzing-bug-bounty 39k

Provide comprehensive techniques for testing REST, SOAP, and GraphQL APIs during bug bounty hunting and penetration testing engagements. Covers vulnerability discovery, authentication bypass, IDOR exploitation, and API-specific attack vectors.

sickn33 2026-05-30
api-patterns 39k

API design principles and decision-making. REST vs GraphQL vs tRPC selection, response formats, versioning, pagination.

sickn33 2026-05-30
api-security-testing 39k

API security testing workflow for REST and GraphQL APIs covering authentication, authorization, rate limiting, input validation, and security best practices.

sickn33 2026-05-30
appdeploy 39k

Deploy web apps with backend APIs, database, and file storage. Use when the user asks to deploy or publish a website or web app and wants a public URL. Uses HTTP API via curl.

sickn33 2026-05-30
architecture-patterns 39k

Master proven backend architecture patterns including Clean Architecture, Hexagonal Architecture, and Domain-Driven Design to build maintainable, testable, and scalable systems.

sickn33 2026-05-30
azure-communication-callautomation-java 39k

Build server-side call automation workflows including IVR systems, call routing, recording, and AI-powered interactions.

sickn33 2026-05-30
azure-speech-to-text-rest-py 39k

Azure Speech to Text REST API for short audio (Python). Use for simple speech recognition of audio files up to 60 seconds without the Speech SDK.

sickn33 2026-05-30
backend-architect 39k

Expert backend architect specializing in scalable API design, microservices architecture, and distributed systems.

sickn33 2026-05-30
backend-dev-guidelines 39k

You are a senior backend engineer operating production-grade services under strict architectural and reliability constraints. Use when routes, controllers, services, repositories, express middleware, or prisma database access.

sickn33 2026-05-30
backend-development-feature-development 39k

Orchestrate end-to-end backend feature development from requirements to deployment. Use when coordinating multi-phase feature delivery across teams and services.

sickn33 2026-05-30
backend-security-coder 39k

Expert in secure backend coding practices specializing in input validation, authentication, and API security. Use PROACTIVELY for backend security implementations or security code reviews.

sickn33 2026-05-30
cc-skill-security-review 39k

This skill ensures all code follows security best practices and identifies potential vulnerabilities. Use when implementing authentication or authorization, handling user input or file uploads, or creating new API endpoints.

sickn33 2026-05-30
comfyui-gateway 39k

REST API gateway for ComfyUI servers. Workflow management, job queuing, webhooks, caching, auth, rate limiting, and image delivery (URL + base64).

sickn33 2026-05-30
dotnet-architect 39k

Expert .NET backend architect specializing in C#, ASP.NET Core, Entity Framework, Dapper, and enterprise application patterns.

sickn33 2026-05-30
dotnet-backend-patterns 39k

Master C#/.NET patterns for building production-grade APIs, MCP servers, and enterprise backends with modern best practices (2024/2025).

sickn33 2026-05-30
dotnet-backend 39k

Build ASP.NET Core 8+ backend services with EF Core, auth, background jobs, and production API patterns.

sickn33 2026-05-30
fastapi-templates 39k

Create production-ready FastAPI projects with async patterns, dependency injection, and comprehensive error handling. Use when building new FastAPI applications or setting up backend API projects.

sickn33 2026-05-30
firebase 39k

Firebase gives you a complete backend in minutes - auth, database,

sickn33 2026-05-30
fp-backend 39k

Functional programming patterns for Node.js/Deno backend development using fp-ts, ReaderTaskEither, and functional dependency injection

sickn33 2026-05-30
graphql-architect 39k

Master modern GraphQL with federation, performance optimization, and enterprise security. Build scalable schemas, implement advanced caching, and design real-time systems.

sickn33 2026-05-30
graphql 39k

GraphQL gives clients exactly the data they need - no more, no

sickn33 2026-05-30
nodejs-backend-patterns 39k

Comprehensive guidance for building scalable, maintainable, and production-ready Node.js backend applications with modern frameworks, architectural patterns, and best practices.

sickn33 2026-05-30
odoo-woocommerce-bridge 39k

Sync Odoo with WooCommerce: products, inventory, orders, and customers via WooCommerce REST API and Odoo external API.

sickn33 2026-05-30
polars 39k

Fast in-memory DataFrame library for datasets that fit in RAM. Use when pandas is too slow but data still fits in memory. Lazy evaluation, parallel execution, Apache Arrow backend. Best for 1-100GB datasets, ETL pipelines, faster pandas replacement. For larger-than-RAM data use dask or vaex.

sickn33 2026-05-30
pubmed-database 39k

Direct REST API access to PubMed. Advanced Boolean/MeSH queries, E-utilities API, batch processing, citation management. For Python workflows, prefer biopython (Bio.Entrez). Use this for direct HTTP/REST work or custom API implementations.

sickn33 2026-05-30
python-fastapi-development 39k

Python FastAPI backend development with async patterns, SQLAlchemy, Pydantic, authentication, and production API patterns.

sickn33 2026-05-30
shopify-development 39k

Build Shopify apps, extensions, themes using GraphQL Admin API, Shopify CLI, Polaris UI, and Liquid.

sickn33 2026-05-30
uniprot-database 39k

Direct REST API access to UniProt. Protein searches, FASTA retrieval, ID mapping, Swiss-Prot/TrEMBL. For Python workflows with multiple databases, prefer bioservices (unified interface to 40+ services). Use this for direct HTTP/REST work or UniProt-specific control.

sickn33 2026-05-30
wordpress-plugin-development 39k

WordPress plugin development workflow covering plugin architecture, hooks, admin interfaces, REST API, security best practices, and WordPress 7.0 features: Real-Time Collaboration, AI Connectors, Abilities API, DataViews, and PHP-only blocks.

sickn33 2026-05-30
fastapi-templates 36k

Create production-ready FastAPI projects with async patterns, dependency injection, and comprehensive error handling. Use when building new FastAPI applications or setting up backend API projects.

wshobson 2026-05-29
api-design-principles 36k

Master REST and GraphQL API design principles to build intuitive, scalable, and maintainable APIs that delight developers. Use when designing new APIs, reviewing API specifications, or establishing API design standards.

wshobson 2026-05-29
architecture-patterns 36k

Implement proven backend architecture patterns including Clean Architecture, Hexagonal Architecture, and Domain-Driven Design. Use this skill when designing clean architecture for a new microservice, when refactoring a monolith to use bounded contexts, when implementing hexagonal or onion architecture patterns, or when debugging dependency cycles between application layers.

wshobson 2026-05-29
dotnet-backend-patterns 36k

Master C#/.NET backend development patterns for building robust APIs, MCP servers, and enterprise applications. Covers async/await, dependency injection, Entity Framework Core, Dapper, configuration, caching, and testing with xUnit. Use when developing .NET backends, reviewing C# code, or designing API architectures.

wshobson 2026-05-29
nodejs-backend-patterns 36k

Build production-ready Node.js backend services with Express/Fastify, implementing middleware patterns, error handling, authentication, database integration, and API design best practices. Use when creating Node.js servers, REST APIs, GraphQL backends, or microservices architectures.

wshobson 2026-05-29
aspnet-minimal-api-openapi 34k

Create ASP.NET Minimal API endpoints with proper OpenAPI documentation

github 2026-05-29
phoenix-cli 34k

Debug LLM applications using the Phoenix CLI. Fetch traces, analyze errors, structure trace review with open coding and axial coding, inspect datasets, review experiments, query annotation configs, and use the GraphQL API. Use whenever the user is analyzing traces or spans, investigating LLM/agent failures, deciding what to do after instrumenting an app, building failure taxonomies, choosing what evals to write, or asking "what's going wrong", "what kinds of mistakes", or "where do I focus" — even without naming a technique.

github 2026-05-29