Backend Development

Browse Backend Development agent skills in Development and compare related workflows, tools, and use cases.

200 skills
A
dotnet-patterns

by affaan-m

dotnet-patterns is a practical .NET pattern guide for backend development. It helps you write and review idiomatic C# with stronger defaults for immutability, explicit dependencies, async/await, and maintainable ASP.NET Core services. Use it for code generation, refactoring, and review when you want repeatable patterns, not generic advice.

Backend Development
Favorites 1GitHub 156.1k
A
x-api

by affaan-m

x-api helps you work with the X/Twitter API for posting, reading timelines, search, and basic analytics. It guides auth choices, endpoint selection, and request shape for API Development tasks, including bearer-token reads and OAuth 1.0a write flows.

API Development
Favorites 0GitHub 156.3k
A
swift-concurrency-6-2

by affaan-m

swift-concurrency-6-2 helps you adopt Swift 6.2 Approachable Concurrency, fix data-race errors, and decide when to keep work on MainActor or offload with @concurrent. Use this swift-concurrency-6-2 guide for app and backend development migrations.

Backend Development
Favorites 0GitHub 156.3k
A
swift-protocol-di-testing

by affaan-m

swift-protocol-di-testing helps you replace file system, network, and API calls with small protocols and default implementations for deterministic Swift tests, previews, and backend development.

Backend Development
Favorites 0GitHub 156.3k
A
swift-actor-persistence

by affaan-m

swift-actor-persistence is a Swift actor-based persistence pattern for thread-safe local storage, combining in-memory cache with file-backed data. Use it for offline-first apps and Backend Development when you want serialized access, cleaner concurrency, and less locking guesswork.

Backend Development
Favorites 0GitHub 156.3k
A
springboot-tdd

by affaan-m

springboot-tdd is a Spring Boot test-first workflow skill using JUnit 5, Mockito, MockMvc, Testcontainers, and JaCoCo. Use it to add features, fix bugs, or refactor with clear test intent and high coverage. Best for springboot-tdd for Test Automation and backend changes.

Test Automation
Favorites 0GitHub 156.3k
A
springboot-security

by affaan-m

springboot-security is a practical Spring Boot security guide for authentication, authorization, validation, CSRF/CORS, secrets, headers, rate limiting, and dependency checks. Use the springboot-security skill for Security Audit work or to harden a Java service with fewer security misconfiguration risks.

Security Audit
Favorites 0GitHub 156.3k
A
springboot-patterns

by affaan-m

springboot-patterns helps you design Spring Boot backends with clear controller, service, and repository layers, plus validation, pagination, caching, async processing, profiles, and event-driven flows. Use it as a springboot-patterns guide for Backend Development when you need maintainable production patterns instead of ad hoc Spring code.

Backend Development
Favorites 0GitHub 156.3k
A
rust-patterns

by affaan-m

rust-patterns is a practical guide for idiomatic Rust development, covering ownership, error handling, traits, concurrency, module boundaries, and backend-focused design choices for safer, cleaner code.

Backend Development
Favorites 0GitHub 156.2k
A
regex-vs-llm-structured-text

by affaan-m

regex-vs-llm-structured-text skill for choosing regex or LLM in structured text extraction. Start with deterministic parsing, add LLM validation for low-confidence edge cases, and use a cheaper, more reliable pipeline for documents, forms, invoices, and data analysis.

Data Analysis
Favorites 0GitHub 156.2k
A
postgres-patterns

by affaan-m

postgres-patterns is a practical PostgreSQL quick-reference skill for query optimization, schema design, indexing, Row Level Security, and connection pooling. It helps Database Engineering workflows make faster, more reliable decisions using compact best practices rather than a generic prompt.

Database Engineering
Favorites 0GitHub 156.2k
A
nodejs-keccak256

by affaan-m

The nodejs-keccak256 skill helps you avoid a common Ethereum bug in JavaScript and TypeScript: using Node's sha3-256 when you need Keccak-256. It is useful for backend development, selectors, event topics, signatures, storage slots, and address derivation, with practical nodejs-keccak256 usage guidance.

Backend Development
Favorites 0GitHub 156.2k
A
nestjs-patterns

by affaan-m

nestjs-patterns is a practical NestJS architecture skill for building modular, production-grade TypeScript backends. It guides module structure, controller and service boundaries, DTO validation, guards, interceptors, config, testing, and the right way to organize code for maintainable Backend Development.

Backend Development
Favorites 0GitHub 156.2k
A
mcp-server-patterns

by affaan-m

mcp-server-patterns is a practical guide for MCP Server Development with the Node/TypeScript SDK. Learn when to use tools, resources, prompts, Zod validation, and stdio vs Streamable HTTP, with current API notes for safer implementation and debugging.

MCP Server Development
Favorites 0GitHub 156.2k
A
laravel-verification

by affaan-m

laravel-verification is a pre-PR and pre-deploy workflow for Laravel projects. Use this laravel-verification skill to run install, environment, Composer, linting, tests, security, and release readiness checks in sequence with less guesswork.

Workflow Automation
Favorites 0GitHub 156.2k
A
laravel-tdd

by affaan-m

laravel-tdd is a Laravel test-driven-development guide for PHPUnit and Pest. It helps with unit, feature, and integration test choices, database strategy, fakes, coverage targets, and a practical workflow for test automation.

Test Automation
Favorites 0GitHub 156.2k
A
laravel-plugin-discovery

by affaan-m

laravel-plugin-discovery helps you discover and evaluate Laravel packages via LaraPlugins.io MCP. Use it to assess package health, check Laravel/PHP compatibility, and find options for API Development before you install.

API Development
Favorites 0GitHub 156.2k
A
laravel-patterns

by affaan-m

laravel-patterns helps you design Laravel apps with cleaner boundaries: thin controllers, services or actions for business logic, predictable Eloquent data access, and practical patterns for queues, events, caching, and API resources. It is built for backend development teams that need maintainable production apps, not quick one-off scaffolding.

Backend Development
Favorites 0GitHub 156.2k
A
kotlin-patterns

by affaan-m

kotlin-patterns helps you write and review idiomatic Kotlin using null safety, immutability, sealed hierarchies, coroutines, extension functions, and DSL builders. Use this kotlin-patterns skill for Kotlin-native code generation, refactoring, and Gradle Kotlin DSL decisions with less guesswork.

Code Generation
Favorites 0GitHub 156.2k
A
kotlin-ktor-patterns

by affaan-m

kotlin-ktor-patterns helps you build or refactor Ktor backends with routing DSL, plugins, authentication, Koin DI, kotlinx.serialization, WebSockets, and testApplication testing. Use this kotlin-ktor-patterns guide for maintainable Backend Development and clearer server structure.

Backend Development
Favorites 0GitHub 156.2k
A
kotlin-exposed-patterns

by affaan-m

kotlin-exposed-patterns is a practical guide for Kotlin database engineering with JetBrains Exposed. It covers DSL queries, DAO pattern, newSuspendedTransaction, HikariCP, Flyway migrations, and repository boundaries for maintainable data access.

Database Engineering
Favorites 0GitHub 156.2k
A
kotlin-coroutines-flows

by affaan-m

kotlin-coroutines-flows helps you apply Kotlin coroutines and Flow patterns in Android and KMP with structured concurrency, StateFlow, cancellation, retries, and testing. Use this kotlin-coroutines-flows guide for safer async code, lifecycle-aware streams, and better frontend development patterns.

Frontend Development
Favorites 0GitHub 156.2k
A
jpa-patterns

by affaan-m

jpa-patterns is a practical JPA/Hibernate guide for Spring Boot backend development. It covers entity design, relationships, query tuning, transactions, auditing, pagination, and pooling to help reduce ORM mistakes and improve persistence performance.

Backend Development
Favorites 0GitHub 156.2k
A
healthcare-phi-compliance

by affaan-m

healthcare-phi-compliance helps review healthcare apps for PHI/PII risk across data models, APIs, logs, and access paths. Use it to check data classification, access control, encryption, audit trails, and common leak vectors for HIPAA, DISHA, GDPR, and related security audit needs.

Security Audit
Favorites 0GitHub 156.2k