Skills2026年3月29日·1 分钟阅读

GitHub Copilot Official Customization Collection

Official GitHub Copilot customization: agents, skills, instructions, plugins, hooks, and agentic workflows. Plus documentation for custom instructions.

TO
TokRepo精选 · Community
快速使用

先拿来用,再决定要不要深挖

这里应该同时让用户和 Agent 知道第一步该复制什么、安装什么、落到哪里。

Browse the awesome-copilot repository and install any plugin:

# Copilot uses .github/ directory for customization
mkdir -p .github
# Add custom instructions
echo "Follow TypeScript best practices" > .github/copilot-instructions.md

介绍

Official GitHub Copilot customization resources — community-contributed but GitHub-maintained collection of agents, skills, instructions, plugins, hooks, and agentic workflows. Plus the official documentation for custom instructions at repo, org, and personal levels. 27,500+ GitHub stars.


Customization Levels

Repository Instructions

Create .github/copilot-instructions.md for repo-wide coding standards:

Always use TypeScript strict mode.
Prefer functional components with hooks.
Write tests for all new functions.

Path-Specific Instructions

Create .instructions.md files with applyTo patterns:

---
applyTo: "src/api/**"
---
Use Express.js patterns. Validate all inputs with Zod.

Personal Instructions

~/.copilot/copilot-instructions.md for your personal coding preferences.

Organization Instructions

Set via GitHub organization settings for team-wide standards.

Official Plugins

  • Automate This — Turn any process into an automated workflow
  • Azure Cloud Development — Azure cost optimization, resource health, IaC
  • Context Engineering — Context mapping and refactoring planning
  • Clojure Interactive Programming — REPL-driven development

Agentic Workflows

AI-powered GitHub Actions defined in markdown — automate issue triage, PR reviews, release notes, and more directly from your repository.


来源与感谢

Author: GitHub Repository: awesome-copilot — ⭐ 27,500+ Docs: docs.github.com/copilot/customizing-copilot License: MIT

相关资产