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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
24,409
总 Skills
88.3M
总安装量
2,574
贡献者
# Skill 仓库 描述 安装量
1151 agent-ui inferen-sh/skills
Agent Component Batteries-included agent component from ui.inference.sh . Quick Start Install the agent component npx shadcn@latest add https://ui.inference.sh/r/agent.json Add the SDK for the proxy route npm install @inferencesh/sdk Setup 1. API Proxy Route (Next.js) // app/api/inference/proxy/route.ts import { route } from '@inferencesh/sdk/proxy/nextjs' ; export const { GET , POST , PUT } = route ; 2. Environment Variable .env.local INFERENCE_API_KEY = inf_ .. . 3. Use the Component import...
8.9K
1152 tools-ui inferen-sh/skills
Tool UI Components Tool lifecycle components from ui.inference.sh . Quick Start npx shadcn@latest add https://ui.inference.sh/r/tools.json Tool States State Description pending Tool call requested, waiting to execute running Tool is currently executing approval Requires human approval before execution success Tool completed successfully error Tool execution failed Components Tool Call Display import { ToolCall } from "@/registry/blocks/tools/tool-call" < ToolCall name = " search_web " args = { {...
8.9K
1153 flue sfkislev/flue
Purpose Flue is a local automation layer for coding agents that need to operate real desktop software such as Photoshop, Premiere, Blender, Unity, Houdini, Illustrator, InDesign, Excel, PowerPoint, Word, and 3ds Max. Flue is not an MCP server. It is simpler. It is a Python package that exposes small shell-facing bridge commands. Those bridges execute code inside the target application's scripting runtime and return structured JSON back to the agent. agent shell -> Flue bridge -> app scripting ru...
8.9K
1154 make-skill-template github/awesome-copilot
Make Skill Template A meta-skill for creating new Agent Skills. Use this skill when you need to scaffold a new skill folder, generate a SKILL.md file, or help users understand the Agent Skills specification. When to Use This Skill User asks to "create a skill", "make a new skill", or "scaffold a skill" User wants to add a specialized capability to their GitHub Copilot setup User needs help structuring a skill with bundled resources User wants to duplicate this template as a starting point Prer...
8.9K
1155 create-spring-boot-java-project github/awesome-copilot
Create Spring Boot Java project prompt Please make sure you have the following software installed on your system: Java 21 Docker Docker Compose If you need to custom the project name, please change the artifactId and the packageName in download-spring-boot-project-template If you need to update the Spring Boot version, please change the bootVersion in download-spring-boot-project-template Check Java version Run following command in terminal and check the version of Java java -version Download Sp...
8.9K
1156 csharp-docs github/awesome-copilot
C Documentation Best Practices Public members should be documented with XML comments. It is encouraged to document internal members as well, especially if they are complex or not self-explanatory. Guidance for all APIs Use <summary> to provide a brief, one sentence, description of what the type or member does. Start the summary with a present-tense, third-person verb. Use <remarks> for additional information, which can include implementation details, usage notes, or any other relevant context. U...
8.9K
1157 dataverse-python-advanced-patterns github/awesome-copilot
You are a Dataverse SDK for Python expert. Generate production-ready Python code that demonstrates: Error handling & retry logic — Catch DataverseError, check is_transient, implement exponential backoff. Batch operations — Bulk create/update/delete with proper error recovery. OData query optimization — Filter, select, orderby, expand, and paging with correct logical names. Table metadata — Create/inspect/delete custom tables with proper column type definitions (IntEnum for option sets). Configur...
8.9K
1158 breakdown-plan github/awesome-copilot
GitHub Issue Planning & Project Automation Prompt Goal Act as a senior Project Manager and DevOps specialist with expertise in Agile methodology and GitHub project management. Your task is to take the complete set of feature artifacts (PRD, UX design, technical breakdown, testing plan) and generate a comprehensive GitHub project plan with automated issue creation, dependency linking, priority assignment, and Kanban-style tracking. GitHub Project Management Best Practices Agile Work Item Hierarch...
8.9K
1159 dotnet-upgrade github/awesome-copilot
Project Discovery & Assessment name: "Project Classification Analysis" prompt: "Identify all projects in the solution and classify them by type ( .NET Framework , .NET Core , .NET Standard ). Analyze each .csproj for its current TargetFramework and SDK usage." name: "Dependency Compatibility Review" prompt: "Review external and internal dependencies for framework compatibility. Determine the upgrade complexity based on dependency graph depth." name: "Legacy Package Detection" prompt: "Identify l...
8.9K
1160 remember github/awesome-copilot
Memory Keeper You are an expert prompt engineer and keeper of domain-organized Memory Instructions that persist across VS Code contexts. You maintain a self-organizing knowledge base that automatically categorizes learnings by domain and creates new memory files as needed. Scopes Memory instructions can be stored in two scopes: Global ( global or user ) - Stored in <global-prompts> ( vscode-userdata:/User/prompts/ ) and apply to all VS Code projects Workspace ( workspace or ws ) - Stored in <wor...
8.9K
1161 web-component-design wshobson/agents
Web Component Design Build reusable, maintainable UI components using modern frameworks with clean composition patterns and styling approaches. When to Use This Skill Designing reusable component libraries or design systems Implementing complex component composition patterns Choosing and applying CSS-in-JS solutions Building accessible, responsive UI components Creating consistent component APIs across a codebase Refactoring legacy components into modern patterns Implementing compound components...
8.9K
1162 ef-core github/awesome-copilot
Entity Framework Core Best Practices Your goal is to help me follow best practices when working with Entity Framework Core. Data Context Design Keep DbContext classes focused and cohesive Use constructor injection for configuration options Override OnModelCreating for fluent API configuration Separate entity configurations using IEntityTypeConfiguration Consider using DbContextFactory pattern for console apps or tests Entity Design Use meaningful primary keys (consider natural vs surrogate keys)...
8.9K
1163 next-intl-add-language github/awesome-copilot
This is a guide to add a new language to a Next.js project using next-intl for internationalization, For i18n, the application uses next-intl. All translations are in the directory ./messages . The UI component is src/components/language-toggle.tsx . Routing and middleware configuration are handled in: src/i18n/routing.ts src/middleware.ts When adding a new language: Translate all the content of en.json to the new language. The goal is to have all the JSON entries in the new language for a compl...
8.9K
1164 plugin settings anthropics/claude-code
Plugin Settings Pattern for Claude Code Plugins Overview Plugins can store user-configurable settings and state in .claude/plugin-name.local.md files within the project directory. This pattern uses YAML frontmatter for structured configuration and markdown content for prompts or additional context. Key characteristics: File location: .claude/plugin-name.local.md in project root Structure: YAML frontmatter + markdown body Purpose: Per-project plugin configuration and state Usage: Read from hooks,...
8.9K
1165 breakdown-feature-implementation github/awesome-copilot
Feature Implementation Plan Prompt Goal Act as an industry-veteran software engineer responsible for crafting high-touch features for large-scale SaaS companies. Excel at creating detailed technical implementation plans for features based on a Feature PRD. Review the provided context and output a thorough, comprehensive implementation plan. Note: Do NOT write code in output unless it's pseudocode for technical situations. Output Format The output should be a complete implementation plan in Markd...
8.9K
1166 add-educational-comments github/awesome-copilot
Add Educational Comments Add educational comments to code files so they become effective learning resources. When no file is provided, request one and offer a numbered list of close matches for quick selection. Role You are an expert educator and technical writer. You can explain programming topics to beginners, intermediate learners, and advanced practitioners. You adapt tone and detail to match the user's configured knowledge levels while keeping guidance encouraging and instructional. Provide...
8.9K
1167 parallel-web-search parallel-web/parallel-agent-skills
Web Search Search the web for: $ARGUMENTS Command Choose a short, descriptive filename based on the query (e.g., ai-chip-news , react-vs-vue ). Use lowercase with hyphens, no spaces. parallel-cli search " $ARGUMENTS " -q "<keyword1>" -q "<keyword2>" --json --max-results 10 --excerpt-max-chars-total 27000 -o " $FILENAME .json" The first argument is the objective — a natural language description of what you're looking for. It replaces multiple keyword searches with a single call for broad or compl...
8.9K
1168 langchain-fundamentals langchain-ai/langchain-skills
<create_agent> Creating Agents with create_agent create_agent() is the recommended way to build agents. It handles the agent loop, tool execution, and state management. Agent Configuration Options Parameter Purpose Example model LLM to use "anthropic:claude-sonnet-4-5" or model instance tools List of tools [search, calculator] system_prompt / systemPrompt Agent instructions "You are a helpful assistant" checkpointer State persistence MemorySaver() middleware Processing hooks [HumanInTheLoopMiddl...
8.9K
1169 insforge-integrations insforge/agent-skills
InsForge Integrations This skill covers integrating third-party providers with InsForge. Currently two categories are supported: auth providers (RLS via JWT claims) and payment facilitators (x402 HTTP payment protocol). Each provider has its own guide under this directory. Auth Providers Provider Guide When to use Clerk Clerk JWT Templates + InsForge RLS Clerk signs tokens directly via JWT Template — no server-side signing needed Auth0 Auth0 Actions + InsForge RLS Auth0 uses a post-login Action ...
8.9K
1170 power-bi-report-design-consultation github/awesome-copilot
Power BI Report Visualization Designer You are a Power BI visualization and user experience expert specializing in creating effective, accessible, and engaging reports. Your role is to guide the design of reports that clearly communicate insights and enable data-driven decision making. Design Consultation Framework Initial Requirements Gathering Before recommending visualizations, understand the context: Business Context Assessment: □ What business problem are you trying to solve? □ Who is the t...
8.8K
1171 snowflake-semanticview github/awesome-copilot
Snowflake Semantic Views One-Time Setup Verify Snowflake CLI installation by opening a new terminal and running snow --help. If Snowflake CLI is missing or the user cannot install it, direct them to https://docs.snowflake.com/en/developer-guide/snowflake-cli/installation/installation. Configure a Snowflake connection with snow connection add per https://docs.snowflake.com/en/developer-guide/snowflake-cli/connecting/configure-connectionsadd-a-connection. Use the configured connection for all vali...
8.8K
1172 java-refactoring-extract-method github/awesome-copilot
Refactoring Java Methods with Extract Method Role You are an expert in refactoring Java methods. Below are 2 examples (with titles code before and code after refactoring) that represents Extract Method . Code Before Refactoring 1: public FactLineBuilder setC_BPartner_ID_IfValid ( final int bpartnerId ) { assertNotBuild ( ) ; if ( bpartnerId > 0 ) { setC_BPartner_ID ( bpartnerId ) ; } return this ; } Code After Refactoring 1: public FactLineBuilder bpartnerIdIfNotNull ( final BPartnerId bpartnerI...
8.8K
1173 update-specification github/awesome-copilot
Update Specification Your goal is to update the existing specification file ${file} based on new requirements or updates to any existing code. The specification file must define the requirements, constraints, and interfaces for the solution components in a manner that is clear, unambiguous, and structured for effective use by Generative AIs. Follow established documentation standards and ensure the content is machine-readable and self-contained. Best Practices for AI-Ready Specifications Use pre...
8.8K
1174 breakdown-test github/awesome-copilot
Test Planning & Quality Assurance Prompt Goal Act as a senior Quality Assurance Engineer and Test Architect with expertise in ISTQB frameworks, ISO 25010 quality standards, and modern testing practices. Your task is to take feature artifacts (PRD, technical breakdown, implementation plan) and generate comprehensive test planning, task breakdown, and quality assurance documentation for GitHub project management. Quality Standards Framework ISTQB Framework Application Test Process Activities : Pla...
8.8K
1175 folder-structure-blueprint-generator github/awesome-copilot
Project Folder Structure Blueprint Generator Configuration Variables ${PROJECT_TYPE="Auto-detect|.NET|Java|React|Angular|Python|Node.js|Flutter|Other"} ${INCLUDES_MICROSERVICES="Auto-detect|true|false"} ${INCLUDES_FRONTEND="Auto-detect|true|false"} ${IS_MONOREPO="Auto-detect|true|false"} ${VISUALIZATION_STYLE="ASCII|Markdown List|Table"} ${DEPTH_LEVEL=1-5} ${INCLUDE_FILE_COUNTS=true|false} ${INCLUDE_GENERATED_FOLDERS=true|false} ${INCLUDE_FILE_PATTERNS=true|false} ${INCLUDE_TEMPLATES=true|false}...
8.8K
1176 finnish-humanizer github/awesome-copilot
Finnish Humanizer <finnish_voice> Ennen kuin korjaat yhtään patternia, sisäistä miten suomalainen kirjoittaja ajattelee. Suoruus. Suomalainen sanoo asian ja siirtyy eteenpäin. Ei johdattelua, ei pehmentämistä, ei turhia kehyksiä. "Tämä ei toimi" on täysi lause. Lyhyys on voimaa. Lyhyt virke ei ole laiska — se on täsmällinen. Pitkä virke on perusteltava. Toisto on sallittu. Suomessa saman sanan käyttö kahdesti on normaalia. Englannin synonyymikierto ("utilize" → "employ" → "leverage") kuulostaa s...
8.8K
1177 rust-mcp-server-generator github/awesome-copilot
Rust MCP Server Generator You are a Rust MCP server generator. Create a complete, production-ready Rust MCP server project using the official rmcp SDK. Project Requirements Ask the user for: Project name (e.g., "my-mcp-server") Server description (e.g., "A weather data MCP server") Transport type (stdio, sse, http, or all) Tools to include (e.g., "weather lookup", "forecast", "alerts") Whether to include prompts and resources Project Structure Generate this structure: {project-name}/ ├── Cargo.t...
8.8K
1178 vscode-ext-commands github/awesome-copilot
VS Code extension command contribution This skill helps you to contribute commands in VS Code extensions When to use this skill Use this skill when you need to: Add or update commands to your VS Code extension Instructions VS Code commands must always define a title, independent of its category, visibility or location. We use a few patterns for each "kind" of command, with some characteristics, described below: Regular commands: By default, all commands should be accessible in the Command ...
8.8K
1179 emblem-market-research emblemcompany/agent-skills
Emblem Market Research Crypto market intelligence powered by EmblemAI . Real-time data from CoinGecko, CoinGlass, Birdeye, and Nansen — trending tokens, derivatives analytics, on-chain smart money tracking, and token deep dives. Requires : npm install -g @emblemvault/agentwallet What This Skill Can Do Capability Tools Used Trending tokens (all chains) getTrendingCoins , birdeyeTrendingTokens Token price lookup getCryptoPrice , searchCryptoByName Token deep dive (volume, trades, liquidity) birdey...
8.8K
1180 fluxa-agent-wallet fluxa-agent-payment/fluxa-ai-wallet-mcp
FluxA Agent Wallet FluxA Agent Wallet is a co-wallet that allows AI agents to securely use a user’s wallet, enabling them to perform payment-related actions within the user’s approved scope. Capabilities include x402 payments, USDC transfers, payment links for receiving payments, discovering and calling x402 resources (one-shot APIs), and using payment-
8.8K
1181 grafana-dashboards wshobson/agents
Grafana Dashboards Create and manage production-ready Grafana dashboards for comprehensive system observability. Purpose Design effective Grafana dashboards for monitoring applications, infrastructure, and business metrics. When to Use Visualize Prometheus metrics Create custom dashboards Implement SLO dashboards Monitor infrastructure Track business KPIs Dashboard Design Principles 1. Hierarchy of Information ┌─────────────────────────────────────┐ │ Critical Metrics (Big Numbers) │ ├─────...
8.8K
1182 vitepress antfu/skills
VitePress is a Static Site Generator (SSG) built on Vite and Vue 3. It takes Markdown content, applies a theme, and generates static HTML that becomes an SPA for fast navigation. Perfect for documentation, blogs, and marketing sites. Key Characteristics: File-based routing with .md files Vue components work directly in Markdown Fast HMR with instant updates (<100ms) Default theme optimized for documentation Built-in search (local or Algolia) Before working with VitePress projects: Check .vitepre...
8.8K
1183 create-llms github/awesome-copilot
Create LLMs.txt File from Repository Structure Create a new llms.txt file from scratch in the root of the repository following the official llms.txt specification at https://llmstxt.org/ . This file provides high-level guidance to large language models (LLMs) on where to find relevant content for understanding the repository's purpose and specifications. Primary Directive Create a comprehensive llms.txt file that serves as an entry point for LLMs to understand and navigate the repository effecti...
8.8K
1184 openapi-to-application-code github/awesome-copilot
Generate Application from OpenAPI Spec Your goal is to generate a complete, working application from an OpenAPI specification using the active framework's conventions and best practices. Input Requirements OpenAPI Specification : Provide either: A URL to the OpenAPI spec (e.g., https://api.example.com/openapi.json ) A local file path to the OpenAPI spec The full OpenAPI specification content pasted directly Project Details (if not in spec): Project name and description Target framework and versi...
8.8K
1185 best-practices addyosmani/web-quality-skills
Best practices Modern web development standards based on Lighthouse best practices audits. Covers security, browser compatibility, and code quality patterns. Security HTTPS everywhere Enforce HTTPS: <!-- ❌ Mixed content --> <img src="http://example.com/image.jpg"> <script src="http://cdn.example.com/script.js"></script> <!-- ✅ HTTPS only --> <img src="https://example.com/image.jpg"> <script src="https://cdn.example.com/script.js"></script> <!-- ✅ Protocol-relative (will use page's protocol...
8.8K
1186 langgraph-persistence langchain-ai/langchain-skills
Checkpointer : Saves/loads graph state at every super-step Thread ID : Identifies separate checkpoint sequences (conversations) Store : Cross-thread memory for user preferences, facts Two memory types: Short-term (checkpointer): Thread-scoped conversation history Long-term (store): Cross-thread user preferences, facts Checkpointer Use Case Production Ready InMemorySaver Testing, development No SqliteSaver Local development Partial PostgresSaver Production Yes Checkpointer Setup class State(Typed...
8.8K
1187 prd-to-issues mattpocock/skills
PRD to Issues Break a PRD into independently-grabbable GitHub issues using vertical slices (tracer bullets). Process 1. Locate the PRD Ask the user for the PRD GitHub issue number (or URL). If the PRD is not already in your context window, fetch it with gh issue view <number> (with comments). 2. Explore the codebase (optional) If you have not already explored the codebase, do so to understand the current state of the code. 3. Draft vertical slices Break the PRD into tracer bullet issues. Each is...
8.7K
1188 flutter-caching-data flutter/skills
Implementing Flutter Caching and Offline-First Architectures Contents Selecting a Caching Strategy Implementing Offline-First Data Synchronization Managing File System and SQLite Persistence Optimizing UI, Scroll, and Image Caching Caching the FlutterEngine (Android) Workflows Selecting a Caching Strategy Apply the appropriate caching mechanism based on the data lifecycle and size requirements. If storing small, non-critical UI states or preferences: Use shared_preferences . If storing large, st...
8.7K
1189 microsoft-skill-creator github/awesome-copilot
Microsoft Skill Creator Create hybrid skills for Microsoft technologies that store essential knowledge locally while enabling dynamic Learn MCP lookups for deeper details. About Skills Skills are modular packages that extend agent capabilities with specialized knowledge and workflows. A skill transforms a general-purpose agent into a specialized one for a specific domain. Skill Structure skill-name/ ├── SKILL.md (required) Frontmatter (name, description) + instructions ├── references/ ...
8.7K
1190 breakdown-epic-pm github/awesome-copilot
Epic Product Requirements Document (PRD) Prompt Goal Act as an expert Product Manager for a large-scale SaaS platform. Your primary responsibility is to translate high-level ideas into detailed Epic-level Product Requirements Documents (PRDs). These PRDs will serve as the single source of truth for the engineering team and will be used to generate a comprehensive technical architecture specification for the epic. Review the user's request for a new epic and generate a thorough PRD. If you don't ...
8.7K
1191 aspnet-minimal-api-openapi github/awesome-copilot
ASP.NET Minimal API with OpenAPI Your goal is to help me create well-structured ASP.NET Minimal API endpoints with correct types and comprehensive OpenAPI/Swagger documentation. API Organization Group related endpoints using MapGroup() extension Use endpoint filters for cross-cutting concerns Structure larger APIs with separate endpoint classes Consider using a feature-based folder structure for complex APIs Request and Response Types Define explicit request and response DTOs/models Create clear...
8.7K
1192 create-github-issues-feature-from-implementation-plan github/awesome-copilot
Create GitHub Issue from Implementation Plan Create GitHub Issues for the implementation plan at ${file} . Process Analyze plan file to identify phases Check existing issues using search_issues Create new issue per phase using create_issue or update existing with update_issue Use feature_request.yml or chore_request.yml templates (fallback to default) Requirements One issue per implementation phase Clear, structured titles and descriptions Include only changes required by the plan Verify against...
8.7K
1193 remember-interactive-programming github/awesome-copilot
No SKILL.md available for this skill. View on GitHub
8.7K
1194 debian-linux-triage github/awesome-copilot
Debian Linux Triage You are a Debian Linux expert. Diagnose and resolve the user’s issue with Debian-appropriate tooling and practices. Inputs ${input:DebianRelease} (optional) ${input:ProblemSummary} ${input:Constraints} (optional) Instructions Confirm Debian release and environment assumptions; ask concise follow-ups if required. Provide a step-by-step triage plan using systemctl , journalctl , apt , and dpkg . Offer remediation steps with copy-paste-ready commands. Include verification comman...
8.7K
1195 aspire github/awesome-copilot
Aspire — Polyglot Distributed-App Orchestration Aspire is a code-first, polyglot toolchain for building observable, production-ready distributed applications. It orchestrates containers, executables, and cloud resources from a single AppHost project — regardless of whether the workloads are C, Python, JavaScript/TypeScript, Go, Java, Rust, Bun, Deno, or PowerShell. Mental model: The AppHost is a conductor — it doesn't play the instruments, it tells every service when to start, how to find each o...
8.7K
1196 emblem-ai-agent-wallet emblemcompany/agent-skills
EmblemAI Agent Wallet Connect to EmblemAI - EmblemVault's wallet-aware assistant for balances, addresses, portfolio snapshots, recent activity, and operator-confirmed wallet actions across supported chains. Browser auth, streaming responses, profile-scoped local state, x402 support, and PAYG controls. In one sentence: Emblem is the easiest way to give your agent a wallet with profile-scoped local auth, zero-config agent provisioning, and review-first guidance for value-moving actions. Requires t...
8.7K
1197 emblem-ai-prompt-examples emblemcompany/agent-skills
EmblemAI Prompt Examples Use this skill when the user wants example prompts, wording patterns, or sample requests for end-user EmblemAI workflows rather than SDK, React, or app implementation details. Security & Trust Model This skill provides curated prompt examples and phrasing guidance. It inherently references: Financial operations (W009): Example prompts cover trading, DeFi, portfolio review, cross-chain transfers, and prediction markets. These are reference prompts only — they demonstrate ...
8.7K
1198 emblem-ai-react emblemcompany/agent-skills
EmblemAI React Use this skill when the user wants to integrate EmblemAI into a React app rather than only use the CLI or low-level SDKs. In one sentence: this is the easiest way to add user management and wallet-enabled accounts to a React app. Security & Trust Model This skill generates React code that integrates with EmblemAI's authentication and wallet infrastructure. It inherently involves: Third-party data (W011): Migrate.fun React hooks ( useProject , useProjects ) fetch project and token ...
8.7K
1199 flutter-reducing-app-size flutter/skills
Reducing Flutter App Size Contents Core Concepts Workflow: Generating Size Analysis Files Workflow: Analyzing Size Data in DevTools Workflow: Estimating iOS Download Size Workflow: Implementing Size Reduction Strategies Examples Core Concepts Debug vs. Release: Never use debug builds to measure app size. Debug builds include VM overhead and lack Ahead-Of-Time (AOT) compilation and tree-shaking. Upload vs. Download Size: The size of an upload package (APK, AAB, IPA) does not represent the end-use...
8.7K
1200 emblem-ai-agent-wallet emblemcompany/emblemai-agentwallet
EmblemAI Agent Wallet Connect to EmblemAI - EmblemVault's wallet-aware assistant for balances, addresses, portfolio snapshots, recent activity, and operator-confirmed wallet actions across supported chains. Browser auth, streaming responses, profile-scoped local state, x402 support, and PAYG controls. In one sentence: Emblem is the easiest way to give your agent a wallet with profile-scoped local auth, zero-config agent provisioning, and review-first guidance for value-moving actions. Requires t...
8.7K