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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
20,000
总 Skills
16.0M
总安装量
2,338
贡献者
# Skill 仓库 描述 安装量
15101 blog-post-writer nicknisi/claude-plugins
Nick Nisi Blog Writer Transform unstructured brain dumps into polished blog posts that sound like Nick Nisi. Process 1. Receive the Brain Dump Accept whatever the user provides: Scattered thoughts and ideas Technical points to cover Code examples or commands Conclusions or takeaways Links to reference Random observations Don't require organization. The mess is the input. Clarify constraints (if not provided, ask about): Target length (see references/post-template.md for word count ranges) Target...
49
15102 authentication mgd34msu/goodvibes-plugin
Authentication Implement authentication flows on iOS using the AuthenticationServices framework, including Sign in with Apple, OAuth/third-party web auth, Password AutoFill, and biometric authentication. Contents Sign in with Apple Credential Handling Credential State Checking Token Validation Existing Account Setup Flows ASWebAuthenticationSession (OAuth) Password AutoFill Credentials Biometric Authentication SwiftUI SignInWithAppleButton Common Mistakes Review Checklist References Sign in with...
49
15103 react-doctor posthog/posthog
React Doctor Scans your React codebase for security, performance, correctness, and architecture issues. Outputs a 0-100 score with actionable diagnostics. Usage npx -y react-doctor@latest . --verbose --diff Workflow Run after making changes to catch issues early. Fix errors first, then re-run to verify the score improved.
49
15104 tmux-status-debug edmundmiller/dotfiles
Debugging tmux-opencode-integrated Status Detection When to Use Status icons showing wrong state (e.g., showing ERROR when agent is IDLE) Adding new patterns for agent detection Testing pattern matching against real pane content Quick Commands List all agent panes tmux list-panes -a -F "{session_name}:{window_name}.{pane_index} {pane_current_command}" | grep -E "opencode|claude|amp" Capture pane content (raw) tmux capture-pane -t "main:1" -p -S -30 | tail -40 Capture with control chars visible t...
49
15105 atlassian-admin borghei/claude-skills
Atlassian Administrator Expert System administrator with deep expertise in Atlassian Cloud/Data Center management, user provisioning, security, integrations, and org-wide configuration and governance. Core Competencies User & Access Management Provision and deprovision users across Atlassian products Manage groups and group memberships Configure SSO/SAML authentication Implement role-based access control (RBAC) Audit user access and permissions Product Administration Configure Jira global settin...
49
15106 scoped-apps groeimetai/snow-flow
Scoped applications provide isolation and portability for custom development in ServiceNow. Why Use Scoped Apps? | Naming conflicts | Possible | Prevented (x_prefix) | Portability | Difficult | Easy (Update Sets) | Security | Open | Controlled (Cross-scope) | Store publishing | No | Yes | Dependencies | Implicit | Explicit Creating a Scoped Application Via Studio (Recommended) ``` 1. Navigate: System Applications > Studio 2. Click: Create Application 3. Enter: - Nam...
49
15107 pinocchio-development sendaifun/skills
Pinocchio Development Guide Build blazing-fast Solana programs with Pinocchio - a zero-dependency, zero-copy framework that delivers 88-95% compute unit reduction and 40% smaller binaries compared to traditional approaches. Overview Pinocchio is Anza's minimalist Rust library for writing Solana programs without the heavyweight solana-program crate. It treats incoming transaction data as a single byte slice, reading it in-place via zero-copy techniques. Performance Comparison Metric Anchor Native...
49
15108 github-copilot vm0-ai/vm0-skills
GitHub Copilot API Use the GitHub Copilot REST API via direct curl calls to manage Copilot subscriptions and retrieve usage metrics for your organization. Official docs: https://docs.github.com/en/rest/copilot Note: This API is for managing Copilot subscriptions and viewing metrics, not for code generation. When to Use Use this skill when you need to: Manage Copilot seat assignments (add/remove users and teams) View Copilot billing information for an organization Retrieve usage metrics (ac...
49
15109 ljg-xray-book lijigang/ljg-skill-xray-book
LJG-Xray-Book: 深度拆书机 你是 Structure_Miner (结构矿工) ,一位深谙认知科学的知识提取专家。 核心哲学:Epiplexity 原理 来自论文《From Entropy to Epiplexity》的核心洞见: +------------------------------------------------------------------+ | 传统观点:信息是数据的固有属性 | | Epiplexity:信息是相对的,取决于观察者的"认知算力" | +------------------------------------------------------------------+ | | | 同一本书 = 可学习的结构(S) + 不可学习的噪声(N) | | ...
49
15110 shader-sdf bbeierle12/skill-mcp-claude
Shader SDFs Signed Distance Functions return the distance from a point to a shape's surface. Negative = inside, positive = outside, zero = on surface. Quick Start // 2D circle SDF float sdCircle(vec2 p, float r) { return length(p) - r; } // Usage float d = sdCircle(uv - 0.5, 0.3); // Render vec3 color = d < 0.0 ? vec3(1.0) : vec3(0.0); // Hard edge vec3 color = vec3(smoothstep(0.01, 0.0, d)); // Soft edge vec3 color = vec3(smoothstep(0.02, 0.0, abs(d))); // Outli...
49
15111 instagram-automation davepoon/buildwithclaude
Instagram Automation via Rube MCP Automate Instagram operations through Composio's Instagram toolkit via Rube MCP. Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Instagram connection via RUBE_MANAGE_CONNECTIONS with toolkit instagram Always call RUBE_SEARCH_TOOLS first to get current tool schemas Instagram Business or Creator account required (personal accounts not supported) Setup Get Rube MCP : Add https://rube.app/mcp as an MCP server in your client configuratio...
49
15112 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...
49
15113 weather-skill google/adk-python
Weather Skill Provides current weather and forecasts for any location using two free APIs: Nominatim (OpenStreetMap) for geocoding locations → scripts/geocode.py Open-Meteo for weather data → scripts/fetch_weather.py Workflow Understand the user's request. Extract the location, time range, and whether they're planning travel. See examples below. Geocode the location by running scripts/geocode.py "<location>" . It returns JSON with display_name , lat , lon , and an ambiguous flag. If ambiguous, a...
49
15114 game-system-designer api/git
No SKILL.md available for this skill. View on GitHub
49
15115 nixos-best-practices lihaoze123/my-skills
Configure NixOS systems with flakes, manage overlays properly, and structure configurations for maintainability. Core Principle Understand the interaction between NixOS system configuration and Home Manager overlays. When `useGlobalPkgs = true`, overlays must be defined at the NixOS configuration level, not in Home Manager configuration files. When to Use - Configuring NixOS with flakes and Home Manager - Adding overlays that don't seem to apply - Using `useGlobalPkgs = true` with custo...
49
15116 do cexll/myclaude
Do Plan You are an ORCHESTRATOR. Deploy subagents to execute all work. Do not do the work yourself except to coordinate, route context, and verify that each subagent completed its assigned checklist. Execution Protocol Rules Each phase uses fresh subagents where noted (or when context is large/unclear) Assign one clear objective per subagent and require evidence (commands run, outputs, files changed) Do not advance to the next step until the assigned subagent reports completion and the orchestra...
49
15117 finops-caches laurigates/claude-plugins
/finops:caches Analyze GitHub Actions cache usage - size breakdown, cache key patterns, branch distribution, and stale cache detection. Context Current repo: ! gh repo view --json nameWithOwner --jq '.nameWithOwner' Repo owner: ! gh repo view --json owner --jq '.owner.login' Parameters Parameter Description Default repo Repository in owner/name format Current repository org:orgname Analyze org-wide cache usage - Execution bash " ${SKILL_DIR} /scripts/cache-analysis.sh" $ARGS Output Format === Ca...
49
15118 marketing-email-automation vasilyu1983/ai-agents-public
Built as a no-fluff execution skill for email marketing automation across B2B and B2C. Structure: Core workflows and segmentation in SKILL.md. Platform setup in `references/`. Revenue economics in `references/email-economics.md`. Templates in `assets/`. Modern Best Practices (January 2026) 2026 Email Landscape | SPF/DKIM/DMARC mandatory | Non-authenticated mail blocked | Audit quarterly, not just at setup | BIMI adoption | 38% higher opens, 120% brand recall | Implement verified logo...
49
15119 influencer finder eddiebe147/claude-settings
Influencer Finder Discover and evaluate influencers who can authentically represent your brand to their engaged audiences. This skill helps you identify the right creators, assess their fit, evaluate their metrics, and structure partnerships that deliver results. Influencer marketing works when you find the right match. This skill provides frameworks for influencer discovery, audience alignment analysis, engagement rate calculation, and partnership structure. Move beyond follower counts to find ...
49
15120 tailwind-refactor pproenca/dot-skills
Community Tailwind CSS Refactoring Best Practices Comprehensive code quality refactoring guide for Tailwind CSS applications targeting v4. Contains 50 rules across 8 categories, prioritized by migration urgency. Every transformation preserves the existing look and feel — this skill is purely about cleaner code, modern syntax, and v4 compatibility. Companion skills: Use tailwind-ui-refactor for visual design improvements and tailwind-responsive-ui for responsive layout patterns. When to Apply Bef...
49
15121 cybersecurity omer-metin/skills-for-antigravity
Cybersecurity Identity You're a security engineer who has protected systems handling millions of users and billions in transactions. You've responded to breaches, conducted penetration tests, and built security programs from the ground up. You understand that security is about risk management, not elimination—and you know how to communicate risk to stakeholders. You've seen every OWASP Top 10 vulnerability in the wild and know how to prevent them. You believe in automation, defense in depth, an...
49
15122 pattern-dev commontoolsinc/labs
Use Skill("ct") for ct CLI documentation when running commands. You and the user are a team finding the efficient path to their vision. Always Plan First Use EnterPlanMode before building. Scale the plan to the task: Simple pattern (todo list, counter): One file, types + handlers + UI together Minimal clarification needed Plan in 2-3 sentences Medium pattern (form with validation, data viewer): Maybe split schemas if types get complex Clarify data shape and key actions Plan in a short list Compl...
49
15123 writing-python julianobarbosa/claude-code-skills
$ npx skills add https://github.com/julianobarbosa/claude-code-skills --skill writing-python<div
49
15124 financial reporter eddiebe147/claude-settings
Financial Reporter Generate comprehensive financial reports that tell the story of your business. From P&L statements to cash flow analysis, create reports that inform decisions. Core Workflows Workflow 1: P&L Statement Revenue Collection - Gather all revenue streams Expense Categorization - Organize costs by category Gross Margin - Calculate gross profit Operating Expenses - Deduct operating costs Net Income - Calculate bottom line Variance Analysis - Compare to budget/prior period Workflow 2: ...
49
15125 pattern-schema commontoolsinc/labs
Use Skill("ct") for ct CLI documentation when running commands. Schema Design Phase Goal Create schemas.tsx with all data types and Input/Output types BEFORE any pattern code. Read First docs/common/concepts/types-and-schemas/default.md docs/common/concepts/types-and-schemas/writable.md docs/common/concepts/pattern.md (Input/Output section) Rules ALWAYS use pattern<Input, Output>() - Never use single-type pattern<State>() . Single-type patterns cannot be tested via .send() . Every editable field...
49
15126 pica picahq/skills
Pica — Universal Integrations for AI Pica gives your AI agent the ability to interact with 200+ third-party platforms — Gmail, Slack, HubSpot, Stripe, Notion, Linear, and more. The user has already installed the Pica CLI and run pica init , so the MCP server is configured and ready. Your job: whenever the user needs to work with an external platform or integration, use Pica. When This Skill Activates Step 1: Check what's connected Immediately call the list_pica_integrations MCP tool to see: Whic...
49
15127 data-pipelines kylelundstedt/dotfiles
You are building data pipelines. The general pattern is ingest (get data in) → transform (clean, model, join) → query (analyze) → explore (notebooks, apps, visualizations). The specific tools for each step depend on the project. Preferred defaults: Step Preferred Tool Alternatives Ingest dlt Plain Python scripts, shell + curl, custom connectors Transform sqlmesh Plain SQL scripts, dbt, Python scripts Query engine DuckDB / MotherDuck — DataFrames polars — Notebooks marimo — Project mgmt uv — Lang...
49
15128 nuxt studio secondsky/claude-skills
Nuxt Studio Setup and Deployment Overview Nuxt Studio is a free, open-source visual content editor for Nuxt Content websites that enables content editing directly in production. It provides multiple editor types (Monaco code editor, TipTap visual WYSIWYG editor, Form-based editor), OAuth authentication (GitHub/GitLab/Google), and Git-based content management with commit integration. Primary use case : Add visual CMS capabilities to existing Nuxt Content websites, typically deployed to a subdomai...
49
15129 analytics-clear laurigates/claude-plugins
/analytics:clear Reset all analytics data, removing tracking history and statistics. Context Check if analytics data exists: ANALYTICS_DIR = " ${ HOME } /.claude-analytics" if [ [ -d " ${ANALYTICS_DIR} " ] ] ; then SUMMARY_FILE = " ${ANALYTICS_DIR} /summary.json" if [ [ -f " ${SUMMARY_FILE} " ] ] ; then TOTAL = $( cat " ${SUMMARY_FILE} " | jq -r '.total_invocations // 0' ) SINCE = $( cat " ${SUMMARY_FILE} " | jq -r '.tracking_since // "unknown"' ) echo "Current analytics: ${TOTAL} invocations si...
49
15130 finops-compare laurigates/claude-plugins
/finops:compare Compare GitHub Actions FinOps metrics across multiple repositories - cache usage, workflow frequency, failure rates, and efficiency. Parameters Parameter Description Default org GitHub organization name (required) - repos... Space-separated list of repo names All org repos --limit N Limit auto-discovery to N repos 30 Usage Examples Compare specific repos /finops:compare myorg repo1 repo2 repo3 Compare all repos in org (up to 30) /finops:compare myorg Compare more repos /finops...
49
15131 implement-frontend mblode/agent-skills
Implement Frontend Apply this skill when the repository already follows this stack: React + TypeScript + Next.js React Hook Form + Zod React Query or Connect Query Proto-generated API types (when present) If local conventions differ, preserve existing project standards and apply only the transferable principles. Core workflow Set ownership boundaries before editing. Keep render-only concerns in components. Keep fetching, mapping, and business rules in hooks. Keep server state in query cache, for...
49
15132 daisy-ui dejanvasic85/williamstownsc
daisy-ui Instructions Follow documentation from ./llms.txt to produce code that uses DaisyUI components and themes according to the project's tech stack and coding standards outlined in the main CLAUDE.md file. Theme Customization Configure DaisyUI theme in tailwind.config.js for Williamstown SC brand identity: Primary Colors primary : 062174 (Club blue - traditional, trustworthy) secondary : DEB100 (Club yellow/gold - energy, visibility) accent : 10B981 (Green - soccer field aesthetic) neutral ...
49
15133 ralph ralphcrisostomo/nuxt-development-skills
ralph (Ouroboros) — Specification-First AI Development Stop prompting. Start specifying. "The beginning is the end, and the end is the beginning." The serpent doesn't repeat — it evolves. When to use this skill Before writing any code — expose hidden assumptions with Socratic interviewing Long-running tasks that need autonomous iteration until verified Vague requirements — crystallize them into an immutable spec (Ambiguity ≤ 0.2) Tasks requiring guaranteed completion — loop until verification pa...
49
15134 all-in-one-ui-ux-design luisjppm/skills
All-in-One UI/UX Design Use this skill as the default end-to-end UI/UX system. Keep this file focused on workflow. Load reference files only when needed. Goal: deliver memorable interfaces that are production-ready, accessible, and maintainable. Start Here Collect the minimum context before generating or reviewing code: Product context: product type, audience, tone, and brand constraints. Scope: full page/app, component set, redesign, or UI audit. Platform and stack: web/mobile + framework/libra...
49
15135 commit-message-formatter jeremylongshore/claude-code-plugins-plus-skills
Commit Message Formatter Purpose This skill provides automated assistance for commit message formatter tasks within the DevOps Basics domain. When to Use This skill activates automatically when you: Mention "commit message formatter" in your request Ask about commit message formatter patterns or best practices Need help with foundational devops skills covering version control, containerization, basic ci/cd, and infrastructure fundamentals. Capabilities Provides step-by-step guidance for comm...
49
15136 deploy-release laurigates/claude-plugins
Release Setup Command Set up release-please release automation Manifest based release Configure to update release number in all relevant files using the extra-files directive
49
15137 1k-platform-requirements onekeyhq/app-monorepo
OneKey Platform Requirements Device Compatibility Check When user asks if their device can run app-monorepo, run the environment check to verify all required tools are installed with correct versions. Important : Xcode, CocoaPods, and Ruby are macOS only tools required for iOS development. On non-macOS systems, skip these checks. Auto-detect and Check Environment First, detect the operating system: uname -s If output is Darwin → macOS, check ALL tools including Xcode/CocoaPods If output is Linux...
49
15138 bilibili-chapter-generator nanmicoder/claude-code-skills
B站视频章节生成器 根据字幕内容为 B站视频生成章节列表,用户可直接复制到 B站视频编辑页面。 B站章节格式规范 00:00 引言 01:23 第一部分标题 05:30 第二部分标题 格式要求(B站硬性限制): 第一个章节必须从 00:00 开始 (这是强制要求) 章节数量:3-10 个 (必须 > 2 且 ≤ 10) 章节标题不能包含特殊符号 (禁止使用 : : 、 , 。 ! ? 【】 () 等) 时间格式: MM:SS (分:秒)或 HH:MM:SS (时:分:秒) 每行一个章节: 时间戳 章节标题 章节间隔必须 ≥ 5 秒 工作流程 Step 1: 获取 SRT 文件 询问用户 SRT 字幕文件路径,或从上下文中获取。 Step 2: 解析字幕内容 调用 srt-to-structured-data skill 解析字幕: python3 ~/.claude/skills/srt-to-structured-data/scripts/parse_srt.py "<srt_file_path>" --stats 这会输出: 字幕的 JSON 结构(包含时间码和文本) 统计信息(总...
49
15139 fusion-issue-author-bug equinor/fusion-skills
Author Bug Issue Dependency Requires fusion-issue-authoring as the top-level orchestrator for classification, shared gates, and publish flow. When to use Use this skill when the request is about broken behavior, regressions, crashes, or unexpected results. When not to use Do not use this skill for feature requests, user stories, or generic enablement tasks. Required inputs Bug context (observed behavior, expected behavior, impact) Reproduction information (if available) Environment context Instr...
49
15140 validating-performance-budgets jeremylongshore/claude-code-plugins-plus-skills
Performance Budget Validator This skill provides automated assistance for performance budget validator tasks. Overview This skill allows Claude to automatically validate your application's performance against predefined budgets. It helps identify performance regressions and ensures your application maintains optimal performance characteristics. How It Works Analyze Performance Metrics: Claude analyzes current performance metrics, such as page load times, bundle sizes, and API response times....
49
15141 abm-specialist dengineproblem/agents-monorepo
Account-Based Marketing Specialist Strategic expertise in account-based marketing for enterprise growth. Core Competencies ABM Strategy Account selection Tier definition Persona mapping Play development Sales alignment Campaign Orchestration Multi-channel coordination Personalization at scale Timing and sequencing Content mapping Touchpoint optimization Measurement Account engagement scoring Pipeline attribution ABM ROI Coverage metrics Influence tracking ABM Tier Framework Tier 1: Strategic (1:...
49
15142 pitch deck creator eddiebe147/claude-settings
Pitch Deck Creator Expert pitch deck creation system that helps you craft compelling investor presentations that tell your story, demonstrate traction, and secure funding. This skill provides proven frameworks for pitch deck structure, slide design, and storytelling based on successful fundraises from top accelerators and venture capital firms. Your pitch deck is often your first impression with investors. This skill helps you distill your business into a clear, compelling narrative that capture...
49
15143 institutional-flow-tracker nicepkg/ai-workflow
Institutional Flow Tracker Overview This skill tracks institutional investor activity through 13F SEC filings to identify "smart money" flows into and out of stocks. By analyzing quarterly changes in institutional ownership, you can discover stocks that sophisticated investors are accumulating before major price moves, or identify potential risks when institutions are reducing positions. Key Insight: Institutional investors (hedge funds, pension funds, mutual funds) manage trillions of dollars a...
49
15144 objection-pattern-detector onewave-ai/claude-skills
Objection Pattern Detector Mine lost deal notes to identify recurring objection patterns. Create objection response playbooks from won deals. Instructions You are an expert at objection handling and sales enablement. Analyze lost deals, identify objection patterns, and create proven response frameworks from winning deals. Output Format Objection Pattern Detector Output Generated: {timestamp} --- Results [Your formatted output here] --- Recommendations [Actionable next steps] Best...
49
15145 github-project-management proffesor-for-testing/agentic-qe
GitHub Project Management Overview A comprehensive skill for managing GitHub projects using AI swarm coordination. This skill combines intelligent issue management, automated project board synchronization, and swarm-based coordination for efficient project delivery. Quick Start Basic Issue Creation with Swarm Coordination Create a coordinated issue gh issue create \ --title "Feature: Advanced Authentication" \ --body "Implement OAuth2 with social login..." \ --label "enhancement,swarm-ready" I...
49
15146 social caption writer eddiebe147/claude-settings
Social Caption Writer Write platform-specific social media captions that drive engagement and conversions When to Use This Skill Use this skill when you need to: Create compelling written content Develop clear messaging and communication Structure information effectively Not recommended for: Tasks requiring technical implementation complex data analysis Quick Reference Action Command/Trigger Create social caption writer social caption Review and optimize review social caption writer Get best pra...
49
15147 tiktok-automation davepoon/buildwithclaude
TikTok Automation via Rube MCP Automate TikTok content creation and profile operations through Composio's TikTok toolkit via Rube MCP. Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active TikTok connection via RUBE_MANAGE_CONNECTIONS with toolkit tiktok Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works. Verify ...
49
15148 managing-git cloudai-x/claude-workflow-v2
Copy this checklist and track progress: ``` Feature Development Progress: - [ ] Step 1: Create feature branch from main - [ ] Step 2: Make changes with atomic commits - [ ] Step 3: Rebase on latest main - [ ] Step 4: Push and create PR - [ ] Step 5: Address review feedback - [ ] Step 6: Merge after approval ``` Branching Strategies GitHub Flow (Recommended for most projects) ``` main ──●────●────●────●────●── (always deployable) \ / feature └──●──●──┘ ``` - `main` is a...
49
15149 resolve-reviews pbakaus/agent-reviews
Automatically resolve all review comments (both human and bot) on the current PR. Uses a two-phase workflow: fix all existing issues, then poll for new ones until quiet. Prerequisites All commands below use npx agent-reviews . If the project uses a different package manager, substitute the appropriate runner (e.g., pnpm dlx agent-reviews for pnpm, yarn dlx agent-reviews for Yarn, bunx agent-reviews for Bun). Honor the user's package manager preference throughout. Cloud environments only (e.g., C...
49
15150 1k-feature-guides onekeyhq/app-monorepo
Feature Development Guides Comprehensive guides for extending OneKey app functionality. Quick Reference Feature Guide Key Files Add blockchain chain adding-chains.md packages/core/src/chains/ Add WebSocket events adding-socket-events.md packages/shared/types/socket.ts Push notifications notification-system.md packages/kit-bg/src/services/ServiceNotification/ Pages & routes page-and-route.md packages/kit/src/routes/ Adding New Chains See: references/rules/adding-chains.md Key steps: Implement cha...
49