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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
27,636
总 Skills
167.1M
总安装量
2,750
贡献者
# Skill 仓库 描述 安装量
9851 web-to-app-funnel eronred/aso-skills
Web-to-App Funnel You are a web-to-app conversion specialist. Your goal is to design a funnel where web traffic (paid or organic) converts to app installs and activated users with maximum efficiency, optionally paying on web first to bypass App Store fees on subscriptions. Initial Assessment Check for app-marketing-context.md Ask: What web traffic does the user have or plan? (SEO, paid search, social ads with web destination, podcast, newsletter) Ask: Monetization model — subscription (web payme...
1.1K
9852 motion hairyf/skills
Motion Vue (motion-v) Animation library for Vue 3 and Nuxt. Production-ready, hardware-accelerated animations with minimal bundle size. Current stable: motion-v 1.x - Vue port of Motion (formerly Framer Motion) Overview Progressive reference for Motion Vue animations. Load only files relevant to current task (~200 tokens base, 500-1500 per sub-file). When to Use Use Motion Vue for: Simple declarative animations (fade, slide, scale) Gesture-based interactions (hover, tap, drag) Scroll-linked anim...
1.1K
9853 video-downloader davila7/claude-code-templates
video-downloader Curated from ComposioHQ awesome-claude-skills. What it does Download videos from YouTube and other platforms for offline viewing, editing, or archival with support for various formats and quality options. Source Upstream: https://github.com/ComposioHQ/awesome-claude-skills/tree/master/video-downloader Category: video-generation How to use This catalogue entry advertises the skill in Open Design so the agent discovers it during planning. To run the full upstream workflow with its...
1.1K
9854 omero-integration k-dense-ai/scientific-agent-skills
No SKILL.md available for this skill. View on GitHub
1.1K
9855 glycoengineering k-dense-ai/scientific-agent-skills
No SKILL.md available for this skill. View on GitHub
1.1K
9856 diffity-learn nilbuild/diffity
Diffity Learn Skill You are a tutor. You teach any technical topic — programming languages, tools, frameworks, or concepts — interactively through conversation, backed by small runnable projects. Agent projects are presented as Diffity tours in the browser. You delegate heavy work to subagents to keep your context clean and focused on the learner. Arguments topic (required): What to teach. Can be a programming language, tool, framework, or any technical topic that can be taught through hands-on ...
1.1K
9857 safe-action-middleware next-safe-action/skills
next-safe-action Middleware Quick Start import { createSafeActionClient } from "next-safe-action" ; const actionClient = createSafeActionClient ( ) ; // Add middleware with .use() const authClient = actionClient . use ( async ( { next } ) => { const session = await getSession ( ) ; if ( ! session ?. user ) { throw new Error ( "Unauthorized" ) ; } // Pass context to the next middleware/action via next({ ctx }) return next ( { ctx : { userId : session . user . id } , } ) ; } ) ; How Middleware Wor...
1.1K
9858 workflow-automation hubspot/agent-cli-skills
Workflow Automation When to use this skill Repetitive tasks : running the same commands every time Complex builds : multi-step build processes Team onboarding : a consistent development environment Instructions Step 1: npm scripts package.json : { "scripts" : { "dev" : "nodemon src/index.ts" , "build" : "tsc && vite build" , "test" : "jest --coverage" , "test:watch" : "jest --watch" , "lint" : "eslint src --ext .ts,.tsx" , "lint:fix" : "eslint src --ext .ts,.tsx --fix" , "format" : "prettier --w...
1.1K
9859 svg-assembly-animator vibe-motion/skills
SVG Assembly Animator 这个 Skill 专门用于将静态 SVG 转换为具有专业动效(Viscous & Dynamic 风格)的 HTML5 动画,并提供透明序列帧导出功能。 核心工作流 分析 SVG 结构 :读取 SVG 文件,识别出主要的“船体/主体”(通常是第一个 path)和“细节零件”(剩余 path)。 准备 HTML 模板 : 使用 GSAP (TweenMax) 作为动画引擎。 使用 JSZip 和 Canvas 实现纯前端透明帧导出。 加载内置资产 assets/animation_template.html 作为基础。 实现动画逻辑 (参考 references/animation_logic.md ): 打散阶段 :利用“反向逻辑”,将零件随机抛射到视口外,并进行极端的轴向缩放(ScaleX: 0.05, ScaleY: 4)以营造速度感。 组装阶段 : 主体骨架率先以 elastic.out 效果浮现。 零件以 stagger 随机顺序飞入,伴随 back.out 的过冲回弹(Overshoot)。 整体场景伴随大角度旋转(180° 或 3...
1.1K
9860 tui-design hyperb1iss/hyperskills
TUI Design System Universal design patterns for building exceptional terminal user interfaces. Framework-agnostic — works with Ratatui, Ink, Textual, Bubbletea, or any TUI toolkit. Core philosophy: TUIs earn their power through spatial consistency, keyboard fluency, and information density that respects human attention. Design for the expert's speed without abandoning the beginner's discoverability. TUI Design Process digraph tui_design { rankdir = TB ; "What are you building?" [ shape = diamond...
1.1K
9861 compose-modifier-and-layout-style chrisbanes/skills
Compose modifier and layout style Core principle A composable that emits layout is a leaf the parent places — the parent decides position, size, alignment, padding. The composable's job is structure (what's inside), not placement (where it goes). Three rules follow: Declare a modifier parameter and apply it to the root , so the parent can actually do its job. Hardcoding .fillMaxWidth() on a composable's root takes that decision away from every future caller. Construct modifier chains as one flue...
1.1K
9862 testing tursodatabase/turso
LobeHub Testing Guide Quick Reference Commands: Run specific test file bunx vitest run --silent = 'passed-only' '[file-path]' Database package (client-db, PGlite — default, skips BM25/pg_search) cd packages/database && bunx vitest run --silent = 'passed-only' '[file]' Database package (server-db, Postgres — BM25/pgvector parity, what CI measures coverage in) cd packages/database && TEST_SERVER_DB = 1 bunx vitest run --silent = 'passed-only' '[file]' Never run bun run test - it runs all 3000+ ...
1.1K
9863 storage-format tursodatabase/turso
Page size: power of 2, 512-65536 bytes. Default 4096. Database Header (First 100 Bytes) | 0 | 16 | Magic: `"SQLite format 3\0"` | 16 | 2 | Page size (big-endian) | 18 | 1 | Write format version (1=rollback, 2=WAL) | 19 | 1 | Read format version | 24 | 4 | Change counter | 28 | 4 | Database size in pages | 32 | 4 | First freelist trunk page | 36 | 4 | Total freelist pages | 40 | 4 | Schema cookie | 56 | 4 | Text encoding (1=UTF8, 2=UTF16LE, 3=UTF16BE) Al...
1.1K
9864 swiftui-design-principles arjitj2/swiftui-design-principles
This skill encodes design principles derived from comparing polished, production-quality SwiftUI apps against poorly-built ones. The patterns here represent what separates an app that feels "right" from one where the margins, spacing, and text sizes just look "off." Apply these principles whenever building or modifying SwiftUI interfaces, WidgetKit widgets, or any native Apple UI. Core Philosophy Restraint over decoration. Every pixel must earn its place. A polished app uses fewer colors, fewer ...
1.1K
9865 meeting-minutes-taker daymade/claude-code-skills
Meeting Minutes Taker Transform raw meeting transcripts into comprehensive, evidence-based meeting minutes through iterative review. Quick Start Pre-processing (Optional but Recommended): Document conversion: Use markdown-tools skill to convert .docx/.pdf to Markdown first (preserves tables/images) Transcript cleanup: Use transcript-fixer skill to fix ASR/STT errors if transcript quality is poor Context file: Prepare context.md with team directory for accurate speaker identification Core Wo...
1.1K
9866 promptfoo-evaluation daymade/claude-code-skills
Promptfoo Evaluation Overview This skill provides guidance for configuring and running LLM evaluations using Promptfoo, an open-source CLI tool for testing and comparing LLM outputs. Quick Start Initialize a new evaluation project npx promptfoo@latest init Run evaluation npx promptfoo@latest eval View results in browser npx promptfoo@latest view Configuration Structure A typical Promptfoo project structure: project/ ├── promptfooconfig.yaml Main configuration ├── prompts/ │ ├── s...
1.1K
9867 ginkgo-cloud-lab k-dense-ai/scientific-agent-skills
No SKILL.md available for this skill. View on GitHub
1.1K
9868 inngest-flow-control inngest/inngest-skills
Inngest Flow Control Master Inngest flow control mechanisms to manage resources, prevent overloading systems, and ensure application reliability. This skill covers all flow control options with prescriptive guidance on when and how to use each. These skills are focused on TypeScript. For Python or Go, refer to the Inngest documentation for language-specific guidance. Core concepts apply across all languages. Quick Decision Guide "Limit how many run at once" → Concurrency "Spread runs over time" ...
1.1K
9869 aws-secrets-manager aws/agent-toolkit-for-aws
Using Secrets Safely with Agents Overview When AI agents handle secrets, credentials, API keys, tokens, or passwords with shell or AWS API access, they can call aws secretsmanager get-secret-value and receive plaintext values in their context window. This creates risk: secrets may leak into logs, conversation history, or downstream tool calls. This skill teaches a safer pattern: dynamic references resolved at runtime by a wrapper script ( asm-exec ), so the agent never sees the secret value. Bes...
1.1K
9870 csv-excel-merger onewave-ai/claude-skills
CSV/Excel Merger Intelligently merge multiple CSV or Excel files with automatic column matching and data deduplication. Instructions When a user needs to merge CSV or Excel files: Analyze Input Files: How many files need to be merged? What format (CSV, Excel, TSV)? Are the files provided or need to be read from disk? Do columns have the same names across files? What is the primary key (unique identifier)? Inspect File Structures: Read headers from each file Identify column names and data ...
1.1K
9871 compose-side-effects chrisbanes/skills
Compose: side effects Core principle Composable bodies describe UI. They can be recomposed, skipped, or abandoned. Work that changes the outside world belongs in an effect API whose lifecycle matches the work. Pick the smallest effect Need API Publish Compose state to non-Compose code after every successful recomposition SideEffect Register/unregister a listener, callback, observer, or resource DisposableEffect(keys...) Run suspending, deferred, or keyed one-shot work LaunchedEffect(keys...) Lau...
1.1K
9872 lua mindrally/skills
Lua Development You are an expert in Lua programming with deep knowledge of tables, metatables, and game development patterns. Core Principles Write clear, concise Lua code that follows idiomatic patterns Leverage Lua's dynamic typing while maintaining code clarity Prioritize modularity and code reusability Focus on end-user experience across all code contributions Lua-Specific Practices Maximize local variables for performance improvements Leverage tables effectively for data structures Imple...
1.1K
9873 agent-orchestration yonatangross/orchestkit
Agent Orchestration Comprehensive patterns for building and coordinating AI agents -- from single-agent reasoning loops to multi-agent systems and framework selection. Each category has individual rule files in rules/ loaded on-demand. Quick Reference Category Rules Impact When to Use Agent Loops 2 HIGH ReAct reasoning, plan-and-execute, self-correction Multi-Agent Coordination 3 CRITICAL Supervisor routing, agent debate, result synthesis Alternative Frameworks 3 HIGH CrewAI crews, AutoGen teams...
1.1K
9874 pptx-author anthropics/financial-services
pptx-author Use this skill when running headless (managed-agent / CMA mode) and you need to deliver a PowerPoint deck as a file artifact rather than editing a live document via mcp__office__powerpoint_* . Output contract Write to ./out/<name>.pptx . Create ./out/ if it does not exist. Return the relative path in your final message so the orchestration layer can collect it. How to build the deck Write a short Python script and run it with Bash. Use python-pptx : from pptx import Presentation from...
1.1K
9875 custom-product-pages eronred/aso-skills
Custom Product Pages (CPP) You are an Apple Custom Product Pages specialist. Your goal is to help the user ship 1–35 CPP variants that match the messaging of upstream traffic sources, lifting tap-through-to-install rate by 10–40% vs the default product page. What CPPs Are (and Aren't) CPPs are CPPs are NOT Up to 35 variants of your product page A/B tests (use Product Page Optimization for that) Tied to a unique URL Apple generates Shown organically (only via your URL) Different screenshots, prev...
1.1K
9876 r3f-textures enzed/r3f-skills
React Three Fiber Textures Quick Start import { Canvas } from '@react-three/fiber' import { useTexture } from '@react-three/drei' function TexturedBox() { const texture = useTexture('/textures/wood.jpg') return ( <mesh> <boxGeometry /> <meshStandardMaterial map={texture} /> </mesh> ) } export default function App() { return ( <Canvas> <ambientLight /> <TexturedBox /> </Canvas> ) } useTexture Hook (Drei) The recommended way to load textures i...
1.1K
9877 figma-use-slides figma/mcp-server-guide
use_figma — Figma Plugin API Skill for Slides This skill contains Slides-specific context for the use_figma MCP tool. The figma-use skill provides foundational context for plugin API execution via MCP as well as the full Figma plugin API for more advanced use-cases that are not described here. Always include figma-use-slides in the comma-separated skillNames parameter when calling use_figma for Slides operations. If this skill was loaded via an MCP resource, you MUST prefix the name with resourc...
1.1K
9878 hunk-review modem-dev/hunk
Hunk Review Hunk is an interactive terminal diff viewer. The TUI is for the user -- do NOT run hunk diff , hunk show , or other interactive commands directly. Use hunk session * CLI commands to inspect and control live sessions through the local daemon. If no session exists, ask the user to launch Hunk in their terminal first. Workflow 1. hunk session list find live sessions 2. hunk session get --repo . inspect path / repo / source ...
1.1K
9879 senior-architect davila7/claude-code-templates
Senior Architect Complete toolkit for senior architect with modern tools and best practices. Quick Start Main Capabilities This skill provides three core capabilities through automated scripts: Script 1: Architecture Diagram Generator python scripts/architecture_diagram_generator.py [ options ] Script 2: Project Architect python scripts/project_architect.py [ options ] Show more Installs 2.1K Repository sickn33/agentic…e-skills GitHub Stars 45.0K First Seen Jan 19, 2026 Security Audits Gen Age...
1.1K
9880 schema-markup kostja94/marketing-skills
Schema Markup You are an expert in structured data and schema markup. Your goal is to implement schema.org markup that helps search engines understand content and enables rich results in search. Initial Assessment 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 and only ask for information not already covered or specific to this task. Before imple...
1.1K
9881 content-strategy kostja94/marketing-skills
Content Strategy You are a content strategist. Your goal is to help plan content that drives traffic, builds authority, and generates leads by being either searchable, shareable, or both. Before Planning 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 and only ask for information not already covered or specific to this task. Gather this context (a...
1.1K
9882 domain-modeling pandoscope/skills
Domain Modeling Actively build and sharpen the project's domain model as you design. This is the active discipline — challenging terms, inventing edge-case scenarios, and writing the glossary and decisions down the moment they crystallise. (Merely reading CONTEXT.md for vocabulary is not this skill — that's a one-line habit any skill can do. This skill is for when you're changing the model, not just consuming it.) File structure Most repos have a single context: / ├── CONTEXT.md ├── docs/ │ └─...
1.1K
9883 web-search whytryharder/superpowers
Install the belt CLI skill: npx skills add belt-sh/cli Web Search & Extraction Search the web and extract content via inference.sh CLI. Quick Start Requires inference.sh CLI ( belt ). Install instructions belt login Search the web belt app run tavily/search-assistant --input '{"query": "latest AI developments 2024"}' Show more Installs 34.6K Repository skills-101/superpowers GitHub Stars 7 First Seen 13 days ago Security Audits Gen Agent Trust Hub Pass Socket Warn Snyk Warn
1.1K
9884 rewardkit harbor-framework/harbor
Help the user write task verifiers with Reward Kit. Reward Kit is a lightweight Python package that turns a directory of criteria files into a reward score. Each criterion is a Python function call or a TOML judge file; folders become separate rewards. Setup in a Harbor task Put criteria alongside test.sh in the task's tests/ directory: tests/ ├── test.sh ├── checks.py programmatic criteria └── judge.toml optional LLM/agent judge Show more Installs 650 Repository harbor-framewor...
1.1K
9885 developing-ios-apps daymade/claude-code-skills
iOS App Development Build, configure, and deploy iOS applications using XcodeGen and Swift Package Manager. Critical Warnings Issue Cause Solution "Library not loaded: @rpath/Framework" XcodeGen doesn't auto-embed SPM dynamic frameworks Build in Xcode GUI first (not xcodebuild). See Troubleshooting xcodegen generate loses signing Overwrites project settings Configure in project.yml target settings, not global Command-line signing fails Free Apple ID limitation Use Xcode GUI or paid developer a...
1.1K
9886 geo-fundamentals sickn33/agentic-awesome-skills
GEO Fundamentals Optimization for AI-powered search engines. 1. What is GEO? GEO = Generative Engine Optimization Goal Platform Be cited in AI responses ChatGPT, Claude, Perplexity, Gemini SEO vs GEO Show more Installs 1.1K Repository sickn33/agentic…e-skills GitHub Stars 45.1K First Seen Jan 20, 2026 Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Pass
1.1K
9887 language-swap pika-labs/pika-plugins
/pika:language-swap Tools below are Pika MCP tools, named bare — call each under whatever prefix your session exposes for the Pika MCP. Translate and dub a video into another language while preserving the original speaker's voice. Pipeline: dub (one worker call) → lipsync (default ON) → burn target-language captions or bilingual captions. The dubbing worker does the heavy lifting in a single call: it transcribes, translates, preserves each speaker's voice server-side (no separate clone step), an...
1.1K
9888 agent-tools whytryharder/superpowers
inference.sh Run 250+ AI apps in the cloud with a simple CLI. No GPU required. Install CLI curl -fsSL https://cli.inference.sh | sh belt login What does the installer do? The install script detects your OS and architecture, downloads the correct binary from dist.inference.sh , verifies its SHA-256 checksum, and places it in your PATH. That's it — no elevated permissions, no background processes, no telemetry. If you have cosign installed, the installer also verifies the Sigstore signature automa...
1.1K
9889 infsh-cli whytryharder/superpowers
No SKILL.md available for this skill. View on GitHub
1.1K
9890 code-reviewer alirezarezvani/claude-skills
Code Reviewer This skill guides the agent in conducting professional and thorough code reviews for both local development and remote Pull Requests. Workflow 1. Determine Review Target Remote PR : If the user provides a PR number or URL (e.g., "Review PR 123"), target that remote PR. Local Changes : If no specific PR is mentioned, or if the user asks to "review my changes", target the current local file system states (staged and unstaged changes). 2. Preparation For Remote PRs: Checkout : Use the...
1.1K
9891 modern-web-development mindrally/skills
Modern Web Development Brandon Fernandez's comprehensive cursor rules for modern web development with TypeScript, Node.js, Next.js 14, React, Supabase, GraphQL, Tailwind CSS, Radix UI, and Shadcn UI. Key Development Principles Code Style and Architecture Write concise, technical responses with accurate TypeScript examples Employ functional, declarative programming while avoiding class-based approaches Prioritize iteration and modularization over code duplication Use descriptive variable names ...
1.1K
9892 brainstorming jnmetacode/superpowers-zh
Brainstorming Ideas Into Designs Help turn ideas into fully formed designs and specs through natural collaborative dialogue. Start by understanding the current project context, then ask questions one at a time to refine the idea. Once you understand what you're building, present the design and get user approval. Anti-Pattern: "This Is Too Simple To Need A Design" Every project goes through this process. A todo list, a single-function utility, a config change — all of them. "Simple" projects are ...
1.1K
9893 react-email vercel-labs/json-render
React Email Build and send HTML emails using React components - a modern, component-based approach to email development that works across all major email clients. Installation You need to scaffold a new React Email project using the create-email CLI. This will create a folder called react-email-starter with sample email templates. Using npm: npx create-email@latest Using yarn: yarn create email Using pnpm: pnpm create email Using bun: bun create email Navigate to Project Directory You must chang...
1.1K
9894 context7 netresearch/context7-skill
Context7 Overview This skill enables retrieval of current documentation for software libraries and components by querying the Context7 API via curl. Use it instead of relying on potentially outdated training data. Workflow Step 1: Search for the Library To find the Context7 library ID, query the search endpoint: curl -s "https://context7.com/api/v2/libs/search?libraryName=LIBRARY_NAME&query=TOPIC" | jq '.results[0]' Parameters: libraryName (required): The library name to search for (e.g., "react...
1.1K
9895 tanstack-config tanstack-skills/tanstack-skills
Overview TanStack Config provides an opinionated, minimal-configuration toolkit for JavaScript/TypeScript package development. It includes Vite-powered build configuration, ESLint presets, publish automation with semantic versioning, and integrations with TypeScript, Prettier, Changesets, and GitHub Actions. Designed for monorepo workflows with pnpm and Nx. Package: @tanstack/config Status: Stable Installation npm install @tanstack/config --save-dev or pnpm add @tanstack/config -D Vite Build Co...
1.1K
9896 remotion-render whytryharder/superpowers
Install the belt CLI skill: npx skills add belt-sh/cli Remotion Render Render videos from React/Remotion component code via inference.sh CLI. Quick Start Requires inference.sh CLI ( belt ). Install instructions belt login Show more Installs 79.0K Repository magentosh/skills GitHub Stars 679 First Seen 12 days ago Security Audits Gen Agent Trust Hub Pass Socket Warn Snyk Warn
1.1K
9897 jetson-flash-image nvidia/skills
Flash BSP Image Purpose Push a promoted bsp_image to a Jetson DUT by running the NVIDIA flashing toolchain ( flash.sh or l4t_initrd_flash.sh ) from the in-tree Linux_for_Tegra/ . The DUT must be in RCM (recovery) mode at flash time. This is the flash leg of the BSP overlay deploy chain ( /jetson-promote-image → /jetson-flash-image ); see the BSP overlay workflow at ../../context/bsp-customization-workflow.md . Design principle. Four invariants govern this skill; each is fully explained in the In...
1.1K
9898 paperzilla k-dense-ai/scientific-agent-skills
Paperzilla Use this skill when you want to chat with your agent about projects, recommendations, and canonical papers in Paperzilla. What you can ask "Give me the latest recommendations from project X." "Open recommendation Y and explain why it matters." "Fetch canonical paper Z as markdown and summarize it." "Tell me how this paper is relevant to my research." "Show me the feed for project X." "Leave feedback on a recommendation." "Export this paper, recommendation, or feed as JSON." This is th...
1.1K
9899 linkedin-reader himself65/finance-skills
LinkedIn Skill (Read-Only) Reads LinkedIn for financial research using opencli , a universal CLI tool that bridges web services to the terminal via browser session reuse. This skill is read-only. It is designed for financial research: reading professional commentary on markets, monitoring analyst posts, searching finance/trading jobs, and tracking professional sentiment. It does NOT support posting, liking, commenting, connecting, messaging, or any write operations. Important : opencli reuses yo...
1.1K
9900 getnote-tag iswalle/getnote-cli
getnote-tag Skill Add, list, and remove tags on notes. Prerequisites getnote CLI installed and authenticated ( getnote auth status should show "Authenticated") Commands List tags on a note getnote tag list <note_id> Returns all tags with their IDs and types. Show more
1.1K