backend▌
581 indexed skills · max 10 per page
javascript-typescript-jest
github/awesome-copilot · Backend
Jest testing best practices for JavaScript and TypeScript projects with mocking, async handling, and React patterns. \n \n Organize tests with descriptive names in nested describe blocks, using .test.ts / .test.js files placed alongside source code or in __tests__ directories \n Mock external dependencies with jest.mock() , jest.spyOn() , and mockImplementation() , resetting between tests to prevent state leakage \n Handle async code with promises, async/await , and resolves / rejects matchers;
twitter-algorithm-optimizer
composiohq/awesome-claude-skills · Backend
Analyze and rewrite tweets to maximize reach using Twitter's open-source recommendation algorithms. \n \n Applies Real-graph, SimClusters, TwHIN, and Tweepcred models to identify optimization opportunities and explain algorithmic ranking decisions \n Identifies engagement signals (likes, replies, retweets, bookmarks) and negative signals (blocks, reports, mutes) that affect tweet distribution \n Rewrites tweets to trigger specific engagement patterns, target community resonance, and strengthen t
go-code-review
cxuu/golang-skills · Backend
Systematic Go code review against community style standards and best practices. \n \n Covers 15+ review categories: formatting, documentation, error handling, naming, concurrency, interfaces, data structures, security, declarations, functions, style, logging, imports, generics, and testing \n Includes automated pre-review checks via gofmt , go vet , and golangci-lint to catch mechanical issues before manual review \n Organizes findings by severity (must-fix, should-fix, nit) using a consistent t
jimeng-api-image-gen
wvlvik/toy-skills · Backend
Generate high-quality AI images using Volcengine's Jimeng 4.0 API with text prompts or image inputs.
apify-ecommerce
apify/agent-skills · Backend
Extract product data, prices, reviews, and seller information from 50+ e-commerce marketplaces. \n \n Three workflow modes: Products & Pricing (price tracking, competitor analysis), Customer Reviews (sentiment analysis, quality issues), and Seller Intelligence (vendor discovery via Google Shopping) \n Supports Amazon (20+ regions), Walmart, eBay, IKEA, Costco, and European retailers; input via product URLs, category URLs, or keyword search \n Optional AI-powered analysis generates insights
web-scraping
mindrally/skills · Backend
Web scraping and data extraction using Python tools for static, dynamic, and large-scale content. \n \n Supports static sites via requests and BeautifulSoup, dynamic content via Selenium and Playwright, and large-scale extraction via Scrapy and firecrawl \n Includes specialized tools for AI-powered extraction (jina), structured queries (agentQL), and complex automation workflows (multion) \n Built-in guidance on rate limiting, robots.txt compliance, error handling, session management, and pagina
django-rest-framework
thebushidocollective/han · Backend
Master Django REST Framework for building robust, scalable RESTful APIs with proper serialization and authentication.
godot-gdscript-patterns
wshobson/agents · Backend
Production-ready GDScript patterns for Godot 4 game architecture, state management, and performance optimization. \n \n Covers seven core patterns: state machines, autoload singletons, resource-based data, object pooling, component systems, scene management, and save systems with complete working examples \n Includes best practices for signal-based decoupling, static typing, caching node references, and avoiding allocations in hot paths \n Demonstrates performance optimization techniques like ob
logo-creator
resciencelab/opc-skills · Backend
AI-powered logo design with iterative refinement, background removal, and SVG export. \n \n Guides users through discovery (style, ratio, colors) before generating 20 initial logo variations using AI image generation \n Includes batch generation, HTML preview gallery, and iterative feedback loops to refine designs across multiple rounds \n Provides post-processing tools: automatic whitespace cropping, background removal via remove.bg API, and vectorization to SVG format \n Requires three API key
rust-engineer
jeffallan/claude-skills · Backend
Writes, reviews, and debugs idiomatic Rust code with memory safety and zero-cost abstractions. \n \n Handles ownership patterns, lifetime annotation, borrowing design, and trait hierarchies with generics and associated types \n Implements async/await applications with tokio, concurrent task spawning, and proper error propagation via Result/Option \n Enforces validation through cargo clippy, rustfmt, and comprehensive testing (unit, integration, doctests) \n Minimizes unsafe code with documented