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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
24,413
总 Skills
88.7M
总安装量
2,575
贡献者
# Skill 仓库 描述 安装量
3051 stitch::generate-design google-labs-code/stitch-skills
Generate Design Create new design screens from text descriptions, images, or mockups, edit existing screens with prompts and design system tokens, and generate design variants using Stitch MCP. [!NOTE] Refer to your system prompt for instruction on handling MCP tool prefixes for all tools mentioned in this skill (e.g., list_projects , generate_screen_from_text , edit_screens ). 🎨 Prompt Enhancement Pipeline Before calling any Stitch generation or editing tool, you MUST enhance the user's prompt....
2.2K
3052 argent-test-ui-flow software-mansion/argent
No SKILL.md available for this skill. View on GitHub Installs 875 Repository software-mansion/argent GitHub Stars 1.1K First Seen Apr 28, 2026
2.2K
3053 argent-android-emulator-setup software-mansion/argent
1. Prerequisites Android SDK Platform Tools on PATH — provides adb . Android Emulator on PATH — needed to boot AVDs. If you will only use an already-running emulator or a physical device, adb alone is sufficient. An AVD created via Android Studio or avdmanager create avd . Verify with adb version and emulator -list-avds . 2. Setup Find a ready device — call list-devices . Filter for entries with platform: "android" . Ready devices ( state: "device" ) come first. Pick the first serial (e.g. emula...
2.2K
3054 argent-device-interact software-mansion/argent
Unified tool surface All interaction tools below accept a udid parameter and auto-dispatch iOS vs Android based on its shape (UUID → iOS simulator, anything else → Android adb serial). You use the same tool names on both platforms. For platform-specific caveats (Metro adb reverse , locked-screen describe errors, etc.), see § 9 Platform-specific notes at the bottom. 1. Before You Start If you delegate simulator tasks to sub-agents, make sure they have MCP permissions. Use list-devices to get a ta...
2.2K
3055 argent-metro-debugger software-mansion/argent
No SKILL.md available for this skill. View on GitHub Installs 870 Repository software-mansion/argent GitHub Stars 1.1K First Seen Apr 28, 2026
2.2K
3056 argent-react-native-app-workflow software-mansion/argent
No SKILL.md available for this skill. View on GitHub Installs 871 Repository software-mansion/argent GitHub Stars 1.1K First Seen Apr 28, 2026
2.2K
3057 argent-react-native-profiler software-mansion/argent
This skill is complementary to argent-react-native-optimization , not a replacement for it. 2. Tool Overview React Profiler (Hermes / React commits) Tool Purpose react-profiler-start Start CPU sampling + inject React commit-capture hook. Optional: sample_interval_us (default 100). react-profiler-stop Stop recording; stores cpuProfile + commitTree in session. react-profiler-status Call if you were interrupted in the middle of the flow, never in another scenario (debugger drop, Metro reload, pause...
2.2K
3058 argent-react-native-optimization software-mansion/argent
Rules Do not apply shotgun optimizations. Measure first, define what "good enough" looks like (target metric + threshold), fix the top offender, re-measure honestly. Quick scan — react-profiler-renders for a live render count table. Identifies hot components instantly. Deep measure — load argent-react-native-profiler skill. react-profiler-start → interact → react-profiler-stop → react-profiler-analyze . Inspect — react-profiler-component-source per finding. react-profiler-fiber-tree to trace com...
2.2K
3059 argent-ios-simulator-setup software-mansion/argent
1. Setup Steps If you delegate simulator tasks to sub-agents, make sure they have MCP permissions. Find a booted simulator Use list-devices . Filter for entries with platform: "ios" — booted iPhones are listed first. If none are booted, call boot-device with udid: <chosen UDID> . Verify connection All interaction tools ( gesture-tap , gesture-swipe , gesture-custom , etc.) auto-start the server if not already running. 2. Notes UDIDs look like: A1B2C3D4-E5F6-7890-ABCD-EF1234567890
2.2K
3060 argent-create-flow software-mansion/argent
1. Overview A flow is a recorded sequence of MCP tool calls saved to a .yaml file in the .argent/flows/ directory. Each step is executed live as you add it, so you verify it works before it becomes part of the flow. Replay a finished flow with flow-execute . 2. Tools Tool Purpose flow-start-recording Start recording — takes a name and executionPrerequisite, creates the file flow-add-step Execute a tool call live and record it if it succeeds flow-add-echo Add a label/comment that prints during re...
2.2K
3061 argent-native-profiler software-mansion/argent
1. Tools native-profiler-start — start profiling on a booted device. iOS: xctrace recording for CPU, hangs, and leaks. native-profiler-stop — stop the profiler and export trace data to timestamped XML files. native-profiler-analyze — parse exported trace data and return a structured bottleneck payload. profiler-stack-query — drill into parsed data: hang stacks, function callers, thread breakdown, leak details. profiler-load — list and reload previous trace sessions from disk for re-investigation...
2.2K
3062 design-everyday-things wondelai/skills
Design of Everyday Things Framework Foundational design principles for creating products that are intuitive, discoverable, and understandable. The "bible of UX" — applicable to physical products, software, and any human-designed system. Core Principle Good design is actually a lot harder to notice than poor design, in part because good designs fit our needs so well that the design is invisible. When something works well, we take it for granted. When it fails, we blame ourselves — but the fault i...
2.2K
3063 infocard markdown-viewer/skills
Infocard Generator Quick Start: Analyze content (density × structure × mood) → Auto-sense tone for color palette → Pick a layout skeleton → Embed HTML directly in Markdown with <style scoped> . Critical Rules Rule 1: Direct HTML Embedding IMPORTANT : Write info cards as direct HTML in Markdown. NEVER use code blocks ( ```html ). The HTML should be embedded directly in the document without any fencing. Rule 2: No Empty Lines in HTML Structure CRITICAL : Do NOT add any empty lines within the HTML ...
2.2K
3064 trello steipete/clawdis
Trello Skill Manage Trello boards, lists, and cards directly from OpenClaw. Setup Get your API key: https://trello.com/app-key Generate a token (click "Token" link on that page) Set environment variables: export TRELLO_API_KEY = "your-api-key" export TRELLO_TOKEN = "your-token" Usage All commands use curl to hit the Trello REST API. List boards curl -s "https://api.trello.com/1/members/me/boards?key= $TRELLO_API_KEY &token= $TRELLO_TOKEN " | jq '.[] | {name, id}' List lists in a board curl -s "h...
2.2K
3065 svelte-core-bestpractices sveltejs/ai-tools
$state Only use the $state rune for variables that should be reactive — in other words, variables that cause an $effect , $derived or template expression to update. Everything else can be a normal variable. Objects and arrays ( $state({...}) or $state([...]) ) are made deeply reactive, meaning mutation will trigger updates. This has a trade-off: in exchange for fine-grained reactivity, the objects must be proxied, which has performance overhead. In cases where you're dealing with large objects t...
2.2K
3066 made-to-stick wondelai/skills
Made to Stick Framework A framework for crafting ideas and messages that are understood, remembered, and have lasting impact. Based on decades of research into why some ideas survive and others die. Core Principle The Curse of Knowledge is the single greatest barrier to effective communication. Once we know something, we can't imagine not knowing it. This makes us bad at explaining our ideas to others. The foundation: Sticky ideas aren't born — they're made. The SUCCESs framework provides six pr...
2.2K
3067 agent-email-cli zaddy6/agent-email-skill
Agent Email CLI Overview Use this skill to operate the agent-email command safely and predictably for agent workflows that need inbox access. Prefer JSON-native command output and return key fields ( email , messageId , subject , createdAt , from.address ) in your summaries. Workflow Verify CLI availability. command -v agent-email agent-email --help If missing, install: npm install -g @zaddy6/agentemail or bun install -g @zaddy6/agentemail Create a mailbox account. agent-email create Record the...
2.1K
3068 query-onchain-data coinbase/agentic-wallet-skills
Query Onchain Data on Base Use the CDP SQL API to query onchain data (events, transactions, blocks, transfers) on Base. Queries are executed via x402 and are charged per query. Confirm wallet is initialized and authed npx awal@2.0.3 status If the wallet is not authenticated, refer to the authenticate-wallet skill. Executing a Query npx awal@2.0.3 x402 pay https://x402.cdp.coinbase.com/platform/v2/data/query/run -X POST -d '{"sql": "<YOUR_QUERY>"}' --json IMPORTANT : Always single-quote the -d JS...
2.1K
3069 requirements-analysis jwynia/agent-skills
Requirements Analysis Diagnose requirements-level problems in software projects. Help distinguish stated wants from underlying problems, discover real constraints, and avoid premature solution thinking. When to Use This Skill Use this skill when: Starting a new project without clear problem definition Requirements feel vague or untestable Scope keeps expanding without bounds Constraints are unclear or unvalidated Building features without understanding the underlying need Do NOT use this sk...
2.1K
3070 qodo-pr-resolver qodo-ai/qodo-skills
Qodo PR Resolver Fetch Qodo review issues for your current branch's PR/MR, fix them interactively or in batch, and reply to each inline comment with the decision. Supports GitHub, GitLab, Bitbucket, and Azure DevOps. Prerequisites Required Tools: Git - For branch operations Git Provider CLI - One of: gh (GitHub), glab (GitLab), bb (Bitbucket), or az (Azure DevOps) Installation and authentication details: See providers.md for provider-specific setup instructions. Required Context: Must be in a gi...
2.1K
3071 resume bullet writer paramchoudhary/resumeskills
Use this skill when the user wants to: - Write or improve resume bullet points - Transform weak descriptions into strong achievements - Add metrics and quantifiable results - Make their experience more compelling - Mentions: "improve my bullets", "make my resume stronger", "quantify my achievements", "results-driven" Also use when you see weak bullets that need improvement (passive language, no metrics, vague descriptions). Core Capabilities - Transform weak bullet points into achieveme...
2.1K
3072 smux shawnpana/smux
smux Tmux pane control and cross-pane agent communication. Use tmux-bridge (the high-level CLI) for all cross-pane interactions. Fall back to raw tmux commands only when you need low-level control. tmux-bridge — Cross-Pane Communication A CLI that lets any AI agent interact with any other tmux pane. Works via plain bash. Every command is atomic : type types text (no Enter), keys sends special keys, read captures pane content. DO NOT WAIT OR POLL Other panes have agents that will reply to you via...
2.1K
3073 pp-movie-goat mvanhorn/printing-press-library
Movie Goat — Printing Press CLI Prerequisites: Install the CLI This skill drives the movie-goat-pp-cli binary. You must verify the CLI is installed before invoking any command from this skill. If it is missing, install it first: Install via the Printing Press installer: npx -y @mvanhorn/printing-press install movie-goat --cli-only Verify: movie-goat-pp-cli --version Ensure $GOPATH/bin (or $HOME/go/bin ) is on $PATH . If the npx install fails (no Node, offline, etc.), fall back to a direct Go ins...
2.1K
3074 convex-file-storage waynesutton/convexskills
Convex File Storage Handle file uploads, storage, serving, and management in Convex applications with proper patterns for images, documents, and generated files. Documentation Sources Before implementing, do not assume; fetch the latest documentation: Primary: https://docs.convex.dev/file-storage Upload Files: https://docs.convex.dev/file-storage/upload-files Serve Files: https://docs.convex.dev/file-storage/serve-files For broader context: https://docs.convex.dev/llms.txt Instructions File ...
2.1K
3075 dev-browser sawyerhood/dev-browser
Dev Browser Skill Browser automation that maintains page state across script executions. Write small, focused scripts to accomplish tasks incrementally. Once you've proven out part of a workflow and there is repeated work to be done, you can write a script to do the repeated work in a single execution. Choosing Your Approach Local/source-available sites: Read the source code first to write selectors directly Unknown page layouts: Use getAISnapshot() to discover elements and selectSnapshotRef()...
2.1K
3076 playwright-dev microsoft/playwright
Playwright Development Guide Table of Contents Library Architecture — client/server/dispatcher structure, protocol layer, DEPS rules Adding and Modifying APIs — define API docs, implement client/server, add tests MCP Tools and CLI Commands — add MCP tools, CLI commands, config options Vendoring Dependencies — bundle third-party npm packages into playwright-core or playwright Uploading Fixes to GitHub — branch naming, commit format, pushing fixes for issues Build Assume watch is running and every...
2.1K
3077 code-review-analysis aj-geddes/useful-ai-prompts
Code Review Analysis Overview Systematic code review process covering code quality, security, performance, maintainability, and best practices following industry standards. When to Use Reviewing pull requests and merge requests Analyzing code quality before merging Identifying security vulnerabilities Providing constructive feedback to developers Ensuring coding standards compliance Mentoring through code review Instructions 1. Initial Assessment Check the changes git diff main...feature-bran...
2.1K
3078 logo-creator resciencelab/opc-skills
Logo Creator Skill Create professional logos through AI image generation with an iterative design process. Prerequisites Required API Keys (set in environment): GEMINI_API_KEY - Get from Google AI Studio REMOVE_BG_API_KEY - Get from remove.bg RECRAFT_API_KEY - Get from recraft.ai Required Skills: nanobanana - AI image generation (Gemini 3 Pro Image) File Output Location All generated files should be saved to the .skill-archive directory: .skill-archive/logo-creator/<yyyy-mm-dd-summarynam...
2.1K
3079 qodo-get-rules qodo-ai/qodo-skills
Get Qodo Rules Skill Description Fetches repository-specific coding rules from the Qodo platform API before code generation or modification tasks. Rules include security requirements, naming conventions, architectural patterns, style guidelines, and team conventions that must be applied during code generation. Workflow Step 1: Check if Rules Already Loaded If rules are already loaded (look for "Qodo Rules Loaded" in recent messages), skip to step 6. Step 2: Verify working in a git repository Che...
2.1K
3080 code-review xtone/ai_development_tools
Code Review When to use this skill Reviewing pull requests Checking code quality Providing feedback on implementations Identifying potential bugs Suggesting improvements Security audits Performance analysis Instructions Step 1: Understand the context Read the PR description : What is the goal of this change? Which issues does it address? Are there any special considerations? Check the scope : How many files changed? What type of changes? (feature, bugfix, refactor) Are tests included? Step 2: Hi...
2.1K
3081 longbridge longbridge/developers
Longbridge Developers Platform Full-stack financial data and trading platform: CLI, Python/Rust SDK, MCP, and LLM integration. Official docs: https://open.longbridge.com llms.txt: https://open.longbridge.com/llms.txt For setup and authentication details, see references/setup.md . Investment Analysis Workflow When the user asks about stock performance, portfolio advice, or market analysis: Get live data via CLI — quotes, positions, K-line history, intraday Get news/catalysts via CLI — prefer Long...
2.1K
3082 code-simplify paulrberg/agent-skills
Code Simplify Objective Simplify code while preserving behavior, public contracts, and side effects. Favor explicit code and local clarity over clever or compressed constructs. Scope Resolution Verify repository context: git rev-parse --git-dir . If this fails, stop and tell the user to run from a git repository. If user provides file paths/patterns or a commit/range, scope is exactly those targets. Otherwise, scope is only session-modified files. Do not include other uncommitted changes. If the...
2.1K
3083 ghost-scan-secrets ghostsecurity/skills
Ghost Security Secrets Scanner — Orchestrator You are the top-level orchestrator for secrets scanning. Your ONLY job is to call the Task tool to spawn subagents to do the actual work. Each step below gives you the exact Task tool parameters to use. Do not do the work yourself. Defaults repo_path : the current working directory scan_dir : ~/.ghost/repos/<repo_id>/scans/<short_sha>/secrets short_sha : git rev-parse --short HEAD (falls back to YYYYMMDD for non-git dirs) $ARGUMENTS Any values provid...
2.1K
3084 seo-images agricidaniel/claude-seo
Image Optimization Analysis Checks Alt Text Present on all <img> elements (except decorative: role="presentation" ) Descriptive: describes the image content, not "image.jpg" or "photo" Includes relevant keywords where natural, not keyword-stuffed Length: 10-125 characters Good examples: "Professional plumber repairing kitchen sink faucet" "Red 2024 Toyota Camry sedan front view" "Team meeting in modern office conference room" Bad examples: "image.jpg" (filename, not description) "plumber plumbin...
2.1K
3085 content-marketing refoundai/lenny-skills
Content Marketing Help the user build effective content marketing using frameworks from 23 product leaders who have built content engines at companies like Notion, First Round, and The Pragmatic Engineer. How to Help When the user asks for help with content marketing: Identify the goal - Determine if content is for SEO, brand building, lead generation, or thought leadership Find content-market fit - Help them identify the specific anxieties or needs their content will solve Choose the right form...
2.1K
3086 tailwindcss hairyf/skills
Tailwind CSS The skill is based on Tailwind CSS v4.1.18, generated at 2026-01-28. Tailwind CSS is a utility-first CSS framework for rapidly building custom user interfaces. Instead of writing custom CSS, you compose designs using utility classes directly in your markup. Tailwind v4 introduces CSS-first configuration with theme variables, making it easier to customize your design system. Core References Topic Description Reference Installation Vite, PostCSS, CLI, and CDN setup core-installation U...
2.1K
3087 seo-hreflang agricidaniel/claude-seo
Hreflang & International SEO Validate existing hreflang implementations or generate correct hreflang tags for multi-language and multi-region sites. Supports HTML, HTTP header, and XML sitemap implementations. Validation Checks 1. Self-Referencing Tags Every page must include an hreflang tag pointing to itself The self-referencing URL must exactly match the page's canonical URL Missing self-referencing tags cause Google to ignore the entire hreflang set 2. Return Tags If page A links to page B w...
2.1K
3088 react-patterns giuseppe-trisciuoglio/developer-kit
React Development Patterns Overview Expert guide for building modern React 19 applications with new concurrent features, Server Components, Actions, and advanced patterns. This skill covers everything from basic hooks to advanced server-side rendering and React Compiler optimization. When to Use Building React 19 components with TypeScript/JavaScript Managing component state with useState and useReducer Handling side effects with useEffect Optimizing performance with useMemo and useCallback Crea...
2.1K
3089 owasp-security hoodini/ai-agents-skills
OWASP Top 10 Security Prevent common security vulnerabilities in web applications. OWASP Top 10 (2021) Vulnerability Prevention A01 Broken Access Control Proper authorization checks A02 Cryptographic Failures Strong encryption, secure storage A03 Injection Input validation, parameterized queries A04 Insecure Design Threat modeling, secure patterns A05 Security Misconfiguration Hardened configs, no defaults A06 Vulnerable Components Dependency scanning, updates A07 Auth Failures MFA, secure se...
2.1K
3090 seo-programmatic agricidaniel/claude-seo
Programmatic SEO Analysis & Planning Build and audit SEO pages generated at scale from structured data sources. Enforces quality gates to prevent thin content penalties and index bloat. Data Source Assessment Evaluate the data powering programmatic pages: CSV/JSON files : Row count, column uniqueness, missing values API endpoints : Response structure, data freshness, rate limits Database queries : Record count, field completeness, update frequency Data quality checks: Each record must have enoug...
2.1K
3091 user-research anthropics/knowledge-work-plugins
User Research Help plan, execute, and synthesize user research studies. Research Methods Method Best For Sample Size Time User interviews Deep understanding of needs and motivations 5-8 2-4 weeks Usability testing Evaluating a specific design or flow 5-8 1-2 weeks Surveys Quantifying attitudes and preferences 100+ 1-2 weeks Card sorting Information architecture decisions 15-30 1 week Diary studies Understanding behavior over time 10-15 2-8 weeks A/B testing Comparing specific design choices Stat...
2.1K
3092 everything-claude-code affaan-m/everything-claude-code
Everything Claude Code Conventions Generated from affaan-m/everything-claude-code on 2026-03-20 Overview This skill teaches Claude the development patterns and conventions used in everything-claude-code. Tech Stack Primary Language : JavaScript Architecture : hybrid module organization Test Location : separate When to Use This Skill Activate this skill when: Making changes to this repository Adding new features following established patterns Writing tests that match project conventions Creating ...
2.1K
3093 nextjs-app-router-fundamentals wsimmonds/claude-nextjs-skills
Next.js App Router Fundamentals Overview Provide comprehensive guidance for Next.js App Router (Next.js 13+), covering migration from Pages Router, file-based routing conventions, layouts, metadata handling, and modern Next.js patterns. TypeScript: NEVER Use any Type CRITICAL RULE: This codebase has @typescript-eslint/no-explicit-any enabled. Using any will cause build failures. ❌ WRONG: function handleSubmit(e: any) { ... } const data: any[] = []; ✅ CORRECT: function handleSubmit(e: Rea...
2.1K
3094 pp-recipe-goat mvanhorn/printing-press-library
Recipe Goat — Printing Press CLI Prerequisites: Install the CLI This skill drives the recipe-goat-pp-cli binary. You must verify the CLI is installed before invoking any command from this skill. If it is missing, install it first: Install via the Printing Press installer: npx -y @mvanhorn/printing-press install recipe-goat --cli-only Verify: recipe-goat-pp-cli --version Ensure $GOPATH/bin (or $HOME/go/bin ) is on $PATH . If the npx install fails (no Node, offline, etc.), fall back to a direct Go...
2.1K
3095 agent-slack stablyai/agent-slack
Slack automation with agent-slack agent-slack is a CLI binary installed on $PATH . Invoke it directly (e.g. agent-slack user list ). If installed via Nix flake only, run commands with nix run github:stablyai/agent-slack -- <args> . CRITICAL: Bash command formatting rules Claude Code's permission checker has security heuristics that force manual approval prompts. Avoid these patterns to keep commands auto-allowed. See: https://github.com/anthropics/claude-code/issues/34379 No anywhere in the com...
2.1K
3096 startup-ideation refoundai/lenny-skills
Startup Ideation Help the user generate and evaluate startup ideas using frameworks and insights from 2 product leaders. How to Help When the user asks for help with startup ideation: Understand their background - Ask about their personal experience, skills, and what problems they've encountered firsthand Explore information sources - Discuss what they read, who they talk to, and whether their information diet is differentiated Apply the Why Now test - Help them identify what has changed that ma...
2.1K
3097 app-store-review dpearson2699/swift-ios-skills
App Store Review Preparation Guidance for catching App Store rejection risks before submission. Apple reviewed 7.7 million submissions in 2024 and rejected 1.9 million. Most rejections are preventable with proper preparation. Contents Overview Top Rejection Reasons and How to Avoid Them PrivacyInfo.xcprivacy -- Privacy Manifest Requirements Data Use, Sharing, and Privacy Policy (Guideline 5.1.2) In-App Purchase and StoreKit Rules (Guideline 3.1.1) HIG Compliance Checklist App Tracking Transparen...
2.1K
3098 wp-performance wordpress/agent-skills
WP Performance (backend-only) When to use Use this skill when: a WordPress site/page/endpoint is slow (frontend TTFB, admin, REST, WP-Cron) you need a profiling plan and tooling recommendations (WP-CLI profile/doctor, Query Monitor, Xdebug/XHProf, APMs) you’re optimizing DB queries, autoloaded options, object caching, cron tasks, or remote HTTP calls This skill assumes the agent cannot use a browser UI. Prefer WP-CLI, logs, and HTTP requests. Inputs required Environment and safety: dev/staging/p...
2.1K
3099 tanstack-table tanstack-skills/tanstack-skills
Overview TanStack Table is a headless UI library for building data tables and datagrids. It provides logic for sorting, filtering, pagination, grouping, expanding, column pinning/ordering/visibility/resizing, and row selection - without rendering any markup or styles. Package: @tanstack/react-table Utilities: @tanstack/match-sorter-utils (fuzzy filtering) Current Version: v8 Installation npm install @tanstack/react-table Core Architecture Building Blocks Column Definitions - describe columns (da...
2.1K
3100 diagnose-seo calm-north/seojuice-skills
Diagnose SEO Structured diagnostic framework for crawl issues, canonicalization errors, indexation problems, and rendering failures. Diagnostic Approach Technical SEO problems fall into four categories. Diagnose in this order — each layer depends on the previous one working correctly: Crawlability — Can search engines find and access the pages? Indexability — Are the pages allowed to be indexed? Renderability — Can search engines see the full content? Signals — Are the right signals (titles, str...
2.1K