Agent Skills
Instruction packs that give your AI agent know-how. Three different kinds — pick the right one below.
✦ Standalone skills2,933
Self-contained. Install one into any project and it works on its own — no other software needed.
🧰 Tool add-ons725
Come bundled with a specific tool and only work together with it — they teach your agent how to operate that tool.
acreadiness-generate-instructions
✓★ 36,200by github
Generate tailored AI agent instruction files via AgentRC instructions command. Produces .github/copilot-instructions.md (default, recommended for Copilot in VS…
ai-team-orchestration
✓★ 36,200by github
Bootstrap and run a multi-agent AI development team. Use when: starting a new software project with AI agents, setting up parallel dev/QA teams, creating…
arize-evaluator
✓★ 36,200by github
INVOKE THIS SKILL for LLM-as-judge evaluation workflows on Arize: creating/updating evaluators, running evaluations on spans or experiments, tasks,…
brag-sheet
✓★ 36,200by github
Turn engineering work into evidence-backed impact statements for performance reviews, self-reviews, promotion packets, and weekly updates. Uniquely mines Copilot CLI session logs, git history, and PRs to reconstruct forgotten work.
cloud-design-patterns
✓★ 36,200by github
Cloud design patterns for distributed systems architecture covering 42 industry-standard patterns across reliability, performance, messaging, security, and…
copilot-cli-quickstart
✓★ 36,200by github
Interactive step-by-step tutorials for GitHub Copilot CLI with separate Developer and Non-Developer learning paths. Offers three core modes: Tutorial (guided lessons), Q&A (on-demand answers), and Reset (start over) Includes 7 shared and track-specific lessons covering prompts, permissions, slash commands, file mentions, planning, and advanced features like MCP servers Tracks progress with SQL-backed lesson completion and supports mid-tutorial track switching Provides beginner-friendly...
create-architectural-decision-record
✓★ 36,200by github
Create an Architectural Decision Record (ADR) document for AI-optimized decision documentation.
create-github-action-workflow-specification
✓★ 36,200by github
Generates formal, AI-optimized specifications for GitHub Actions workflows to standardize documentation and enable maintenance. Produces structured markdown specifications with execution flow diagrams, job dependency matrices, and requirement tables designed for token efficiency Covers functional, security, and performance requirements alongside input/output contracts, error handling strategies, and quality gates Includes sections for monitoring, compliance, edge cases, and change management...
dataverse-python-usecase-builder
✓★ 36,200by github
Generate complete, production-ready solutions for Dataverse SDK use cases with architecture guidance. Analyzes requirements across data volume, frequency, performance, and error tolerance to recommend appropriate patterns (transactional, batch, query, file management, scheduled, or real-time) Provides full Python implementation including authentication, singleton service classes, CRUD operations, bulk processing, and comprehensive error handling Includes data model design with table...
diagnose
✓★ 36,200by github
Perform a systematic diagnostic scan of an AI workflow across 5 quality dimensions — prompt quality, context efficiency, tool health, architecture fitness, and…
eyeball
✓★ 36,200by github
Document analysis with inline source screenshots. When you ask Copilot to analyze a document, Eyeball generates a Word doc where every factual claim includes a…
nuget-manager
✓★ 36,200by github
NuGet package management for .NET projects using dotnet CLI with strict workflows for adds, removes, and version updates. Enforces dotnet add and dotnet remove commands for package operations; direct file edits only allowed for version changes Requires version verification via dotnet package search before updates, with support for both jq and PowerShell parsing Supports centralized version management via Directory.Packages.props or per-project .csproj configuration Mandatory dotnet restore...
semantic-kernel
✓★ 36,200by github
Create, update, refactor, explain, or review Semantic Kernel solutions using shared guidance plus language-specific references for .NET and Python.
resemble-detect
✓★ 36,200by github
Deepfake detection and media safety — detect AI-generated audio, images, video, and text, trace synthesis sources, apply watermarks, verify speaker identity,…
spring-boot-testing
✓★ 36,200by github
Expert Spring Boot 4 testing specialist that selects the best Spring Boot testing techniques for your situation with Junit 6 and AssertJ.
vardoger-analyze
✓★ 36,200by github
Use when the user asks to personalize the GitHub Copilot CLI assistant, adapt Copilot to their style, use vardoger, or analyze their Copilot CLI conversation…
vscode-ext-localization
✓★ 36,200by github
Localize VS Code extensions across configurations, walkthrough content, and source code messages. Three localization approaches: package.nls.LANGID.json for settings, commands, menus, and views; markdown files for walkthrough content; bundle.l10n.LANGID.json for source code strings Covers all user-facing resources including contributed configurations, commands, menus, views, ViewsWelcome, and walkthrough titles and descriptions Requires creating or updating localization files for all...
workiq-copilot
✓★ 36,200by github
Query Microsoft 365 data with natural language to surface emails, meetings, documents, Teams messages, and people insights. Supports five data sources: emails, meetings, documents, Teams channels, and people/projects with natural-language prompts Install via Copilot CLI plugin (preferred) or standalone npm package; requires Microsoft 365 tenant admin consent on first use Core workflow: clarify intent, craft precise prompts with timeframe/source, run workiq ask --question "..." , and stream...
write-coding-standards-from-file
✓★ 36,200by github
Analyze existing code files to automatically generate a project coding standards document. Extracts syntax patterns (indentation, naming conventions, commenting style, braces, line length) from one or more files or entire folders to establish baseline standards Detects and optionally fixes inconsistencies across files, flagging deviations from the majority pattern in each category Outputs standards to a new file (CONTRIBUTING.md, STYLE.md, CODING_STANDARDS.md, etc.), README.md insertion, or...
ai-ready
✓★ 36,200by github
Make any repo AI-ready — analyzes your codebase and generates AGENTS.md, copilot-instructions.md, CI workflows, issue templates, and more. Mines your PR review…
azure-resource-health-diagnose
✓★ 36,200by github
Diagnose Azure resource health issues and generate a prioritized remediation plan. Analyzes resource status, logs, and telemetry across 8+ Azure service types (Web Apps, VMs, Cosmos DB, Storage, SQL Database, Application Insights, Key Vault, Service Bus) Executes targeted KQL queries against Log Analytics and Application Insights to identify errors, performance degradation, and anomalies Classifies issues by severity (Critical, High, Medium, Low) and performs root cause analysis across...
bigquery-pipeline-audit
✓★ 36,200by github
Audits Python + BigQuery pipelines for cost safety, idempotency, and production readiness with exact patch locations. Analyzes every BigQuery job trigger and external API call to identify cost exposure, loop-driven query multiplication, and missing maximum_bytes_billed limits Enforces dry-run and execute modes with explicit prod confirmation, partition filter validation, and scan-size optimization Validates idempotent writes using MERGE, staging tables, or dedup logic; flags unsafe append...
creating-oracle-to-postgres-migration-bug-report
✓★ 36,200by github
Creates structured bug reports for defects found during Oracle-to-PostgreSQL migration. Use when documenting behavioral differences between Oracle and…
csharp-tunit
✓★ 36,200by github
Best practices for writing unit tests with TUnit, including data-driven and advanced testing patterns. Use [Test] attribute for test methods; follow Arrange-Act-Assert pattern with naming convention MethodName_Scenario_ExpectedBehavior Data-driven testing via [Arguments] , [MethodData] , and [ClassData] attributes; multiple [Arguments] can apply to the same method Fluent async assertions with await Assert.That() syntax; chain with .And or .Or operators and use .Within() for tolerance...
declarative-agents
✓★ 36,200by github
Complete development kit for building Microsoft 365 Copilot declarative agents with TypeSpec and Agents Toolkit integration. Three specialized workflows cover basic agent creation, advanced enterprise design, and validation/optimization for existing agents Supports up to 5 capabilities from 11 options including WebSearch, OneDrive/SharePoint, Graph Connectors, Power Platform, and custom connectors Enforces v1.5 schema compliance with character limits (name: 100, description: 1000,...
impediment-prioritization
✓★ 36,200by github
Ranks any list of impediments and their countermeasures using a value-stream scoring model (ROI, Cost to Implement, Ease of Deployment, Risk Factor) and a…
lsp-setup
✓★ 36,200by github
Enable code intelligence (go-to-definition, find-references, hover, type info) for any programming language by installing and configuring an LSP server for…
nano-banana-pro-openrouter
✓★ 36,200by github
Image generation and editing via OpenRouter's Gemini 3 Pro model with multi-image compositing support. Supports three workflows: prompt-only generation, single-image editing, and multi-image composition (up to 3 images per request) Output resolution options: 1K, 2K, or 4K (defaults to 1K) Customizable behavior through optional system prompt template in assets/SYSTEM_TEMPLATE Requires OPENROUTER_API_KEY environment variable and uv package manager; includes troubleshooting guidance for...
noob-mode
✓★ 36,200by github
Plain-English translation layer that makes Copilot CLI accessible to non-technical users. Translates every approval prompt, error message, and technical output into jargon-free language with color-coded risk indicators (🟢 low, 🟡 moderate, 🔴 high, ⛔ critical) Explains what each action does, why it's needed, what the risks are, and what happens if you approve or decline before any permission is requested Automatically defines technical terms on first use and provides step-by-step roadmaps...
playwright-generate-test
✓★ 36,200by github
Generate Playwright tests from scenarios using interactive browser exploration and validation. Guides you through step-by-step test creation: scenario review, browser exploration, element inspection, interaction validation, and final test generation Integrates with Playwright MCP tools to inspect page elements, capture selectors, and validate interactions before writing test code Generates TypeScript tests using @playwright/test framework and automatically saves them to the tests directory...