Browse Skills

4429 skills found

global-validation.md
0
1 export global-validation
2 mshafei721 from "mshafei721/Turbocat"
3 Implement comprehensive input validation with server-side security, client-side UX feedback, sanitization, and consistent error messages. Use this skill when validating user input in forms, API endpoints, or data processing. When writing validation rules for data types, formats, ranges, or required fields. When sanitizing input to prevent injection attacks (SQL, XSS, command injection). When providing field-specific error messages to users. When implementing validation at system boundaries like API endpoints or background jobs.
2026-01-05
agent-performance-logger.md
0
1 export agent-performance-logger
2 Surikesh from "Surikesh/vmautomation-react"
3 Records agent execution results, performance metrics, and errors to SQLite database. Use after completing any agent task, when logging task results, or when an agent fails. Tracks success/failure rates and execution times for continuous improvement.
2026-01-05
security-guidelines.md
0
1 export security-guidelines
2 RevTechStudio from "RevTechStudio/rts-plugins"
3 セキュアな開発・運用のための実装指針、機密情報管理、通信の確保、入力値検証、依存ライブラリ管理のガイドラインを定義する。セキュリティ実装時、認証・認可実装時、API開発時、またはユーザーがセキュリティ、機密情報、暗号化、XSS対策、SQL injection、脆弱性管理に言及した際に使用する。
2026-01-05
postgresql-psql.md
0
1 export postgresql-psql
2 majiayu000 from "majiayu000/claude-skill-registry"
3 Comprehensive guide for PostgreSQL psql - the interactive terminal client for PostgreSQL. Use when connecting to PostgreSQL databases, executing queries, managing databases/tables, configuring connection options, formatting output, writing scripts, managing transactions, and using advanced psql features for database administration and development.
2026-01-05
hashing-techniques.md
0
1 export hashing-techniques
2 pluginagentmarketplace from "pluginagentmarketplace/custom-plugin-data-structures-algorithms"
3 Hash-based data structures and techniques including frequency counting, duplicate detection, and LRU cache implementation.
2026-01-05
sql-test-generator.md
0
1 export sql-test-generator
2 mozilla from "mozilla/bigquery-etl-skills"
3 ALWAYS use this skill when users ask to create, generate, or write UNIT TESTS for BigQuery SQL queries. Invoke proactively whenever the request includes "test" or "tests" with a query/table name. This skill is for unit testing ONLY (not data quality checks - use bigconfig-generator for Bigeye monitoring). Works with bigquery-etl-core skill to understand query patterns.
2026-01-05
blog-post-reviewer.md
0
1 export blog-post-reviewer
2 majiayu000 from "majiayu000/claude-skill-registry"
3 Review and provide feedback on blog posts to ensure they match the established writing voice and style guidelines.
2026-01-05
ecto-query-analysis.md
0
1 export ecto-query-analysis
2 layeddie from "layeddie/ai-rules"
3 Analyzes Ecto queries for N+1 problems, missing preloads, and performance issues.
2026-01-05
nextjs-supabase.md
0
1 export nextjs-supabase
2 majiayu000 from "majiayu000/claude-skill-registry"
3 Next.js full-stack application with Supabase backend.
2026-01-05
review-artifacts.md
0
1 export review-artifacts
2 majiayu000 from "majiayu000/claude-skill-registry"
3 Review artifact scan results for reportable bug bounty findings. Analyzes archives, SQL dumps, binary databases, and source backups for secrets, code vulnerabilities, misconfigurations, and PII exposure. Focuses on high-confidence findings with clear security impact.
2026-01-05
deploying-to-aws.md
0
1 export deploying-to-aws
2 majiayu000 from "majiayu000/claude-skill-registry"
3 Specialized skill for deploying Next.js applications to AWS using SST (Serverless Stack) or Vercel, with DynamoDB integration, IAM configuration, and infrastructure as code. Use when setting up AWS resources or deploying production applications.
2026-01-05
database-compliance.md
0
1 export database-compliance
2 semicolon-devteam from "semicolon-devteam/docs"
3 Use this skill for ANY database operations (schema changes, SQL, migrations, Supabase interactions). It contains EMBEDDED RULES to minimize token usage.
2026-01-05
database-skill.md
0
1 export database-skill
2 majiayu000 from "majiayu000/claude-skill-registry"
3 Configure and operate TinyDB for JSON-based document storage. Use when setting up databases, creating queries, or managing data persistence.
2026-01-05
cloudbase-platform.md
0
1 export cloudbase-platform
2 sycsky from "sycsky/Soncho"
3 CloudBase platform knowledge and best practices. Use this skill for general CloudBase platform understanding, including storage, hosting, authentication, cloud functions, database permissions, and data models.
2026-01-05
critical-feedback.md
0
1 export critical-feedback
2 alexisbeaulieu97 from "alexisbeaulieu97/home"
3 This skill enables honest, pressure-tested feedback on ideas, decisions, and proposals. Use this skill when prompted for an opinion on whether something is a good idea, should be done, or what to think about an approach.
2026-01-05
data-wrangler.md
0
1 export data-wrangler
2 majiayu000 from "majiayu000/claude-skill-registry"
3 Transform and export data using DuckDB SQL. Read CSV/Parquet/JSON/Excel/databases, apply SQL transformations (joins, aggregations, PIVOT/UNPIVOT, sampling), and optionally write results to files. Use when the user wants to: (1) Clean, filter, or transform data, (2) Join multiple data sources, (3) Convert between formats (CSV→Parquet, etc.), (4) Create partitioned datasets, (5) Sample large datasets, (6) Export query results. Prefer this over in-context reasoning for datasets with thousands of rows or complex transformations.
2026-01-05
database-analyzer.md
0
1 export database-analyzer
2 netresearch from "netresearch/composer-agent-skill-plugin"
3 Analyze and optimize database schemas, identify performance issues, and suggest improvements. Use when working with database structure, indexes, or query performance.
2026-01-05
database-manager.md
0
1 export database-manager
2 majiayu000 from "majiayu000/claude-skill-registry"
3 Manages Supabase database schema, migrations, and queries for CookMode V2. Use this when the user needs to create/modify tables, write migrations, update RLS policies, or troubleshoot database issues.
2026-01-05
backend-setup.md
0
1 export backend-setup
2 hhopkins95 from "hhopkins95/ai-systems"
3 This skill should be used when the user asks to "create an agent runtime server", "set up agent runtime backend", "configure Modal sandbox", "implement PersistenceAdapter", "start WebSocket server", "create REST API for agents", or needs to build a Node.js backend using @hhopkins/agent-runtime.
2026-01-05
kotlin-schema-first-entities.md
0
1 export kotlin-schema-first-entities
2 majiayu000 from "majiayu000/claude-skill-registry"
3 Use when creating Room entities for Kotlin/Android apps that mirror Django/PostgreSQL backend schemas. Enforces exact field alignment, prevents schema drift, validates type mappings. Critical for maintaining zero impedance mismatch between backend and mobile.
2026-01-05
convex-core.md
0
1 export convex-core
2 majiayu000 from "majiayu000/claude-skill-registry"
3 Core Convex development guidelines - functions, validators, schema, queries, mutations, and database patterns
2026-01-05
data-persistence.md
0
1 export data-persistence
2 pluginagentmarketplace from "pluginagentmarketplace/custom-plugin-android"
3 Room ORM, SQLite, SharedPreferences, DataStore, encryption. Use when implementing data storage and database operations.
2026-01-05
create-adrs.md
0
1 export create-adrs
2 foolishimp from "foolishimp/ai_sdlc_method"
3 Create Architecture Decision Records (ADRs) documenting strategic technical decisions while acknowledging ecosystem E(t) constraints. Use when choosing cloud providers, languages, frameworks, databases, or architectural patterns.
2026-01-05
design-assistant.md
0
1 export design-assistant
2 majiayu000 from "majiayu000/claude-skill-registry"
3 Expert graphic, UI/UX designer for creating mockups, wireframes, and visual designs. Use when user needs help with designing interfaces, creating mockups, prototyping layouts, visual design feedback, design systems, brand identity, choosing colors/typography, or creating graphics. Triggers include "design," "mockup," "wireframe," "UI," "UX," "interface," "visual," "brand," or "prototype."
2026-01-05