best▌
173 indexed skills · max 10 per page
ci-cd-best-practices
mindrally/skills · Productivity
Comprehensive CI/CD pipeline design, testing strategies, deployment patterns, and DevOps best practices. \n \n Covers five core pipeline stages: build, test, security scanning, staging deployment, and production deployment with examples for each \n Includes four deployment strategies: blue-green, canary, rolling, and feature flags for zero-downtime releases and gradual rollouts \n Provides testing pyramid guidance with unit, integration, and end-to-end test layers, plus parallelization and flaky
supabase-postgres-best-practices
davila7/claude-code-templates · Productivity
Comprehensive performance optimization guide for Postgres, maintained by Supabase. Contains rules across 8 categories, prioritized by impact to guide automated query optimization and schema design.
capacitor-best-practices
cap-go/capacitor-skills · Productivity
Comprehensive guidelines for building production-ready Capacitor applications. \n \n Covers project structure, configuration management, plugin installation patterns, and native project setup for iOS and Android \n Emphasizes critical practices: keeping Capacitor packages in sync, checking plugin availability before use, lazy loading plugins, and secure storage for sensitive data \n Includes performance optimization strategies such as batching bridge calls, hardware acceleration, and image optim
r3f-best-practices
emalorenzo/three-agent-skills · Productivity
Comprehensive guide for optimizing React Three Fiber and Poimandres ecosystem code across 70+ rules. \n \n Covers 12 priority-ranked categories from performance and re-renders (critical) through physics and debug tools, with rule prefixes for quick reference \n Emphasizes avoiding setState in useFrame, isolating React state, using Zustand selectors, and memoizing expensive components to prevent excessive re-renders \n Includes patterns for useFrame animation with delta time, Drei helpers (useGLT
valyu-best-practices
valyuai/skills · Productivity
Real-time search, content extraction, AI-powered answers, and deep research across 25+ specialized data sources. \n \n Four core APIs: Search (web, academic, financial, news), Contents (URL extraction with summarization), Answer (cited synthesis), and DeepResearch (comprehensive reports in fast/standard/heavy modes) \n Supports domain-specific queries across academic papers, SEC filings, clinical trials, stock data, prediction markets, and transportation sources with source filtering \n Official
python-best-practices
0xbigboss/claude-code · Backend
Type-first Python development using dataclasses, discriminated unions, NewType, and Protocol to make illegal states unrepresentable. \n \n Define data models and function signatures before implementation; use frozen dataclasses, Literal-based discriminated unions, and NewType for domain primitives to prevent invalid states at type-check time \n Leverage Protocol for structural typing, TypedDict for external data shapes, and exhaustive pattern matching with match statements to catch incomplete lo
vue-options-api-best-practices
hyf0/vue-skills · Frontend
Vue 3 Options API patterns, TypeScript integration strategies, and context-binding gotchas. \n \n Covers TypeScript type safety for component properties, this context, prop validators, event handlers, complex types, provide/inject, and computed return types \n Addresses common method and lifecycle hook pitfalls including arrow function binding issues and stateful method side effects \n Includes references to specific solutions for each pattern, from defineComponent setup to proper event handler
nextjs-best-practices
sickn33/antigravity-awesome-skills · Frontend
Next.js App Router development patterns covering server/client components, data fetching, and routing. \n \n Server Components are the default; use Client Components only for interactivity (useState, event handlers, forms) \n Data fetching belongs in Server Components with three caching strategies: static (build-time), ISR (time-based revalidation), and dynamic (no-store) \n File conventions organize routes: page.tsx for UI, layout.tsx for shared structure, loading.tsx and error.tsx for states,
vue-router-best-practices
vuejs-ai/skills · Frontend
Vue Router 4 patterns, navigation guards, and route-lifecycle best practices. \n \n Covers five navigation guard patterns including async/await handling, deprecated next() function migration, and infinite redirect loop prevention \n Addresses route lifecycle gotchas such as stale data when navigating with param changes and event listener cleanup on unmount \n Includes guidance on component instance access in beforeRouteEnter guards and param-change detection across same-route navigation \n Provi
vue-router-best-practices
antfu/skills · Frontend
Vue Router 4 patterns, navigation guards, and route-lifecycle best practices. \n \n Covers five navigation guard patterns including async/await handling, deprecated next() function migration, infinite redirect loops, and param-change detection \n Addresses route-lifecycle gotchas like stale data when navigating between same routes and event listener cleanup on component unmount \n Includes production SPA setup guidance and component instance access patterns in beforeRouteEnter guards \n