Agent Skills 排行榜 · 关键词 + 语义搜索

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
24,399
总 Skills
87.6M
总安装量
2,573
贡献者
# Skill 仓库 描述 安装量
401 compress juliusbrussee/caveman
Caveman Compress Purpose Compress natural language files (CLAUDE.md, todos, preferences) into caveman-speak to reduce input tokens. Compressed version overwrites original. Human-readable backup saved as <filename>.original.md . Trigger /caveman:compress <filepath> or when user asks to compress a memory file. Process This SKILL.md lives alongside scripts/ in the same directory. Find that directory. Run: cd <directory_containing_this_SKILL.md> && python3 -m scripts <absolute_filepath> The CLI will...
46.2K
402 customer-research coreyhaines31/marketingskills
Customer Research You are an expert customer researcher. Your goal is to help uncover what customers actually think, feel, say, and struggle with — so that everything from positioning to product to copy is grounded in reality rather than assumption. Before Starting Check for product marketing context first: If .agents/product-marketing-context.md exists (or .claude/product-marketing-context.md in older setups), read it before asking questions. Use that context to skip questions already answered....
46.1K
403 higgsfield-generate higgsfield-ai/skills
Higgsfield Generate Submit jobs to any Higgsfield model. Wraps the higgsfield CLI. Covers generic image/video gen and Marketing Studio (branded ads, avatars, products). Prerequisites higgsfield CLI installed: curl -fsSL https://raw.githubusercontent.com/higgsfield-ai/cli/main/install.sh | sh Authenticated: higgsfield auth login UX Rules Be concise. No raw IDs, no JSON dumps in chat. Print result URL when ready. No internal jargon. Don't narrate "calling higgsfield cost", "polling job". Detect th...
45.7K
404 typegpu heygen-com/hyperframes
TypeGPU / WebGPU for HyperFrames HyperFrames supports TypeGPU and raw WebGPU through its typegpu runtime adapter. The adapter does not own your pipeline. It publishes HyperFrames time and dispatches a seek event so your composition can render the exact GPU frame. Contract Initialize WebGPU asynchronously ( await navigator.gpu.requestAdapter() ), but register all GSAP tweens synchronously — before any await . The HyperFrames player reads the timeline immediately at page load. Render from HyperFra...
45.6K
405 slack-gif-creator anthropics/skills
Slack GIF Creator A toolkit providing utilities and knowledge for creating animated GIFs optimized for Slack. Slack Requirements Dimensions: Emoji GIFs: 128x128 (recommended) Message GIFs: 480x480 Parameters: FPS: 10-30 (lower is smaller file size) Colors: 48-128 (fewer = smaller file size) Duration: Keep under 3 seconds for emoji GIFs Core Workflow from core . gif_builder import GIFBuilder from PIL import Image , ImageDraw 1. Create builder builder = GIFBuilder ( width = 128 , height = 128 , f...
45.5K
406 template-skill anthropics/skills
Insert instructions below
43.9K
407 enhance-prompt google-labs-code/stitch-skills
Enhance Prompt for Stitch You are a Stitch Prompt Engineer . Your job is to transform rough or vague UI generation ideas into polished, optimized prompts that produce better results from Stitch. Prerequisites Before enhancing prompts, consult the official Stitch documentation for the latest best practices: Stitch Effective Prompting Guide : https://stitch.withgoogle.com/docs/learn/prompting/ This guide contains up-to-date recommendations that may supersede or complement the patterns in this skil...
43.6K
408 frontend-design anthropics/claude-code
This skill guides creation of distinctive, production-grade frontend interfaces that avoid generic "AI slop" aesthetics. Implement real working code with exceptional attention to aesthetic details and creative choices. The user provides frontend requirements: a component, page, application, or interface to build. They may include context about the purpose, audience, or technical constraints. Design Thinking Before coding, understand the context and commit to a BOLD aesthetic direction: Purpose :...
43.4K
409 stitch-loop google-labs-code/stitch-skills
Stitch Build Loop You are an autonomous frontend builder participating in an iterative site-building loop. Your goal is to generate a page using Stitch, integrate it into the site, and prepare instructions for the next iteration. Overview The Build Loop pattern enables continuous, autonomous website development through a "baton" system. Each iteration: Reads the current task from a baton file ( .stitch/next-prompt.md ) Generates a page using Stitch MCP tools Integrates the page into the site str...
42.8K
410 notion-api intellectronica/agent-skills
This skill enables interaction with Notion workspaces through the Notion REST API. Use `curl` and `jq` for direct REST calls, or write ad-hoc scripts as appropriate for the task. Authentication API Key Handling - Environment Variable: Check if `NOTION_API_TOKEN` is available in the environment - User-Provided Key: If the user provides an API key in context, use that instead - No Key Available: If neither is available, use AskUserQuestion (or equivalent) to request the API key from the use...
42.6K
411 stripe-best-practices stripe/ai
Latest Stripe API version: 2026-02-25.clover . Always use the latest API version and SDK unless the user specifies otherwise. Integration routing Building... Recommended API Details One-time payments Checkout Sessions references/payments.md Custom payment form with embedded UI Checkout Sessions + Payment Element references/payments.md Saving a payment method for later Setup Intents references/payments.md Connect platform or marketplace Accounts v2 ( /v2/core/accounts ) references/connect.md Subs...
42.2K
412 obsidian-markdown kepano/obsidian-skills
Obsidian Flavored Markdown Skill Create and edit valid Obsidian Flavored Markdown. Obsidian extends CommonMark and GFM with wikilinks, embeds, callouts, properties, comments, and other syntax. This skill covers only Obsidian-specific extensions -- standard Markdown (headings, bold, italic, lists, quotes, code blocks, tables) is assumed knowledge. Workflow: Creating an Obsidian Note Add frontmatter with properties (title, tags, aliases) at the top of the file. See PROPERTIES.md for all property t...
42K
413 firebase-security-rules-auditor firebase/agent-skills
Overview This skill acts as an auditor for Firebase Security Rules, evaluating them against a rigorous set of criteria to ensure they are secure, robust, and correctly implemented. Scoring Criteria Assessment: Security Validator (Red Team Edition) You are a Senior Security Auditor and Penetration Tester specializing in Firestore. Your goal is to find "the hole in the wall." Do not assume a rule is secure because it looks complex; instead, actively try to find a sequence of operations to bypass i...
41.7K
414 firebase-ai-logic-basics firebase/agent-skills
Firebase AI Logic Basics Overview Firebase AI Logic is a product of Firebase that allows developers to add gen AI to their mobile and web apps using client-side SDKs. You can call Gemini models directly from your app without managing a dedicated backend. Firebase AI Logic, which was previously known as "Vertex AI for Firebase", represents the evolution of Google's AI integration platform for mobile and web developers. It supports the two Gemini API providers: Gemini Developer API : It has a free...
41.1K
415 developing-genkit-js genkit-ai/skills
Genkit JS Prerequisites Ensure the genkit CLI is available. Run genkit --version to verify. Minimum CLI version needed: 1.29.0 If not found or if an older version (1.x < 1.29.0) is present, install/upgrade it: npm install -g genkit-cli@^1.29.0 . New Projects : If you are setting up Genkit in a new codebase, follow the Setup Guide . Hello World import { z , genkit } from 'genkit' ; import { googleAI } from '@genkit-ai/google-genai' ; // Initialize Genkit with the Google AI plugin const ai = genki...
41K
416 neon-postgres neondatabase/agent-skills
Neon Serverless Postgres Neon is a serverless Postgres platform that separates compute and storage to offer autoscaling, branching, instant restore, and scale-to-zero. It's fully compatible with Postgres and works with any language, framework, or ORM that supports Postgres. Neon Documentation The Neon documentation is the source of truth for all Neon-related information. Always verify claims against the official docs before responding. Neon features and APIs evolve, so prefer fetching current do...
40.4K
417 native-data-fetching expo/skills
Expo Networking You MUST use this skill for ANY networking work including API requests, data fetching, caching, or network debugging. References Consult these resources as needed: references/ expo-router-loaders.md Route-level data loading with Expo Router loaders (web, SDK 55+) When to Use Use this skill when: Implementing API requests Setting up data fetching (React Query, SWR) Using Expo Router data loaders ( useLoaderData , web SDK 55+) Debugging network failures Implementing caching strat...
39.6K
418 convex get-convex/agent-skills
Convex Use this as the routing skill for Convex work in this repo. If a more specific Convex skill clearly matches the request, use that instead. Start Here If the project does not already have Convex AI guidance installed, or the existing guidance looks stale, strongly recommend installing it first. Preferred: npx convex ai-files install This installs or refreshes the managed Convex AI files. It is the recommended starting point for getting the official Convex guidelines in place and following ...
39.6K
419 arrange pbakaus/impeccable
Assess and improve layout and spacing that feels monotonous, crowded, or structurally weak — turning generic arrangements into intentional, rhythmic compositions. MANDATORY PREPARATION Invoke /impeccable — it contains design principles, anti-patterns, and the Context Gathering Protocol . Follow the protocol before proceeding — if no design context exists yet, you MUST run /impeccable teach first. Assess Current Layout Analyze what's weak about the current spatial design: Spacing : Is spacing con...
39.5K
420 shadcn-ui google-labs-code/stitch-skills
shadcn/ui Component Integration You are a frontend engineer specialized in building applications with shadcn/ui—a collection of beautifully designed, accessible, and customizable components built with Radix UI or Base UI and Tailwind CSS. You help developers discover, integrate, and customize components following best practices. Core Principles shadcn/ui is not a component library —it's a collection of reusable components that you copy into your project. This gives you: Full ownership : Componen...
39.3K
421 firecrawl-interact firecrawl/cli
firecrawl interact Interact with scraped pages in a live browser session. Scrape a page first, then use natural language prompts or code to click, fill forms, navigate, and extract data. When to use Content requires interaction: clicks, form fills, pagination, login scrape failed because content is behind JavaScript interaction You need to navigate a multi-step flow Last resort in the workflow escalation pattern : search → scrape → map → crawl → interact Never use interact for web searches — use...
39K
422 higgsfield-product-photoshoot higgsfield-ai/skills
Product Photoshoot Brand-image generation via the higgsfield product-photoshoot create command. The CLI calls a backend prompt enhancer that holds mode-specific photography vocabulary and structural templates, then submits to gpt_image_2 and returns image URLs. Prerequisites higgsfield CLI: curl -fsSL https://raw.githubusercontent.com/higgsfield-ai/cli/main/install.sh | sh Authenticated: higgsfield auth login UX Rules Be concise. Print only image URLs in the final reply. Detect language, respond...
38.4K
423 firebase-firestore firebase/agent-skills
No SKILL.md available for this skill. View on GitHub
38.4K
424 higgsfield-soul-id higgsfield-ai/skills
Higgsfield Soul Character Train a face-faithful identity model. Reusable across all Soul-powered generations. Step 0 — Bootstrap Before any other command: If higgsfield is not on $PATH , install it: curl -fsSL https://raw.githubusercontent.com/higgsfield-ai/cli/main/install.sh | sh If higgsfield account status fails with Session expired / Not authenticated , ask the user to run higgsfield auth login (interactive) and wait for confirmation. Soul training requires a paid plan (Basic+). If higgsfie...
38K
425 firebase-crashlytics firebase/agent-skills
Crashlytics This skill provides a complete guide for getting started with Crashlytics on Android or iOS. Crash data collected from client applications can be read using the MCP server in the Firebase CLI. Prerequisites Provisioning Crashlytics requires both a Firebase project and a Firebase app, either Android or iOS. To read the data collected by Crashlytics, install the MCP server in the Firebase CLI. See the firebase-basics skill for references. SDK Setup To learn how to setup Crashlytics in ...
37.5K
426 claude-api anthropics/skills
Building LLM-Powered Applications with Claude This skill helps you build LLM-powered applications with Claude. Choose the right surface based on your needs, detect the project language, then read the relevant language-specific documentation. Before You Start Scan the target file (or, if no target file, the prompt and project) for non-Anthropic provider markers — import openai , from openai , langchain_openai , OpenAI( , gpt-4 , gpt-5 , file names like agent-openai.py or *-generic.py , or any exp...
37.4K
427 xcode-project-setup firebase/agent-skills
Xcode Project Setup ⛔️ CRITICAL RULES & ENVIRONMENT CHECKS Before performing any Xcode setup or file manipulation, you MUST adhere to the following rules. A hefty fee will be applied if you violate them. 1. The Anti-Ruby Mandate You are strictly forbidden from using Ruby, Rails, or any Ruby gems (including the xcodeproj gem). Under no circumstances may you write or execute Ruby scripts. 2. Modern Xcode Folder Synchronization Modern Xcode projects support folder synchronization. When adding new s...
37.2K
428 higgsfield-marketplace-cards higgsfield-ai/skills
Marketplace Cards Create marketplace-ready product visuals with higgsfield marketplace-cards create . The CLI first calls the backend enhancer, where marketplace rules and templates are kept private, then creates nano_banana_2 jobs and prints result URLs. Bootstrap If higgsfield is not on $PATH , install it by running the official installer with Bash: curl -fsSL https://raw.githubusercontent.com/higgsfield-ai/cli/main/install.sh | sh . If higgsfield account status fails with authentication error...
37.1K
429 firecrawl-build-search firecrawl/skills
Firecrawl Build Search Use this when the application starts with a query, not a URL. Use This When the user asks a question and the product must discover sources first the feature needs current web results you want to turn a search query into a shortlist of pages for later scraping Default Recommendations Use /search first when URL discovery is part of the product behavior. Keep search and extraction conceptually separate unless scraping search results is clearly required. Prefer selective follo...
36.8K
430 firecrawl-build-scrape firecrawl/skills
Firecrawl Build Scrape Use this when the application already has the URL and needs content from one page. Use This When the feature starts from a known URL you need page content for retrieval, summarization, enrichment, or monitoring you want the default extraction primitive before considering /interact Default Recommendations Return markdown unless the feature truly needs another format. Use onlyMainContent for article-like pages where nav and chrome add noise. Add waits or other rendering opti...
36.8K
431 firebase-firestore-standard firebase/agent-skills
Firestore Standard Edition This skill provides a complete guide for getting started with Cloud Firestore Standard Edition, including provisioning, securing, and integrating it into your application. Provisioning To set up Cloud Firestore in your Firebase project and local environment, see provisioning.md . Security Rules For guidance on writing and deploying Firestore Security Rules to protect your data, see security_rules.md . SDK Usage To learn how to use Cloud Firestore in your application co...
36.7K
432 firecrawl-build-interact firecrawl/skills
Firecrawl Build Interact Use this when /scrape is not enough because the feature needs to act on the page. Use This When content appears only after clicks, typing, or navigation the feature needs forms, pagination, filters, or multi-step flows the product must stay in the same browser context after scraping Default Recommendations Start with /scrape , then escalate to /interact . Keep /interact scoped to the smallest browser workflow that unlocks the data. Use persistent profiles only when the f...
36.7K
433 firecrawl-build-onboarding firecrawl/skills
Firecrawl Build Onboarding Use this skill for the application-integration path from Firecrawl's onboarding flow. Install If you haven't installed yet, one command sets up both the CLI tools (for live web work) and the build skills (for app integration): npx -y firecrawl-cli@latest init --all --browser This installs the Firecrawl CLI, the CLI skills, and these build skills together. It also opens browser auth so the human can sign in or create an account. No separate npx skills add step is needed...
36.7K
434 obsidian-cli kepano/obsidian-skills
Obsidian CLI Use the obsidian CLI to interact with a running Obsidian instance. Requires Obsidian to be open. Command reference Run obsidian help to see all available commands. This is always up to date. Full docs: https://help.obsidian.md/cli Syntax Parameters take a value with = . Quote values with spaces: obsidian create name = "My Note" content = "Hello world" Flags are boolean switches with no value: obsidian create name = "My Note" silent overwrite For multiline content use \n for newline ...
36.5K
435 turborepo vercel/turborepo
Turborepo Skill Build system for JavaScript/TypeScript monorepos. Turborepo caches task outputs and runs tasks in parallel based on dependency graph. IMPORTANT: Package Tasks, Not Root Tasks DO NOT create Root Tasks. ALWAYS create package tasks. When creating tasks/scripts/pipelines, you MUST: Add the script to each relevant package's package.json Register the task in root turbo.json Root package.json only delegates via turbo run <task> DO NOT put task logic in root package.json . This defeats T...
36.4K
436 design-an-interface mattpocock/skills
Design an Interface Based on "Design It Twice" from "A Philosophy of Software Design": your first idea is unlikely to be the best. Generate multiple radically different designs, then compare. Workflow 1. Gather Requirements Before designing, understand: What problem does this module solve? Who are the callers? (other modules, external users, tests) What are the key operations? Any constraints? (performance, compatibility, existing patterns) What should be hidden inside vs exposed? Ask: "What doe...
36.3K
437 obsidian-bases kepano/obsidian-skills
Obsidian Bases Skill This skill enables skills-compatible agents to create and edit valid Obsidian Bases (.base files) including views, filters, formulas, and all related configurations. Overview Obsidian Bases are YAML-based files that define dynamic views of notes in an Obsidian vault. A Base file can contain multiple views, global filters, formulas, property configurations, and custom summaries. File Format Base files use the .base extension and contain valid YAML. They can also be embed...
35.9K
438 firebase-firestore-enterprise-native-mode firebase/agent-skills
Firestore Enterprise Native Mode This skill provides a complete guide for getting started with Firestore Enterprise Native Mode, including provisioning, data model, security rules, and SDK usage. Provisioning To set up Firestore Enterprise Native Mode in your Firebase project and local environment, see provisioning.md . Data Model To learn about Firestore data model and how to organize your data, see data_model.md . Security Rules For guidance on writing and deploying Firestore Security Rules to...
35.8K
439 nodejs-backend-patterns wshobson/agents
Node.js Backend Patterns Comprehensive guidance for building scalable, maintainable, and production-ready Node.js backend applications with modern frameworks, architectural patterns, and best practices. When to Use This Skill Building REST APIs or GraphQL servers Creating microservices with Node.js Implementing authentication and authorization Designing scalable backend architectures Setting up middleware and error handling Integrating databases (SQL and NoSQL) Building real-time applications ...
35.8K
440 analyze-project lllllllama/rigorpilot-skills
analyze-project Use the shared operating principles in ../../references/agent-operating-principles.md ; this skill should guide read-only analysis without constraining the model's project-specific reasoning. When to apply The user wants to understand a deep learning repository before changing it. The user needs a map of model structure, training entrypoints, inference entrypoints, and config relationships. The user wants conservative suggestions about likely insertion points or suspicious implem...
35.8K
441 explore-code lllllllama/rigorpilot-skills
explore-code Use the shared operating principles in ../../references/agent-operating-principles.md ; this skill should guide bounded candidate code work without over-prescribing implementation details. When to apply When the researcher explicitly authorizes exploratory code changes on an isolated branch or worktree. When the task is source-anchored module transplant, backbone adaptation, LoRA or adapter insertion, or low-risk module combination. When summary-level recording is sufficient and the...
35.8K
442 ai-research-reproduction lllllllama/rigorpilot-skills
ai-research-reproduction Purpose Use this as the RigorPilot Reproduce orchestrator for README-first deep learning repository reproduction. The skill guides the agent toward a minimal trustworthy run with auditable evidence; it should not micromanage implementation details that the model can infer from the repository. Reproduction is not "make it run by changing anything"; it means faithfully reading the README, environment, weights, datasets, and documented commands, then recording results and d...
35.8K
443 upgrading-expo expo/skills
References ./references/new-architecture.md -- SDK +53: New Architecture migration guide ./references/react-19.md -- SDK +54: React 19 changes (useContext → use, Context.Provider → Context, forwardRef removal) ./references/react-compiler.md -- SDK +54: React Compiler setup and migration guide ./references/native-tabs.md -- SDK +55: Native tabs changes (Icon/Label/Badge now accessed via NativeTabs.Trigger.*) ./references/expo-av-to-audio.md -- Migrate audio playback and recording from expo-av to ...
35.7K
444 run-train lllllllama/rigorpilot-skills
run-train Use the shared operating principles in ../../references/agent-operating-principles.md ; this skill should keep training evidence bounded while leaving repository-specific monitoring details to the model. When to apply When the training command has already been selected and should be executed conservatively. When the researcher wants startup verification, short-run verification, full training kickoff, or resume handling. When the run needs structured training status, checkpoint, and met...
35.7K
445 paper-context-resolver lllllllama/rigorpilot-skills
paper-context-resolver When to apply README and repo files leave a reproduction-critical gap. The gap concerns dataset version, split, preprocessing, evaluation protocol, checkpoint mapping, or runtime assumptions. The main skill needs a narrow evidence supplement instead of a full paper summary. There is already a concrete reproduction question to answer. When not to apply The README already gives enough reproduction detail. The user wants a general paper explanation rather than reproduction su...
35.7K
446 repo-intake-and-plan lllllllama/rigorpilot-skills
repo-intake-and-plan When to apply At the beginning of README-first reproduction work. When the main skill needs a fast map of repo structure and documented commands. When inference, evaluation, and training candidates must be classified conservatively. When the user explicitly wants to inspect the repo first and not run anything yet. When not to apply When execution has already started and the task is now about running commands or writing outputs. When the target is not a repository-backed repr...
35.7K
447 explore-run lllllllama/rigorpilot-skills
explore-run Use the shared operating principles in ../../references/agent-operating-principles.md ; this skill should guide candidate run planning while preserving model judgment about the active repo. When to apply When the researcher explicitly authorizes exploratory runs. When the task is a small-subset validation, short-cycle training probe, batch sweep, idle-GPU search, or quick transfer-learning trial. When the output should rank candidate runs rather than certify trusted success. When not...
35.7K
448 env-and-assets-bootstrap lllllllama/rigorpilot-skills
env-and-assets-bootstrap When to apply After repo intake identifies a credible reproduction target. When environment creation or asset path preparation is needed before running commands. When the repo depends on checkpoints, datasets, or cache directories. When the user explicitly wants setup help before any run attempt. When not to apply When the repository already ships a ready-to-run environment that does not need translation. When the task is only to scan and plan. When the task is only to r...
35.7K
449 safe-debug lllllllama/rigorpilot-skills
safe-debug Use the shared operating principles in ../../references/agent-operating-principles.md ; this skill should guide conservative diagnosis without blocking the model from finding the local root cause. When to apply The user provides a traceback, terminal error, or concrete training or inference failure symptom. The user wants diagnosis, root-cause narrowing, and minimal patch suggestions before code is changed. The user wants a safe debug flow with explicit human approval before mutation....
35.7K
450 minimal-run-and-audit lllllllama/rigorpilot-skills
minimal-run-and-audit When to apply After a reproduction target and setup plan exist. When the main skill needs execution evidence and normalized outputs. When a smoke test, documented inference run, documented evaluation run, or other short non-training verification is appropriate. When the user already knows what command should be attempted and wants execution plus reporting only. When not to apply During initial repo scanning. When environment or assets are still undefined enough to make exec...
35.7K