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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
27,443
总 Skills
161.7M
总安装量
2,742
贡献者
# Skill 仓库 描述 安装量
22451 review-scoring mgd34msu/goodvibes-plugin
Resources scripts/ validate-review.sh validate-fix.sh references/ scoring-examples.md Review Scoring Protocol This skill defines the precise scoring rubric and review format used in Work-Review-Fix-Check (WRFC) loops. It ensures consistent, quantified evaluation of code quality and provides deterministic validation of review outputs. Scoring Rubric (1-10 Scale) Every review evaluates code across 10 dimensions. Each dimension receives a score from 1 to 10, where: 1-3 : Critical deficiencies, fund...
49
22452 coding-rules kimny1143/claude-code-template
coding-rules - コーディング規約 プロジェクト共通のコーディングルール。 1. TypeScript 型定義 // ✅ 明示的な型定義 interface User { id : string ; email : string ; name : string ; createdAt : Date ; } // ✅ 型推論が明確な場合は省略OK const users = await repository . findAll ( ) ; // 戻り値の型は関数から推論 // ❌ any は使わない const data : any = response . json ( ) ; // ✅ unknown を使って安全に処理 const data : unknown = await response . json ( ) ; if ( isUser ( data ) ) { console . log ( data . email ) ; } Null/Undefined // ✅ Optional chaining const email = user ?. profile...
49
22453 anti-ai-writing cdeistopened/skill-stack
Anti-AI Writing Engine Transform any content into authentic, human-sounding prose by eliminating AI patterns and applying proven writing fundamentals. Purpose This skill serves as the core humanization engine for all written content. It detects and eliminates patterns that signal AI involvement while teaching the principles of natural, engaging writing. Core Philosophy: The best writing is invisible. Readers should feel like they're reading a real person's thoughts - not processed, filtered, or ...
49
22454 slot-teams cartridge-gg/docs
Slot Teams Teams are the billing entity in Slot. They own credits used to pay for deployments, paymasters, RPC requests, and other services. Credit System Prepaid credits, deducted automatically 1 CREDIT = $0.01 USD Daily billing cycle (minimum 1-day charge) Fund via credit card or cryptocurrency Creating a Team slot teams < team-name > create --email < email > [ --address "address" ] [ --tax-id "id" ] A team is also auto-created when you create a deployment with a new project name. Funding slot...
49
22455 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
22456 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
22457 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
22458 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
22459 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
22460 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
22461 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
22462 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
22463 ljg-xray-book lijigang/ljg-skill-xray-book
LJG-Xray-Book: 深度拆书机 你是 Structure_Miner (结构矿工) ,一位深谙认知科学的知识提取专家。 核心哲学:Epiplexity 原理 来自论文《From Entropy to Epiplexity》的核心洞见: +------------------------------------------------------------------+ | 传统观点:信息是数据的固有属性 | | Epiplexity:信息是相对的,取决于观察者的"认知算力" | +------------------------------------------------------------------+ | | | 同一本书 = 可学习的结构(S) + 不可学习的噪声(N) | | ...
49
22464 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
22465 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
22466 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
22467 game-system-designer api/git
No SKILL.md available for this skill. View on GitHub
49
22468 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
22469 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
22470 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
22471 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
22472 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
22473 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
22474 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
22475 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
22476 writing-python julianobarbosa/claude-code-skills
$ npx skills add https://github.com/julianobarbosa/claude-code-skills --skill writing-python<div
49
22477 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
22478 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
22479 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
22480 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
22481 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
22482 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
22483 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
22484 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
22485 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
22486 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
22487 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
22488 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
22489 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
22490 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
22491 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
22492 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
22493 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
22494 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
22495 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
22496 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
22497 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
22498 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
22499 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
22500 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