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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
27,660
总 Skills
168.0M
总安装量
2,751
贡献者
# Skill 仓库 描述 安装量
9251 timesfm-forecasting k-dense-ai/scientific-agent-skills
TimesFM Forecasting Overview TimesFM (Time Series Foundation Model) is a pretrained decoder-only foundation model developed by Google Research for time-series forecasting. It works zero-shot — feed it any univariate time series and it returns point forecasts with calibrated quantile prediction intervals, no training required. This skill wraps TimesFM for safe, agent-friendly local inference. It includes a mandatory preflight system checker that verifies RAM, GPU memory, and disk space before the...
1.2K
9252 design-game playableintelligence/game-creator
Performance Notes Take your time to do this thoroughly Quality is more important than speed Do not skip validation steps Design Game Run a UI/UX design pass on an existing game to improve visuals, atmosphere, and game feel. No design experience needed — this command analyzes your game and applies proven visual patterns. Instructions Analyze the game at $ARGUMENTS (or the current directory if no path given). First, load the game-designer skill to get the full design vocabulary and patterns. Step ...
1.2K
9253 loops-cli loops-so/skills
Loops CLI Skill This skill helps with Loops terminal workflows. Use it for installation, auth and configuration, command selection, and shell-first operational tasks. When To Use Use this skill when the user needs to: install, update, or troubleshoot the Loops CLI authenticate with Loops from the terminal manage stored team keys or switch between them run one-off contact, list, event, or transactional-email commands create draft campaigns, update email-message content, and upload images from the...
1.2K
9254 intended-vs-implemented phuryn/pm-skills
Intended vs. Implemented: Auditing the Gap Purpose A linter scans code in a vacuum. It can tell you the code is internally consistent; it cannot tell you the code does what you meant , because it has no model of your intent. The highest-value security and correctness bugs live in that gap — a permission documented but never enforced, a "cron-only" endpoint anyone can call, a field marked public-only that leaks private data. This skill is the method for finding that gap. It is the differentiator:...
1.2K
9255 netlify-mcp-servers netlify/context-and-tools
Netlify MCP Servers An MCP server exposes tools (and optionally resources/prompts) that an AI client — Claude Desktop, Claude Code, Cursor — can call. On Netlify, a remote MCP server is just one Netlify Function that speaks the MCP protocol over HTTP. This skill gets you a working, secure server and connects a client to it. "Netlify MCP" means two different things — make sure you're building the right one. Netlify publishes its own hosted MCP server that lets an AI client operate the Netlify pla...
1.2K
9256 android-tombstone-symbolication dotnet/skills
Android Tombstone .NET Symbolication Resolves native backtrace frames from .NET Android app crashes (MAUI, Xamarin, Mono) to function names, source files, and line numbers using ELF BuildIds and Microsoft's symbol server. Inputs: Tombstone file or logcat crash output, llvm-symbolizer (from Android NDK or any LLVM 14+ toolchain), internet access for symbol downloads. Do not use when: The crash is a managed .NET exception (visible in logcat with a managed stack trace), the crashing library is not ...
1.2K
9257 alpine-js mindrally/skills
Alpine.js Development You are an expert in Alpine.js for building lightweight, reactive web interfaces. Core Principles Write concise, technical responses with accurate Alpine.js examples Use Alpine.js for lightweight, declarative interactivity Prioritize performance optimization and minimal JavaScript Integrate seamlessly with Tailwind CSS and backend frameworks Alpine.js Fundamentals Directives x-data - Define reactive data for a component x-bind - Bind attributes to expressions x-on - Attac...
1.2K
9258 stable-baselines3 k-dense-ai/scientific-agent-skills
Stable Baselines3 Overview Stable Baselines3 (SB3) is a PyTorch-based library providing reliable implementations of reinforcement learning algorithms. This skill provides comprehensive guidance for training RL agents, creating custom environments, implementing callbacks, and optimizing training workflows using SB3's unified API. Core Capabilities 1. Training RL Agents Basic Training Pattern: import gymnasium as gym from stable_baselines3 import PPO Create environment env = gym . make ( "CartPol...
1.2K
9259 flask-python mindrally/skills
Flask Python Development You are an expert in Flask and Python web development. Follow these guidelines when writing Flask code. Key Principles Write concise, technical responses with accurate Python examples Use functional, declarative programming; avoid classes except for Flask views Prefer iteration and modularization over code duplication Use descriptive variable names with auxiliary verbs (e.g., is_active, has_permission) Use lowercase with underscores for directories and files (e.g., blu...
1.2K
9260 r3f-lighting enzed/r3f-skills
React Three Fiber Lighting Quick Start import { Canvas } from '@react-three/fiber' function Scene() { return ( <Canvas shadows> {/* Ambient fill */} <ambientLight intensity={0.5} /> {/* Main light with shadows */} <directionalLight position={[5, 5, 5]} intensity={1} castShadow shadow-mapSize={[2048, 2048]} /> {/* Objects */} <mesh castShadow receiveShadow> <boxGeometry /> <meshStandardMaterial colo...
1.2K
9261 dt-obs-azure dynatrace/dynatrace-for-ai
Azure Cloud Infrastructure Monitor and analyze Azure resources using Dynatrace Smartscape and DQL. Query Azure services, audit security, manage organizational hierarchy, and plan capacity across your Azure infrastructure. When to Use This Skill Use this skill when the user needs to work with Azure resources in Dynatrace. Load the reference file for the task type: Show more Installs 672 Repository dynatrace/dynat…e-for-ai GitHub Stars 107 First Seen May 11, 2026 Security Audits Gen Agent Trust Hu...
1.2K
9262 qwencloud-image-generation qwencloud/qwencloud-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 qwencloud/qwencloud-ai . Skill directory Use this skill's internal files to execute and learn. Load reference files o...
1.2K
9263 template-authoring dotnet/skills
Template Authoring This skill helps an agent create and validate custom dotnet new templates. It guides bootstrapping templates from existing projects and validates template.json files for authoring issues before publishing. When to Use User wants to create a reusable template from an existing .csproj User wants to validate a template.json they are authoring before publishing User is setting up .template.config/template.json from scratch User wants to package a template for NuGet distribution Wh...
1.2K
9264 migrate-vstest-to-mtp dotnet/skills
VSTest -> Microsoft.Testing.Platform Migration Migrate a .NET test solution from VSTest to Microsoft.Testing.Platform (MTP). The outcome is a solution where all test projects run on MTP, dotnet test works correctly, and CI/CD pipelines are updated. Important : Do not mix VSTest-based and MTP-based .NET test projects in the same solution or run configuration -- this is an unsupported scenario. When to Use Switching from VSTest to Microsoft.Testing.Platform for any supported test framework Enablin...
1.2K
9265 generate-testability-wrappers dotnet/skills
Generate Testability Wrappers Generate wrapper interfaces, default implementations, and DI service registration code for untestable static dependencies. For statics that already have .NET built-in abstractions ( TimeProvider , IHttpClientFactory ), guide adoption of the built-in. For statics without built-in alternatives, generate custom minimal wrappers. When to Use After running detect-static-dependencies and identifying which statics to wrap When the user asks to make a class testable by repl...
1.2K
9266 presentation iii-hq/iii
Presentation Turn a technical specification into an interactive, persuasive web deck — the kind at iii.dev/roadmap/. The output is a content layer inside the repo's roadmap base (the shared component library, gallery, and markdown spec viewer that build every deck into one static site — Astro routes of the site package in iii, a standalone Vite project in other repos): helps engineers understand the spec — the architecture is a navigable map, not prose; is interactive — steppable diagrams, a sel...
1.2K
9267 ibd-distribution-day-monitor tradermonty/claude-trading-skills
IBD Distribution Day Monitor Purpose Detect IBD-style Distribution Days for major market ETFs (QQQ as Nasdaq proxy, SPY as S&P 500 proxy) and produce a daily market deterioration signal plus a TQQQ/QQQ exposure recommendation. Designed for post-market review. When to Use Invoke this skill: Daily after the US market close. Before increasing TQQQ exposure or rebalancing leveraged positions. When evaluating whether an uptrend is becoming vulnerable to a correction. As an upstream input to FTD (Foll...
1.2K
9268 research-summarizer alirezarezvani/claude-skills
No SKILL.md available for this skill. View on GitHub
1.2K
9269 jenkins-pipeline aj-geddes/useful-ai-prompts
Jenkins Pipeline Overview Create enterprise-grade Jenkins pipelines using declarative and scripted approaches to automate building, testing, and deploying with advanced control flow. When to Use Enterprise CI/CD infrastructure Complex multi-stage builds On-premise deployment automation Parameterized builds Implementation Examples 1. Declarative Pipeline (Jenkinsfile) pipeline { agent { label 'linux-docker' } environment { REGISTRY = 'docker.io' IMAGE_NAME = 'myapp' ...
1.2K
9270 prd-writer pmprompt/claude-plugin-product-management
Domain Context This skill implements a proven product management framework. The approach combines best practices from industry leaders and is designed for practical application in day-to-day PM work. Input Requirements Context about your product, feature, or problem Relevant data, research, or constraints (recommended but optional) Clear articulation of what you're trying to achieve PRD Writer When to Use Starting a new feature or product initiative Need to document requirements for the engineer...
1.2K
9271 what-if-oracle k-dense-ai/scientific-agent-skills
No SKILL.md available for this skill. View on GitHub
1.2K
9272 geopandas k-dense-ai/scientific-agent-skills
GeoPandas GeoPandas extends pandas to enable spatial operations on geometric types. It combines the capabilities of pandas and shapely for geospatial data analysis. Installation uv pip install geopandas Optional Dependencies For interactive maps uv pip install folium For classification schemes in mapping uv pip install mapclassify Show more
1.2K
9273 simpy k-dense-ai/scientific-agent-skills
SimPy - Discrete-Event Simulation Overview SimPy is a process-based discrete-event simulation framework based on standard Python. Use SimPy to model systems where entities (customers, vehicles, packets, etc.) interact with each other and compete for shared resources (servers, machines, bandwidth, etc.) over time. Core capabilities: Process modeling using Python generator functions Shared resource management (servers, containers, stores) Event-driven scheduling and synchronization Real-time simul...
1.2K
9274 pymoo k-dense-ai/scientific-agent-skills
Pymoo - Multi-Objective Optimization in Python Overview Pymoo is a comprehensive Python framework for optimization with emphasis on multi-objective problems. Solve single and multi-objective optimization using state-of-the-art algorithms (NSGA-II/III, MOEA/D), benchmark problems (ZDT, DTLZ), customizable genetic operators, and multi-criteria decision making methods. Excels at finding trade-off solutions (Pareto fronts) for problems with conflicting objectives. When to Use This Skill This skill s...
1.2K
9275 stakeholder-alignment owl-listener/designer-skills
Stakeholder Alignment Help the user achieve stakeholder alignment using frameworks and insights from 88 product leaders. How to Help When the user asks for help with stakeholder alignment: Understand the situation - Ask who the stakeholders are, what decision needs to be made, and where resistance is coming from Identify motivations - Help them understand what each stakeholder cares about and their definition of success Structure the approach - Guide them on pre-alignment, communication sequence...
1.2K
9276 team-workflow owl-listener/designer-skills
Team Workflow You are an expert in designing efficient design team workflows and collaboration practices. What You Do You design workflows that help design teams collaborate effectively, manage work, and deliver quality. Workflow Components Task Management How work is tracked (boards, tickets, sprints) Status definitions (backlog, in progress, in review, done) Priority levels and how they are assigned Capacity planning and workload balancing Collaboration Rituals Standup (daily/async): What are ...
1.2K
9277 north-star-vision owl-listener/designer-skills
North Star Vision You are an expert in articulating inspiring product visions that unite teams and guide direction. What You Do You help teams define a north-star vision — a compelling future state that inspires alignment and guides trade-offs. Vision Components Vision Statement — Who, what experience, why it matters (one sentence) Design Pillars — 3-5 strategic focus areas defining differentiators Vision Scenarios — Concrete narrative stories of the future experience Success Criteria — Qualitat...
1.2K
9278 interview-script owl-listener/designer-skills
Customer Interview Script Create a structured interview script that surfaces real insights, not just opinions. Follows "The Mom Test" principles — ask about their life, not your idea. Domain Context Customer interviews are one source in Stage 1 (Explore) of continuous discovery. Other sources: stakeholder interviews, usage analytics, data analytics, surveys, market trends, SEO/SEM analysis. The PM needs direct access to users, stakeholders, engineers, and designers — "without proxies." The Produ...
1.2K
9279 metrics-definition owl-listener/designer-skills
Metrics Definition You are an expert in defining meaningful UX metrics that demonstrate design impact. What You Do You help teams define metrics connecting design work to measurable outcomes. Metric Categories Behavioral : Task completion, time on task, error rate, feature adoption Attitudinal : SUS, NPS, CSAT, perceived ease of use Business : Conversion, retention, support volume, onboarding completion Engagement : DAU/MAU, session duration, feature discovery, return visits HEART Framework Happ...
1.2K
9280 design-rationale owl-listener/designer-skills
Design Rationale You are an expert in articulating the reasoning behind design decisions. What You Do You write clear design rationale that connects decisions to evidence, principles, and goals. Rationale Structure 1. Decision What design decision was made? Be specific about what was chosen. 2. Context What problem or need prompted this decision? What constraints exist? 3. Options Considered What alternatives were explored? Brief description of each. 4. Evidence What informed the decision? User ...
1.2K
9281 test-scenario owl-listener/designer-skills
Test Scenario You are an expert in writing usability test scenarios that reveal genuine user behavior. What You Do You write test scenarios with realistic tasks, clear success criteria, and structured observation guides. Scenario Structure Context Setting Brief, realistic backstory that gives the participant a reason to act without leading them. Task Specific goal to accomplish. Action-oriented, not question-based. Avoids UI terminology that hints at the answer. Success Criteria Task completion ...
1.2K
9282 design-review-process owl-listener/designer-skills
Design Review Process You are an expert in establishing design review processes that maintain quality without slowing teams down. What You Do You create review processes with clear gates, criteria, and workflows that ensure design quality. Review Gates Gate 1: Concept Review Problem clearly defined User needs supported by research Multiple concepts explored Strategic alignment confirmed Stakeholder input gathered Gate 2: Design Review Visual design meets brand standards Interaction patterns are ...
1.2K
9283 design-sprint-plan owl-listener/designer-skills
Design Sprint Plan You are an expert in planning and facilitating design sprints. What You Do You plan structured design sprints that take teams from challenge to tested prototype in a focused timeframe. Sprint Structure (5-Day Classic) Day 1: Understand Define the challenge and sprint questions Expert interviews and lightning talks Map the user journey Choose a target area to focus on Day 2: Diverge Lightning demos of inspiration Individual sketching (Crazy 8s, solution sketches) Silent critiqu...
1.2K
9284 opportunity-framework owl-listener/designer-skills
Opportunity Framework You are an expert in identifying, evaluating, and prioritizing design opportunities. What You Do You help teams move from possible improvements to a prioritized roadmap. Opportunity Sources Research findings, analytics, competitive gaps, technology, stakeholder requests, support channels. Evaluation Frameworks Impact-Effort Matrix 2x2 grid: quick wins, strategic bets, fill-ins, deprioritize. RICE Scoring Reach, Impact (1-3), Confidence (%), Effort (person-weeks). Kano Model...
1.2K
9285 app-preview-video eronred/aso-skills
App Preview Video You are an App Store Preview video specialist. Your goal is to help the user produce up to 3 iOS App Previews (or 1 Play Store promo video) that lift product page conversion by 5–25%. Initial Assessment Check for app-marketing-context.md — read for app, audience, and core value Ask for the App ID and platform(s) — iOS, Android, or both Ask if they have existing screen recordings or need to capture fresh Ask for target conversion goal — install (top-of-funnel) or trial start (mi...
1.2K
9286 design-system-adoption owl-listener/designer-skills
Design System Adoption You are an expert in driving design system adoption across design and engineering teams. What You Do You create strategies and materials that help teams adopt and consistently use a design system. Adoption Strategy Awareness Launch announcements and demos Documentation site with search and examples Regular updates and changelog communication Showcase projects that use the system well Education Getting started guides for designers and developers Component usage guidelines w...
1.2K
9287 click-test-plan owl-listener/designer-skills
Click Test Plan You are an expert in designing click tests that evaluate findability and navigation clarity. What You Do You design first-click and click tests that measure whether users can find information and features. Test Types First-click test : Where do users click first for a given task? Click-path test : Full sequence of clicks to complete a task Navigation test : Can users find items using the nav structure? Five-second test : What do users remember after 5 seconds? Test Plan Structure...
1.2K
9288 version-control-strategy owl-listener/designer-skills
Version Control Strategy You are an expert in managing design file versions, component libraries, and design assets. What You Do You define strategies for versioning design work so teams can collaborate, track changes, and maintain consistency. What to Version Design files (Figma, Sketch, etc.) Component libraries Design tokens Icon sets and assets Documentation Versioning Approaches Design Files Named versions at key milestones (v1-exploration, v2-refinement, v3-final) Branch-based: main branch...
1.2K
9289 summarize-interview owl-listener/designer-skills
Summarize Customer Interview Transform an interview transcript into a structured summary focused on Jobs to Be Done, satisfaction, and action items. Context You are summarizing a customer interview for the product discovery of $ARGUMENTS . The user will provide an interview transcript — either as an attached file (text, PDF, audio transcription) or pasted directly. Read any attached files first. Instructions Read the full transcript carefully before summarizing. Fill in the summary template belo...
1.2K
9290 shipping-artifacts phuryn/pm-skills
Shipping Artifacts: The Docs That Make AI-Built Code Reviewable Purpose AI agents write code fast, but they leave no durable record of intent — what the system is supposed to do, who is allowed to do what, where the secrets live, which rules are actually verified. Without that record, no human (and no auditing agent) can tell whether the code is safe to ship. This skill defines the small set of documents that restore reviewability. These docs live in documentation/ at the repo root and are writt...
1.2K
9291 testing-setup android/skills
Step 1: analyze the current testing setup To understand the testing setup of an existing project, look for these dependencies in the libs.versions.toml file, or build files: Show more Installs 910 Repository android/skills GitHub Stars 6.7K First Seen May 15, 2026 Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Pass
1.2K
9292 naver-ad-performance nomadamas/k-skill
naver-ad-performance Get the full instructions (required first step) Run this and follow its output as the primary instructions for this skill: npx -y @nomadamas/k-skill@0 instruct naver-ad-performance The CLI detects the current runtime (Dolshoi vault/CloakBrowser vs generic) and prints only the applicable instructions, always up to date. Helper files bundled with the CLI are listed by: npx -y @nomadamas/k-skill@0 files naver-ad-performance If npx is unavailable, install Node.js 18+ or follow h...
1.2K
9293 migrate-mstest-v1v2-to-v3 dotnet/skills
MSTest v1/v2 -> v3 Migration Migrate a test project from MSTest v1 (assembly references) or MSTest v2 (NuGet 1.x-2.x) to MSTest v3. MSTest v3 is not binary compatible with v1/v2 -- libraries compiled against v1/v2 must be recompiled. When to Use Project references Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll (MSTest v1) Project uses MSTest.TestFramework / MSTest.TestAdapter NuGet 1.x or 2.x Resolving build errors after updating MSTest packages from v1/v2 to v3 -- including when the ...
1.2K
9294 parabolic-short-trade-planner tradermonty/claude-trading-skills
Overview Generate Qullamaggie-style Parabolic Short watchlists and conditional pre-market plans for US equities. The skill never sends orders. It emits JSON + Markdown that a human reviews against their broker before entry. Three phases: Show more Installs 858 Repository tradermonty/cla…g-skills GitHub Stars 2.6K First Seen May 2, 2026 Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Warn
1.2K
9295 react-flow existential-birds/beagle
React Flow (@xyflow/react) is a library for building node-based graphs, workflow editors, and interactive diagrams. It provides a highly customizable framework for creating visual programming interfaces, process flows, and network visualizations. Quick Start Installation ``` pnpm add @xyflow/react ``` Basic Setup ``` import { ReactFlow, Node, Edge, Background, Controls, MiniMap } from '@xyflow/react'; import '@xyflow/react/dist/style.css'; const initialNodes: Node[] = [ { id: '1'...
1.2K
9296 context-engineering neolabhq/context-engineering-kit
Context Engineering Overview Feed agents the right information at the right time. Context is the single biggest lever for agent output quality — too little and the agent hallucinates, too much and it loses focus. Context engineering is the practice of deliberately curating what the agent sees, when it sees it, and how it's structured. When to Use Starting a new coding session Agent output quality is declining (wrong patterns, hallucinated APIs, ignoring conventions) Switching between different p...
1.2K
9297 play-billing-library-version-upgrade android/skills
Phase 0: Intent Message Reporting Action : Before proceeding, immediately tell the user: "I will upgrade Play Billing Library to the latest version." Phase 1: Discovery & Situational Awareness Primary Check (Build Version) : Locate the project's billing dependency (e.g., com.android.billingclient:billing ) in build.gradle , build.gradle.kts , or libs.versions.toml . Initial Compilation Test : Attempt to sync and build the project immediately. Fallback Discovery (Effective Version) : Trigger : On...
1.2K
9298 migrate-mstest-v3-to-v4 dotnet/skills
MSTest v3 -> v4 Migration Migrate a test project from MSTest v3 to MSTest v4. The outcome is a project using MSTest v4 that builds cleanly, passes tests, and accounts for every source-incompatible and behavioral change. MSTest v4 is not binary compatible with MSTest v3 -- any library compiled against v3 must be recompiled against v4. When to Use Upgrading MSTest.TestFramework , MSTest.TestAdapter , or MSTest metapackage from 3.x to 4.x Upgrading MSTest.Sdk from 3.x to 4.x Fixing build errors aft...
1.2K
9299 migrate-xunit-to-xunit-v3 dotnet/skills
xunit.v3 Migration Migrate .NET test projects from xUnit.net v2 to xUnit.net v3. The outcome is a solution where all test projects reference xunit.v3.* packages, compiles cleanly, and all tests pass with the same results as before migration. When to Use Upgrading test projects from xunit (v2) packages to xunit.v3 Resolving compilation errors after updating xunit package references to v3 When Not to Use Migrating between test frameworks (e.g., MSTest or NUnit to xUnit.net) — different effort enti...
1.2K
9300 test-smell-detection dotnet/skills
Test Smell Detection Deep formal audit of test code in any supported language using an academic test smell taxonomy. Detects symptoms of bad design or implementation decisions that make tests harder to understand, more fragile, less effective at catching bugs, or more expensive to maintain. Produces a severity-ranked report with specific locations and actionable fixes. Language-specific guidance : Call the test-analysis-extensions skill to discover available extension files, then read the file m...
1.2K