backend▌
581 indexed skills · max 10 per page
rust-learner
zhanghandong/rust-skills · Backend
Fetch Rust versions, crate information, and API documentation from authoritative sources. \n \n Supports queries about Rust release features, crate versions, and standard library documentation via dedicated agent routing \n Operates in two modes: agent-based (when agent files available) for background task execution, or inline mode using actionbook selectors and browser automation \n Covers crate info from lib.rs and crates.io, Rust changelogs from releases.rs, std library docs from doc.rust-lan
spring-boot-rest-api-standards
giuseppe-trisciuoglio/developer-kit · Backend
Comprehensive REST API design standards and best practices for Spring Boot applications. \n \n Covers resource-based URL design, HTTP method conventions, status codes, DTOs, validation, and error handling with global exception strategies \n Includes pagination, filtering, sorting, security headers, CORS policies, and HATEOAS implementation patterns \n Provides constructor injection, immutable DTO patterns, transaction management, and logging best practices with code examples \n Enforces API vers
api-security-hardening
aj-geddes/useful-ai-prompts · Backend
Comprehensive security middleware for REST APIs covering authentication, rate limiting, input validation, and attack prevention. \n \n Implements multiple security layers: helmet for HTTP headers, rate limiting, CORS configuration, input sanitization, and XSS/HPP protection \n Supports Node.js/Express and Python FastAPI with reference implementations for each framework \n Includes JWT-based authentication, input validation with sanitization, and security event logging \n Provides best practices
api-contract-testing
aj-geddes/useful-ai-prompts · Backend
Contract testing verifies that APIs honor their contracts between consumers and providers. It ensures that service changes don't break dependent consumers without requiring full integration tests. Contract tests validate request/response formats, data types, and API behavior independently.
google-calendar
odyssey4me/agent-skills · Backend
Create, update, and manage Google Calendar events with availability checking and scheduling. \n \n Supports core event operations: create, update, delete, and list events across specified time ranges with automatic pagination \n Includes free/busy availability checking across multiple calendars to find open time slots for scheduling \n OAuth 2.0 authentication with keyring-based credential storage; declined invitations are filtered by default but can be included on demand \n Commands use RFC3339
algolia-search
sickn33/antigravity-awesome-skills · Backend
Expert patterns for Algolia search implementation, indexing strategies, and React InstantSearch integration. \n \n React InstantSearch with hooks (useSearchBox, useHits, useRefinementList, usePagination) for type-ahead search and faceted filtering in modern React applications \n Next.js SSR support via react-instantsearch-nextjs, compatible with both Pages Router and App Router, with URL synchronization and dynamic rendering configuration \n Three indexing strategies: full reindexing, full recor
openai-whisper-api
steipete/clawdis · Backend
Transcribe an audio file via OpenAI’s /v1/audio/transcriptions endpoint. Set OPENAI_BASE_URL to use an OpenAI-compatible proxy or local gateway.
langchain4j-mcp-server-patterns
giuseppe-trisciuoglio/developer-kit · Backend
Standardized MCP server implementation patterns with LangChain4j for extending AI capabilities. \n \n Provides tool providers, resource providers, and prompt template patterns to expose custom capabilities through the Model Context Protocol \n Supports multiple transport mechanisms including stdio for local processes and HTTP for remote servers \n Includes Spring Boot integration, multi-server configuration, and dynamic tool discovery with context-aware filtering \n Implements security patterns
godot-development
zate/cc-godot · Backend
Expert guidance for Godot Engine scene creation, node management, GDScript scripting, and project architecture. \n \n Covers 2D and 3D node types, scene tree hierarchy, physics bodies, collision systems, cameras, UI controls, and animation \n Includes GDScript patterns for node references, lifecycle methods (_ready, _process, _physics_process), and input handling \n Provides project structure best practices and common workflows like character setup, camera configuration, and input management \n
rust-call-graph
zhanghandong/rust-skills · Backend
Visualize Rust function call graphs with configurable depth and direction using LSP. \n \n Supports three query directions: incoming calls (who calls this), outgoing calls (what this calls), and bidirectional analysis \n Configurable traversal depth (default 3 levels) to control graph scope and complexity \n Generates ASCII tree visualizations with entry points, leaf functions, and hot path analysis \n Includes complexity insights and potential issues flagging (high fan-out, multiple callers) \n