Discover and install skills to enhance your AI agent's capabilities.
| Name | Contains | Score |
|---|---|---|
Prevents directory traversal in Supabase Storage via path validation functions and storage RLS. Contains: storage-path-validation Creates Postgres functions to validate storage path payloads and prevent directory traversal. Enforces tenant-safe file paths via storage RLS bucket policies. Use when configuring Supabase storage buckets, writing storage RLS policies, or implementing tenant-scoped file uploads. | SkillsDocsRules | 97 Impact Pending Average score across 0 eval scenarios Securityby Passed No known issues Reviewed: Version: 0.1.0 |
Enforces strict isolation of service_role key to server-side contexts only. Contains: service-role-boundary Enforces that service_role key is never exposed to client-side code. Validates admin client isolation, privileged operations routing, and server-only key usage. Use when implementing admin operations, server-side Supabase clients, or auditing service_role key usage. | SkillsDocsRules | 97 Impact Pending Average score across 0 eval scenarios Securityby Passed No known issues Reviewed: Version: 0.1.0 |
Injects tenant ID and RBAC permissions into JWT via Postgres Auth Hooks during token issuance. Contains: custom-access-token-hook Generates Postgres Auth Hook that injects tenant_id and serialized permissions into JWT app_metadata using jsonb_set. Use when implementing RBAC, multi-tenant JWT claims, custom access token hooks, or permission injection into Supabase auth tokens. | SkillsDocsRules | 97 Impact Pending Average score across 0 eval scenarios Securityby Passed No known issues Reviewed: Version: 0.1.0 |
Writes and executes JavaScript-based shell scripts using Google's zx library. Use when writing shell scripts, automation, build tools, file processing, CLI tools, deployment scripts, data pipelines, or batch operations. Also covers piping, streams, parallel execution, retries, cross-platform scripting, built-in fs utilities, and minimist argument parsing. Contains: google-zx-scripting Writes and executes JavaScript-based shell scripts using Google's zx library. Use when writing shell scripts, automation, build tools, file processing, CLI tools, deployment scripts, data pipelines, or batch operations. Also covers piping, streams, parallel execution, retries, cross-platform scripting, built-in fs utilities, and minimist argument parsing. | Skills | 97 Impact Pending Average score across 0 eval scenarios Securityby Advisory Suggest reviewing before use Reviewed: Version: 0.1.0 |
Splits mixed Server/Client pages into separate files with clean boundaries — extracting client logic into a `<DescriptiveName>Client.tsx` and rewriting `page.tsx` as a pure Server Component — and flags repeated JSX structures for extraction into shared typed components. Apply when working in a Next.js App Router project and you detect `export const metadata` alongside `"use client"`, hooks in a Server Component, a page file that has grown unwieldy (>200–300 LOC) with interactive logic, or the same layout block duplicated inline multiple times. Contains: nextjs-app-refactor Splits mixed Server/Client Next.js pages into clean boundaries — extracts client logic into `*Client.tsx`, rewrites `page.tsx` as a pure Server Component, flags repeated JSX for componentisation, and detects styling inconsistencies across the codebase. Trigger on: refactor requests, mixed Server/Client files, pages >200 LOC with hooks, duplicated JSX, or any style drift between components. | Skills | 97 Impact Pending Average score across 0 eval scenarios Securityby Passed No known issues Reviewed: Version: 0.1.0 |
catalan-adobe/cmux-setup v0.2.1 BEFORE manually calling cmux set-status or writing chpwd hooks for workspace coloring, use this skill. Manages workspace color rules that auto-apply based on directory patterns. Handles config creation, zsh hook installation, rule management, and on-demand workspace coloring via cmux set-status. Triggers on "cmux setup", "workspace colors", "color this workspace", "add color rule", "project colors", or any request to visually differentiate cmux workspaces. Contains: cmux-setup BEFORE manually calling cmux set-status or writing chpwd hooks for workspace coloring, use this skill. Manages workspace color rules that auto-apply based on directory patterns. Handles config creation, zsh hook installation, rule management, and on-demand workspace coloring via cmux set-status. Triggers on "cmux setup", "workspace colors", "color this workspace", "add color rule", "project colors", or any request to visually differentiate cmux workspaces. | Skills | 97 Impact Pending Average score across 0 eval scenarios Securityby Passed No known issues Reviewed: Version: 0.2.1 |
Run final validation for a Shared Context Engineering plan. Contains: sce-validation Runs the final validation phase of a project plan by executing the full test suite, lint and format checks, removing temporary scaffolding, and writing a structured validation report with command outputs and success-criteria evidence to `context/plans/{plan_name}.md`. Use when the user wants to verify a completed implementation, confirm all success criteria are met, wrap up a plan, finalize a feature or fix, or sign off on a change before closing it out. | Skills | 97 Impact Pending Average score across 0 eval scenarios Securityby Passed No known issues Reviewed: Version: 0.2.0 |
Run final validation for a Shared Context Engineering plan. Contains: sce-validation Runs the final validation phase of a project plan by executing the full test suite, lint and format checks, removing temporary scaffolding, and writing a structured validation report with command outputs and success-criteria evidence to `context/plans/{plan_name}.md`. Use when the user wants to verify a completed implementation, confirm all success criteria are met, wrap up a plan, finalize a feature or fix, or sign off on a change before closing it out. | Skills | 97 Impact Pending Average score across 0 eval scenarios Securityby Passed No known issues Reviewed: Version: 0.2.0 |
Execute one approved Shared Context Engineering plan task with guardrails. Contains: sce-task-execution Executes a single planned implementation task with a mandatory approval gate, scope guardrails, and evidence capture. Use when a user wants to implement, run, or execute a specific task from a project plan — such as coding a feature, applying a patch, or making targeted file changes — while enforcing explicit scope boundaries, a pre-implementation confirmation prompt, test/lint verification, and status tracking in context/plans/{plan_id}.md. | Skills | 97 Impact Pending Average score across 0 eval scenarios Securityby Passed No known issues Reviewed: Version: 0.2.0 |
Execute one approved Shared Context Engineering plan task with guardrails. Contains: sce-task-execution Executes a single planned implementation task with a mandatory approval gate, scope guardrails, and evidence capture. Use when a user wants to implement, run, or execute a specific task from a project plan — such as coding a feature, applying a patch, or making targeted file changes — while enforcing explicit scope boundaries, a pre-implementation confirmation prompt, test/lint verification, and status tracking in context/plans/{plan_id}.md. | Skills | 97 Impact Pending Average score across 0 eval scenarios Securityby Passed No known issues Reviewed: Version: 0.2.0 |
experiments/eval-setup v0.3.1 Generate eval scenarios from repo commits, configure multi-agent runs, execute baseline + with-context evals, and compare results — the full setup pipeline before improvement begins Contains: eval-setup Sets up complete evaluation pipelines for Tessl tiles from scratch. Generates eval scenarios from repo commit history, configures single or multi-agent runs, executes baseline and with-context evals, and compares results across agents and scenarios. Use when setting up evaluation pipelines, benchmarking tile performance, comparing agent performance, or generating test scenarios from git history. Also useful when starting a new evaluation workflow, running performance assessments against historical commits, or testing how well a tile improves agent outcomes. | Skills | 97 Impact Pending Average score across 0 eval scenarios Securityby Advisory Suggest reviewing before use Reviewed: Version: 0.3.1 |
structural-search NeverSight/skills_feed Search code by AST structure using ast-grep. Find semantic patterns like function calls, imports, class definitions instead of text patterns. Triggers on: find all calls to X, search for pattern, refactor usages, find where function is used, structural search, ast-grep, sg. | Skills | 96 4.00x Agent success vs baseline Impact 96% 4.00xAverage score across 3 eval scenarios Securityby Passed No known issues Reviewed: Version: 0.0.1 |
tilt NeverSight/skills_feed Queries Tilt resource status, logs, and manages dev environments. Use when checking deployment health, investigating errors, reading logs, or working with Tiltfiles. | Skills | 96 1.29x Agent success vs baseline Impact 100% 1.29xAverage score across 3 eval scenarios Securityby Passed No known issues Reviewed: Version: 0.0.1 |
ultrathink intellectronica/agent-skills Display colorful ANSI art of the word "ultrathink". Use when the user says "ultrathink" or invokes /ultrathink. | Skills | 96 1.58x Agent success vs baseline Impact 100% 1.58xAverage score across 3 eval scenarios Securityby Passed No known issues Reviewed: Version: 0.0.1 |
github callstackincubator/agent-skills GitHub patterns using gh CLI for pull requests, stacked PRs, code review, branching strategies, and repository automation. Use when working with GitHub PRs, merging strategies, or repository management tasks. | Skills | 96 1.26x Agent success vs baseline Impact 100% 1.26xAverage score across 3 eval scenarios Securityby Advisory Suggest reviewing before use Reviewed: Version: 0.0.1 |
create-agent-skills EveryInc/compound-engineering-plugin Expert guidance for creating Claude Code skills and slash commands. Use when working with SKILL.md files, authoring new skills, improving existing skills, creating slash commands, or understanding skill structure and best practices. | Skills | 96 1.36x Agent success vs baseline Impact 100% 1.36xAverage score across 3 eval scenarios Securityby Advisory Suggest reviewing before use Reviewed: Version: 0.0.1 |
auth0-vue auth0/agent-skills Use when adding authentication to Vue.js 3 applications (login, logout, user sessions, protected routes) - integrates @auth0/auth0-vue SDK for SPAs with Vite or Vue CLI | Skills | 96 1.04x Agent success vs baseline Impact 100% 1.04xAverage score across 3 eval scenarios Securityby Advisory Suggest reviewing before use Reviewed: Version: 0.0.1 |
create-pr shousper/claude-kit Creates a GitHub pull request for the current branch using the gh CLI. Use when asked to create a PR, open a pull request, submit changes for review, or push and create a PR. Defaults to draft, detects and fills repo PR templates, auto-detects the base branch, and supports 'ready for review' override. DO NOT TRIGGER for reviewing existing PRs or commenting on PRs. | Skills | 96 1.36x Agent success vs baseline Impact 100% 1.36xAverage score across 3 eval scenarios Securityby Advisory Suggest reviewing before use Reviewed: Version: 0.0.1 |
hookdeck hookdeck/agent-skills Routes to the correct Hookdeck product skill. Covers Event Gateway (inbound: receive webhooks, webhook endpoints, local dev, event queue) and Outpost (outbound: send webhooks to customers). Use when working with any Hookdeck product and unsure which skill to use. | Skills | 96 1.04x Agent success vs baseline Impact 100% 1.04xAverage score across 3 eval scenarios Securityby Passed No known issues Reviewed: Version: 0.0.1 |
fixing-motion-performance ibelick/ui-skills Audit and fix animation performance issues including layout thrashing, compositor properties, scroll-linked motion, and blur effects. Use when animations stutter, transitions jank, or reviewing CSS/JS animation performance. | Skills | 96 1.23x Agent success vs baseline Impact 96% 1.23xAverage score across 3 eval scenarios Securityby Passed No known issues Reviewed: Version: 0.0.1 |
Can't find what you're looking for? Evaluate a missing skill.