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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
24,454
总 Skills
90.8M
总安装量
2,582
贡献者
# Skill 仓库 描述 安装量
5251 security-alert-triage elastic/agent-skills
Alert Triage Analyze Elastic Security alerts one at a time: gather context, classify, create a case, and acknowledge. This skill depends on the case-management skill for case creation. Prerequisites Install dependencies before first use from the skills/security directory: cd skills/security && npm install Set the required environment variables (or add them to a .env file in the workspace root): export ELASTICSEARCH_URL = "https://your-cluster.es.cloud.example.com:443" export ELASTICSEARCH_API_KE...
1.1K
5252 auto-updater teylersf/openclaw-auto-updater
Auto-Updater Skill This skill keeps OpenClaw updated by running a nightly cron job that executes an external shell script — so the update works even when the gateway restarts. Quick Setup To enable auto-updates, say "set up auto-updater" and I'll: Copy the update script to your home folder Create a cron job that runs the script at 4 AM daily Why a Script? The agent can't run commands while the gateway is restarting. We use a standalone shell script that runs independently of the agent. The Updat...
1.1K
5253 zener-language diodeinc/pcb
Zener Language Use this skill as the semantics companion to idiomatic-zener for non-trivial .zen work. Workflow Start from nearby workspace code. Prefer the local package's patterns before generic examples. Open only the relevant reference file: references/language.md for modules, nets/interfaces, components, io() , config() , utilities, and tool-managed metadata references/packages.md for imports, workspace layout, manifests, dependencies, and pcb.sum references/stdlib.md for prelude, interface...
1.1K
5254 prompt-optimizer daymade/claude-code-skills
Prompt Optimizer Analyze a draft prompt, critique it, match it to ECC ecosystem components, and output a complete optimized prompt the user can paste and run. When to Use User says "optimize this prompt", "improve my prompt", "rewrite this prompt" User says "help me write a better prompt for..." User says "what's the best way to ask Claude Code to..." User says "优化prompt", "改进prompt", "怎么写prompt", "帮我优化这个指令" User pastes a draft prompt and asks for feedback or enhancement User says "I don't know ...
1.1K
5255 asc-localize-metadata rudrankriyam/asc-skills
asc localize metadata Use this skill to pull English (or any source locale) App Store metadata, translate it with LLM, and push translations back to App Store Connect — all automated. Command discovery and output conventions Always confirm flags with --help for the exact asc version: asc localizations --help asc localizations download --help asc localizations upload --help asc app-info set --help Prefer explicit long flags ( --app , --version , --version-id , --type , --app-info ). Default outpu...
1.1K
5256 sprint-plan phuryn/pm-skills
Sprint Planning Plan a sprint by estimating team capacity, selecting and sequencing stories, and identifying risks. Context You are helping plan a sprint for $ARGUMENTS . If the user provides files (backlogs, velocity data, team rosters, or previous sprint reports), read them first. Instructions Estimate team capacity : Number of team members and their availability (PTO, meetings, on-call) Historical velocity (average story points per sprint from last 3 sprints) Capacity buffer: reserve 15-20% f...
1.1K
5257 prioritize-assumptions phuryn/pm-skills
Prioritize Assumptions Triage assumptions using an Impact × Risk matrix and suggest targeted experiments. Context You are helping prioritize assumptions for $ARGUMENTS . If the user provides files with assumptions or research data, read them first. Domain Context ICE works well for assumption prioritization: Impact (Opportunity Score × Customers) × Confidence (1–10) × Ease (1–10). Opportunity Score = Importance × (1 − Satisfaction), normalized to 0–1 (Dan Olsen). RICE splits Impact into Reach ×...
1.1K
5258 ansoff-matrix phuryn/pm-skills
Ansoff Matrix Metadata Name : ansoff-matrix Description : Generate an Ansoff Matrix analysis mapping growth strategies across market penetration, market development, product development, and diversification. Triggers : Ansoff matrix, growth matrix, market expansion, growth strategy options Instructions You are a growth strategist analyzing expansion opportunities using the Ansoff Matrix for $ARGUMENTS. Your task is to evaluate growth options across product and market dimensions and develop speci...
1.1K
5259 provider-docs hashicorp/agent-skills
Terraform Provider Docs Follow This Workflow Confirm scope and documentation targets. Map code changes to the exact doc targets: provider index, resources, data sources, ephemeral resources, list resources, functions, or guides. Decide whether content should come from schema descriptions, templates, or both. Write schema descriptions first. Add precise user-facing descriptions to schema fields so generated docs stay aligned with behavior. Keep wording specific to argument purpose, constraints, d...
1.1K
5260 prompt-master nidhinjs/prompt-master
PRIMACY ZONE — Identity, Hard Rules, Output Lock Who you are You are a prompt engineer. You take the user's rough idea, identify the target AI tool, extract their actual intent, and output a single production-ready prompt — optimized for that specific tool, with zero wasted tokens. You NEVER discuss prompting theory unless the user explicitly asks. You NEVER show framework names in your output. You build prompts. One at a time. Ready to paste. Hard rules — NEVER violate these NEVER output a prom...
1.1K
5261 security-detection-rule-management elastic/agent-skills
Detection Rule Management Create new detection rules for emerging threats and coverage gaps, and tune existing rules to reduce false positives. All operations use the Kibana Detection Engine API via rule-manager.js . Execution rules Start executing tools immediately — do not read SKILL.md, browse the workspace, or list files first. Report tool output faithfully. Copy rule IDs, names, alert counts, exception IDs, and error messages exactly as returned by the API. Do not abbreviate rule UUIDs, inv...
1.1K
5262 security-case-management elastic/agent-skills
Case Management Manage SOC cases through the Kibana Cases API. All cases are scoped to securitySolution — this skill operates exclusively within Elastic Security. Cases appear in Kibana Security and can be assigned to analysts, linked to alerts, and pushed to external incident management systems via connectors. Prerequisites Install dependencies before first use from the skills/security directory: cd skills/security && npm install Set the required environment variables (or add them to a .env fil...
1.1K
5263 autoresearch uditgoenka/autoresearch
Autoresearch: Autonomous Iterative Experimentation An autonomous experimentation loop for any programming task. You define the goal and how to measure it; the agent iterates autonomously -- modifying code, running experiments, measuring results, and keeping or discarding changes -- until interrupted. This skill is inspired by Karpathy's autoresearch , generalized from ML training to any programming task with a measurable outcome . Agent Behavior Rules DO guide the user through the Setup phase in...
1.1K
5264 grafana-oss grafana/skills
Grafana OSS Docs : https://grafana.com/docs/grafana/latest/ Dashboard Provisioning provisioning/dashboards/default.yaml apiVersion : 1 providers : - name : default folder : MyFolder type : file disableDeletion : false updateIntervalSeconds : 30 options : path : /var/lib/grafana/dashboards foldersFromFilesStructure : true Show more
1.1K
5265 observability-manage-slos elastic/agent-skills
Service-Level Objectives (SLOs) Create and manage SLOs in Elastic Observability. SLOs track service performance against measurable targets using service-level indicators (SLIs) computed from Elasticsearch data. Authentication SLO operations go through the Kibana API. Authenticate with either an API key or basic auth: API key curl -H "Authorization: ApiKey <base64-encoded-key>" -H "kbn-xsrf: true" < KIBANA_URL > /api/observability/slos Basic auth curl -u " $KIBANA_USER : $KIBANA_PASSWORD " -H "...
1.1K
5266 resume-bullet-writer paramchoudhary/resumeskills
Resume Bullet Writer When to Use This Skill Use this skill when the user wants to: Write or improve resume bullet points Transform weak descriptions into strong achievements Add metrics and quantifiable results Make their experience more compelling Mentions: "improve my bullets", "make my resume stronger", "quantify my achievements", "results-driven" Also use when you see weak bullets that need improvement (passive language, no metrics, vague descriptions). Core Capabilities Show more
1.1K
5267 crash-analytics eronred/aso-skills
Crash Analytics You help triage, prioritize, and reduce app crashes — and understand how crash rate affects App Store discoverability and ratings. Why Crash Rate Is an ASO Signal App Store ranking — Apple's algorithm penalizes apps with high crash rates App Store featuring — High crash rate disqualifies editorial consideration Ratings — Crashes are the 1 cause of 1-star reviews Retention — A crash in the first session destroys Day 1 retention Target: crash-free sessions > 99.5% | crash-free user...
1.1K
5268 swift-architecture-skill efremidze/swift-architecture-skill
Swift Architecture Skill Overview Use this skill to pick the best Swift architecture playbook for SwiftUI/UIKit codebases and apply it to the user’s task. Workflow Step 1: Analyze the Request Context Before selecting an architecture, capture: task type (new feature, refactor, PR review, debugging) UI stack (SwiftUI, UIKit, or mixed) scope (single screen, multi-screen, app-wide) existing conventions to preserve Step 2: Select the Architecture If the user explicitly names an architecture, treat it...
1.1K
5269 windows-builder hashicorp/agent-skills
Platform-agnostic patterns for building Windows images with Packer. Reference: [Windows Builders](https://developer.hashicorp.com/packer/guides/windows) Note: Windows builds incur significant costs and time. Expect 45-120 minutes per build due to Windows Updates. Failed builds may leave resources running - always verify cleanup. WinRM Communicator Setup Windows requires WinRM for Packer communication. AWS Example ``` source "amazon-ebs" "windows" { region = "us-west-2" instanc...
1.1K
5270 ingesting-into-data-lake aws/agent-toolkit-for-aws
Ingest into Data Lake Move data from a source into a queryable table in the data lake. This skill assumes the source connection (if one is needed) already exists. For Glue connection setup or troubleshooting, delegate to connecting-to-data-source . Philosophy Default to S3 Tables unless the environment says otherwise. S3 Tables is the recommended target for new data lake work. If the user's catalog inventory shows they haven't adopted S3 Tables, recommend standard Iceberg on their existing gener...
1.1K
5271 azure-image-builder hashicorp/agent-skills
Build Azure managed images and Azure Compute Gallery images using Packer's `azure-arm` builder. Reference: [Azure ARM Builder](https://developer.hashicorp.com/packer/integrations/hashicorp/azure/latest/components/builder/arm) Note: Building Azure images incurs costs (compute, storage, data transfer). Builds typically take 15-45 minutes depending on provisioning and OS. Basic Managed Image ``` packer { required_plugins { azure = { source = "github.com/hashicorp/azure" vers...
1.1K
5272 fusion-issue-solving equinor/fusion-skills
Issue Solving Workflow When to use Use this skill when the user wants to solve or continue a GitHub issue end-to-end, including short current-repo prompts like solve 123 , direct GitHub issue URLs, or requests like lets work on https://github.com/owner/repo/issues/123 . Typical triggers: "lets solve 123" "solve 123" "work on 123" "lets work on https://github.com/owner/repo/issues/123 " " https://github.com/owner/repo/issues/123 " "continue work on issue 123" "implement issue 123 end-to-end" "wor...
1.1K
5273 in-app-events eronred/aso-skills
In-App Events You help the user plan, write, and optimize App Store In-App Events — event cards that surface in search, the Today tab, and the product page, driving installs and re-engagement without paid media. What In-App Events Are In-App Events are time-limited content cards on the App Store. They appear: Today tab (editorial + algorithmic) Search results (alongside app results) Your product page Personalized recommendations (for lapsed users) Key advantage: Existing users who haven't opened...
1.1K
5274 wps-excel lc2panda/wps-skills
WPS 表格智能助手 你现在是 WPS 表格智能助手,专门帮助用户解决 Excel 相关问题。你的存在是为了让那些被公式折磨的用户解脱,让他们用人话就能操作 Excel。 核心能力 1. 公式生成(P0 核心功能) 这是解决用户「公式不会写」痛点的核心能力: 查找匹配类 :VLOOKUP、XLOOKUP、INDEX+MATCH、LOOKUP 条件判断类 :IF、IFS、SWITCH、IFERROR 统计汇总类 :SUMIF、COUNTIF、AVERAGEIF、SUMIFS、COUNTIFS 日期时间类 :DATE、DATEDIF、WORKDAY、EOMONTH 文本处理类 :LEFT、RIGHT、MID、CONCATENATE、TEXT 2. 公式诊断 当用户公式报错时,分析原因并提供修复方案: REF! :引用了不存在的单元格或区域 N/A :查找函数未找到匹配值 VALUE! :参数类型错误 NAME? :函数名称错误或引用了未定义的名称 DIV/0! :除数为零 3. 数据清洗 去除前后空格(trim) 删除重复行(remove_duplicates) 删除空行(remove_e...
1.1K
5275 doc-coauthoring getsentry/skills
Doc Co-Authoring Workflow This skill provides a structured workflow for guiding users through collaborative document creation. Act as an active guide, walking users through three stages: Context Gathering, Refinement & Structure, and Reader Testing. When to Offer This Workflow Trigger conditions: User mentions writing documentation: "write a doc", "draft a proposal", "create a spec", "write up" User mentions specific doc types: "PRD", "design doc", "decision doc", "RFC" User seems to be starting...
1.1K
5276 qianwen-image-generation qianwen-ai/qianwen-ai
Agent setup : If your agent doesn't auto-load skills (e.g. Claude Code), see agent-compatibility.md once per session. Qwen Image Generation Generate and edit images using Wan and Qwen Image models. Supports text-to-image, reference-image editing (style transfer, subject consistency, multi-image composition, text rendering), and interleaved text-image output. This skill is part of QianWen-AI/qianwen-ai . Skill directory Use this skill's internal files to execute and learn. Load reference files on...
1.1K
5277 qianwen-vision qianwen-ai/qianwen-ai
No SKILL.md available for this skill. View on GitHub Installs 372 Repository qianwen-ai/qianwen-ai GitHub Stars 9 First Seen 9 days ago
1.1K
5278 creating-data-lake-table aws/agent-toolkit-for-aws
Create Data Lake Tables with Amazon S3 Tables Overview Amazon S3 Tables provides managed Iceberg tables with automatic compaction and snapshot management. Queryable via Athena and Iceberg-compatible engines. Common Tasks You MUST use AWS MCP server tools when connected, they provide command validation, sandboxed execution, and audit logging. Fall back to AWS CLI if MCP unavailable. Decision Guide Before creating, You MUST check what exists: You MUST run aws glue get-tables --database-name <NAME>...
1.1K
5279 retro phuryn/pm-skills
Sprint Retrospective Facilitator Run a structured retrospective that surfaces insights and produces actionable improvements. Context You are facilitating a retrospective for $ARGUMENTS . If the user provides files (sprint data, velocity charts, team feedback, or previous retro notes), read them first. Instructions Choose a retro format based on context (or let the user pick): Format A — Start / Stop / Continue : Start : What should we begin doing? Stop : What should we stop doing? Continue : Wha...
1.1K
5280 meegle larksuite/meegle-cli
飞书项目 (Meego/Meegle) 操作指南 本技能通过 Meegle CLI来操作飞书项目数据。输出语言跟随用户输入语言,默认中文。 各命令的调用示例见 references/api-examples.md 。 授权流程 (所有业务命令前必须执行):见 references/auth-guard.md CLI 使用指南 (命令结构、参数传递、命令发现):见 references/cli-guide.md Project 空间域 project search 搜索空间信息,将空间名转换为 project_key 或验证空间是否存在。 参数 类型 必填 说明 --project-key string 是 空间 projectKey、simpleName 或空间名称 WorkItem 工作项域 元数据查询命令( workitem meta-types / workitem meta-fields / workitem meta-roles / workitem meta-create-fields )的参数表见 references/workitem.md 。 workitem cre...
1.1K
5281 develop-ai-functions-example vercel/ai
AI Functions Examples The examples/ai-functions/ directory contains scripts for validating, testing, and iterating on AI SDK functions across providers. Example Categories Examples are organized by AI SDK function in examples/ai-functions/src/: Directory Purpose generate-text/ Non-streaming text generation with generateText() stream-text/ Streaming text generation with streamText() generate-object/ Structured output generation with generateObject() stream-object/ Streaming structured output ...
1.1K
5282 aws-lambda-typescript-integration giuseppe-trisciuoglio/developer-kit
AWS Lambda TypeScript Integration Patterns for creating high-performance AWS Lambda functions in TypeScript with optimized cold starts. Overview This skill provides complete patterns for AWS Lambda TypeScript development, covering two main approaches: NestJS Framework - Full-featured framework with dependency injection, modular architecture, and extensive ecosystem Raw TypeScript - Minimal overhead approach with maximum control and smaller bundle size Both approaches support API Gateway and ALB ...
1.1K
5283 aws-lambda-python-integration giuseppe-trisciuoglio/developer-kit
AWS Lambda Python Integration Patterns for creating high-performance AWS Lambda functions in Python with optimized cold starts and clean architecture. Overview This skill provides complete patterns for AWS Lambda Python development, covering two main approaches: AWS Chalice Framework - Full-featured framework with built-in routing, dependency injection, and local testing server Raw Python - Minimal overhead approach with maximum flexibility and control Both approaches support API Gateway and ALB...
1.1K
5284 nextjs-authentication giuseppe-trisciuoglio/developer-kit
Next.js Authentication Overview This skill provides comprehensive authentication patterns for Next.js 15+ applications using the App Router architecture and Auth.js 5. It covers the complete authentication lifecycle from initial setup to production-ready implementations with role-based access control. Key capabilities include: Auth.js 5 setup with Next.js App Router Protected routes using Middleware Session management in Server Components Authentication checks in Server Actions OAuth provider in...
1.1K
5285 qianwen-model-selector qianwen-ai/qianwen-ai
Agent setup : If your agent doesn't auto-load skills (e.g. Claude Code), see agent-compatibility.md once per session. Qwen Model Selector (Advisor) This skill operates in two modes: Interactive advisory — asks diagnostic questions to recommend the right model (see Diagnostic Flow). Cross-skill resolution — provides a fast-path model lookup for execution skills that need a model decision without user interaction (see recommendation-matrix.md ). Do not fabricate model names — only recommend models...
1.1K
5286 finding-data-lake-assets aws/agent-toolkit-for-aws
Find Data Lake Assets Overview Resolves data lake asset references to concrete catalog entries. Acts as a resolver for other skills and direct user requests. Covers Glue, S3, S3 Tables, and Redshift. Optimized for low token usage — return the answer fast and get out of the way. Constraints for parameter acquisition: You MUST accept a single argument: table name, keyword, column name, or S3 path You MUST accept the argument as direct input or a pointer to a file containing the spec You MUST ask f...
1.1K
5287 fusion-github-review-resolution equinor/fusion-skills
Resolve GitHub Review Comments When to use Use this skill when a pull request has unresolved inline review comments and you need a repeatable, auditable closure workflow. Typical triggers (skill should activate on all of these): URL patterns — activate immediately: https://github.com/<owner>/<repo>/pull/<number>pullrequestreview-<id> https://github.com/<owner>/<repo>/pull/<number> (when context implies review work) Explicit user requests: "Fix the review comments" "Address the review feedback on...
1.1K
5288 troubleshooting-s3-files aws/agent-toolkit-for-aws
Troubleshooting S3 Files Overview Diagnoses and resolves Amazon S3 Files issues: mount failures, IAM permissions, synchronization, conflict resolution, and performance. For authoritative guidance, see S3 Files Troubleshooting . Common Tasks 0. Verify Dependencies You MUST verify aws CLI is available with s3files subcommand support You MUST confirm valid AWS credentials You MUST ONLY check for tool existence and version — MUST NOT execute destructive or mutating commands during verification You M...
1.1K
5289 beachhead-segment phuryn/pm-skills
Beachhead Segment Overview Identify the first beachhead market segment for product launch. This skill evaluates potential market segments against key criteria to find your initial winning segment that enables fast PMF validation and adjacent expansion. When to Use Choosing a first market for your product Targeting an initial customer segment Planning initial market entry strategy Deciding where to focus limited resources Validating GTM assumptions with early adopters Key Evaluation Criteria 1. B...
1.1K
5290 security-generate-security-sample-data elastic/agent-skills
Generate Security Sample Data Generate ECS-compliant security events, multi-step attack scenarios, and synthetic alert documents that populate Elastic Security dashboards, the Alerts tab, and Attack Discovery. Quick start For a zero-friction experience that generates everything and opens Kibana: node skills/security/generate-security-sample-data/scripts/demo-walkthrough.js Workflow - [ ] Step 1: Set environment variables - [ ] Step 2: Generate sample data - [ ] Step 3: Explore in Kibana - [ ] St...
1.1K
5291 cmux-keyboard-shortcuts manaflow-ai/cmux
cmux-keyboard-shortcuts Use this skill to turn a user's workflow preferences into cmux shortcut bindings in ~/.config/cmux/cmux.json . It should guide the user, propose compact templates, apply selected changes, and confirm the config parses with recognized keys. Prerequisites Work from a cmux checkout or worktree root when possible. Use skills/cmux-settings/scripts/cmux-settings for every read/write. It reads JSONC, writes atomically, and validates JSON plus recognized settings keys. For action...
1.1K
5292 agent-platform-tuning-management google/skills
Agent Platform Tuning Management This skill provides instructions on how to manage GenAI Tuning Jobs using the Agent Platform Python SDK. Use this skill when a user wants to check the status of their tuning runs, find an active tuning job, or cancel a job that is running too long. Safety & Confirmation Tiers (CRITICAL) Before executing any commands on behalf of the user, you MUST adhere to the following safety tiers based on the action requested: Show more Installs 422 Repository google/skills G...
1.1K
5293 press-and-pr eronred/aso-skills
Press & PR for Apps You help indie developers and app teams get genuine media coverage — which drives installs, backlinks, and App Store credibility. Why Press Still Matters Web referral in App Store Connect directly tracks installs from press links Backlinks from high-authority sites (TechCrunch, The Verge) improve web presence Social proof — "As seen on…" on your product page improves conversion Apple editorial — press coverage increases editorial featuring consideration Organic amplification ...
1.1K
5294 wwas phuryn/pm-skills
Why-What-Acceptance (WWA) Create product backlog items in Why-What-Acceptance format. Produces independent, valuable, testable items with strategic context. Use when: Writing backlog items, creating product increments, breaking features into work items, or communicating strategic intent to teams. Arguments: $PRODUCT : The product or system name $FEATURE : The new feature or capability $DESIGN : Link to design files (Figma, Miro, etc.) $ASSUMPTIONS : Key assumptions and strategic context Step-by-...
1.1K
5295 ads-meta agricidaniel/claude-ads
Meta Ads Deep Analysis Process Collect Meta Ads data (Ads Manager export, Events Manager screenshot, EMQ scores) Read ads/references/meta-audit.md for full 46-check audit Read ads/references/benchmarks.md for Meta-specific benchmarks Read ads/references/scoring-system.md for weighted scoring Evaluate all applicable checks as PASS, WARNING, or FAIL Calculate Meta Ads Health Score (0-100) Generate findings report with action plan What to Analyze Pixel / CAPI Health (30% weight) Meta Pixel installe...
1.1K
5296 cloud-setup elastic/agent-skills
Cloud Environment Setup Configure Elastic Cloud authentication and preferences. All other cloud/* skills depend on this setup. Workflow Setup Progress: - [ ] Step 1: Verify API key - [ ] Step 2: Set defaults - [ ] Step 3: Validate connection Step 1: Verify API key Check whether EC_API_KEY is already set: echo " ${EC_API_KEY :? Not set} " If not set, instruct the user to set it. Never ask the user to paste an API key into the chat — secrets must not appear in conversation history. Direct the user...
1.1K
5297 opentelemetry grafana/skills
No SKILL.md available for this skill. View on GitHub Installs 629 Repository grafana/skills GitHub Stars 123 First Seen Apr 14, 2026
1.1K
5298 bambu-labs earthtojake/text-to-cad
Bambu Labs Provenance: maintained in earthtojake/text-to-cad . Use the installed local skill files as the runtime source of truth; the repository link is only for provenance and release review. Use this skill for local-network Bambu Lab print handoffs after a plain .gcode file already exists and has been validated. This skill does not slice models. Safety Rules Show more
1.1K
5299 deploying-omnistudio-datapacks forcedotcom/sf-skills
No SKILL.md available for this skill. View on GitHub Installs 465 Repository forcedotcom/sf-skills GitHub Stars 406 First Seen May 14, 2026
1.1K
5300 tailwind-design-system sickn33/antigravity-awesome-skills
Tailwind Design System (v4) Build production-ready design systems with Tailwind CSS v4, including CSS-first configuration, design tokens, component variants, responsive patterns, and accessibility. Note : This skill targets Tailwind CSS v4 (2024+). For v3 projects, refer to the upgrade guide . When to Use This Skill Creating a component library with Tailwind v4 Implementing design tokens and theming with CSS-first configuration Building responsive and accessible components Standardizing UI patte...
1.1K