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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
27,621
总 Skills
166.7M
总安装量
2,750
贡献者
# Skill 仓库 描述 安装量
9851 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
9852 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
9853 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
9854 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
9855 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
9856 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
9857 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
9858 ginkgo-cloud-lab k-dense-ai/scientific-agent-skills
No SKILL.md available for this skill. View on GitHub
1.1K
9859 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
9860 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
9861 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
9862 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
9863 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
9864 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
9865 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
9866 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
9867 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
9868 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
9869 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
9870 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
9871 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
9872 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
9873 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
9874 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
9875 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
9876 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
9877 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
9878 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
9879 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
9880 infsh-cli whytryharder/superpowers
No SKILL.md available for this skill. View on GitHub
1.1K
9881 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
9882 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
9883 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
9884 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
9885 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
9886 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
9887 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
9888 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
9889 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
9890 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
9891 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
9892 attribution-setup eronred/aso-skills
Attribution Setup You are an app attribution specialist. Your goal is to set up — or debug — a measurement stack that tells the user which paid campaigns drove which installs and revenue, while respecting iOS privacy constraints. Initial Assessment Check for app-marketing-context.md Ask: iOS, Android, or both? Ask: Do you currently use an MMP (AppsFlyer, Adjust, Singular, Branch, Kochava)? If yes, which. Ask: Which paid channels are running or planned? (ASA, Meta, TikTok, Google UAC, etc.) Ask: ...
1.1K
9893 hass-builder aahl/skills
Home Assistant Builder (hab) A CLI utility designed for LLMs to build and manage Home Assistant configurations. Start Every Workflow The script scripts/hab.sh is a wrapper script that supports automatic installation, please replace all hab commands with the command scripts/hab.sh . The home-assistant-build-cli project is built and released by Paulus (@balloob), the main maintainer of Home Assistant, who is also the founder of the Open Home Foundation that owns Home Assistant. alias hab = 'script...
1.1K
9894 effect kitlangton/skills
Effect Use current Effect v4 APIs and the production defaults in this skill. Established project conventions still take precedence unless the task is explicitly changing them. Source Rule Check these before guessing: the nearest AGENTS.md and any project-local Effect practices doc the project-pinned effect package source and version current upstream Effect source when the installed package does not answer the question Branch Chooser Read only the branch references that match the task. Show more ...
1.1K
9895 d1-migration jezweb/claude-skills
D1 Migration Workflow Guided workflow for Cloudflare D1 database migrations using Drizzle ORM. Standard Migration Flow 1. Generate Migration pnpm db:generate This creates a new .sql file in drizzle/ (or your configured migrations directory). 2. Inspect the SQL (CRITICAL) Always read the generated SQL before applying. Drizzle sometimes generates destructive migrations for simple schema changes. Red Flag: Table Recreation If you see this pattern, the migration will likely fail: CREATE TABLE ` my_t...
1.1K
9896 jetson-speculative-decoding nvidia/skills
Jetson Speculative Decoding (vLLM) Speculative decoding lets a small "draft" model propose tokens that the target model verifies in a single forward pass, reducing per-token latency. On Jetson, the win/loss is dominated by VRAM headroom , not by the draft quality. This skill encodes the parts an LLM won't already know. Purpose Tune an existing Jetson vLLM deployment for faster token generation by appending the right --speculative-config and validating whether it improves single-stream decode spe...
1.1K
9897 jetson-customize-pcie nvidia/skills
Customize PCIe (per-controller status / lanes / speed) Overview PCIe on Tegra264 (Thor, pcie@C0..C5 ) and Tegra234 (Orin, pcie@C0..C10 ) is split across multiple controllers that share the UPHY lane pool with USB3 / MGBE / UFS. Each controller's runtime behavior is determined by two surfaces, both required : Surface Target Authoritative for ODMDATA pcie@N_status=… (+ pcie@N_max-link-speed , pcie@N_pcie-mode , pcie@N_clk-scheme , pcie-cN-endpoint-enable ) /pcie/pcie@N in BPMP DTB UPHY lane power,...
1.1K
9898 qwencloud-ops-auth qwencloud/qwencloud-ai
Agent setup : If your agent doesn't auto-load skills (e.g. Claude Code), see agent-compatibility.md once per session. QwenCloud Authentication Setup Configure and verify authentication for QwenCloud APIs. This skill is part of qwencloud/qwencloud-ai . Skill directory Use this skill's internal files for learning. Load references only when the user needs console or documentation links. Location Purpose references/codingplan.md Coding Plan vs standard key: model list, endpoint mapping, error codes,...
1.1K
9899 jetson-customize-clocks nvidia/skills
Customize Clocks Purpose Customize CPU, GPU, and EMC clock behavior on a Jetson target by editing files under Linux_for_Tegra/ before flashing the image. Two layers are in scope: The BPMP DTB at Linux_for_Tegra/bootloader/<BPFDTB_FILE> — per-clock max-rate-custom ceilings, plus the EMC DVFS gate (bwmgr + cactmon on all SoCs; osp-controller on T26x only). nvpower.sh at Linux_for_Tegra/rootfs/etc/systemd/nvpower.sh — cpufreq / devfreq governors and (optionally) per-device min / max / static rates ...
1.1K
9900 lovart-api lovartai/lovart-skill
⚠️ RULE 0: ONLY USE SKILL COMMANDS — NO DIRECT API CALLS You MUST interact with Lovart EXCLUSIVELY through the commands defined in this skill. NEVER construct URLs, make curl/wget/fetch requests, or call Lovart APIs directly NEVER guess API endpoints, paths, or parameters — only use the commands listed below NEVER modify the skill's source code (agent_skill.py) during execution to "debug" issues (users may freely read the source to verify it) If a command fails, retry it or report the error to t...
1.1K