8.1 KiB
AGENTS.md
Project Overview
The Awesome GitHub Copilot repository is a community-driven collection of custom agents, prompts, and instructions designed to enhance GitHub Copilot experiences across various domains, languages, and use cases. The project includes:
- Agents - Specialized GitHub Copilot agents that integrate with MCP servers
- Prompts - Task-specific prompts for code generation and problem-solving
- Instructions - Coding standards and best practices applied to specific file patterns
- Skills - Self-contained folders with instructions and bundled resources for specialized tasks
- Collections - Curated collections organized around specific themes and workflows
Repository Structure
.
├── agents/ # Custom GitHub Copilot agent definitions (.agent.md files)
├── prompts/ # Task-specific prompts (.prompt.md files)
├── instructions/ # Coding standards and guidelines (.instructions.md files)
├── skills/ # Agent Skills folders (each with SKILL.md and optional bundled assets)
├── collections/ # Curated collections of resources (.md files)
├── docs/ # Documentation for different resource types
├── eng/ # Build and automation scripts
└── scripts/ # Utility scripts
Setup Commands
# Install dependencies
npm ci
# Build the project (generates README.md)
npm run build
# Validate collection manifests
npm run collection:validate
# Create a new collection
npm run collection:create -- --id <collection-id> --tags <tags>
# Validate agent skills
npm run skill:validate
# Create a new skill
npm run skill:create -- --name <skill-name>
Development Workflow
Working with Agents, Prompts, Instructions, and Skills
All agent files (*.agent.md), prompt files (*.prompt.md), and instruction files (*.instructions.md) must include proper markdown front matter. Agent Skills are folders containing a SKILL.md file with frontmatter and optional bundled assets:
Agent Files (*.agent.md)
- Must have
descriptionfield (wrapped in single quotes) - File names should be lower case with words separated by hyphens
- Recommended to include
toolsfield - Strongly recommended to specify
modelfield
Prompt Files (*.prompt.md)
- Must have
agentfield (value should be'agent'wrapped in single quotes) - Must have
descriptionfield (wrapped in single quotes, not empty) - File names should be lower case with words separated by hyphens
- Recommended to specify
toolsif applicable - Strongly recommended to specify
modelfield
Instruction Files (*.instructions.md)
- Must have
descriptionfield (wrapped in single quotes, not empty) - Must have
applyTofield specifying file patterns (e.g.,'**.js, **.ts') - File names should be lower case with words separated by hyphens
Agent Skills (skills/*/SKILL.md)
- Each skill is a folder containing a
SKILL.mdfile - SKILL.md must have
namefield (lowercase with hyphens, matching folder name, max 64 characters) - SKILL.md must have
descriptionfield (wrapped in single quotes, 10-1024 characters) - Folder names should be lower case with words separated by hyphens
- Skills can include bundled assets (scripts, templates, data files)
- Bundled assets should be referenced in the SKILL.md instructions
- Asset files should be reasonably sized (under 5MB per file)
- Skills follow the Agent Skills specification
Adding New Resources
When adding a new agent, prompt, instruction, or skill:
For Agents, Prompts, and Instructions:
- Create the file with proper front matter
- Add the file to the appropriate directory
- Update the README.md by running:
npm run build - Verify the resource appears in the generated README
For Skills:
- Run
npm run skill:createto scaffold a new skill folder - Edit the generated SKILL.md file with your instructions
- Add any bundled assets (scripts, templates, data) to the skill folder
- Run
npm run skill:validateto validate the skill structure - Update the README.md by running:
npm run build - Verify the skill appears in the generated README
Testing Instructions
# Run all validation checks
npm run collection:validate
npm run skill:validate
# Build and verify README generation
npm run build
# Fix line endings (required before committing)
bash scripts/fix-line-endings.sh
Before committing:
- Ensure all markdown front matter is correctly formatted
- Verify file names follow the lower-case-with-hyphens convention
- Run
npm run buildto update the README - Always run
bash scripts/fix-line-endings.shto normalize line endings (CRLF → LF) - Check that your new resource appears correctly in the README
Code Style Guidelines
Markdown Files
- Use proper front matter with required fields
- Keep descriptions concise and informative
- Wrap description field values in single quotes
- Use lower-case file names with hyphens as separators
JavaScript/Node.js Scripts
- Located in
eng/andscripts/directories - Follow Node.js ES module conventions (
.mjsextension) - Use clear, descriptive function and variable names
Pull Request Guidelines
When creating a pull request:
- README updates: New files should automatically be added to the README when you run
npm run build - Front matter validation: Ensure all markdown files have the required front matter fields
- File naming: Verify all new files follow the lower-case-with-hyphens naming convention
- Build check: Run
npm run buildbefore committing to verify README generation - Line endings: Always run
bash scripts/fix-line-endings.shto normalize line endings to LF (Unix-style) - Description: Provide a clear description of what your agent/prompt/instruction does
- Testing: If adding a collection, run
npm run collection:validateto ensure validity
Pre-commit Checklist
Before submitting your PR, ensure you have:
- Run
npm install(ornpm ci) to install dependencies - Run
npm run buildto generate the updated README.md - Run
bash scripts/fix-line-endings.shto normalize line endings - Verified that all new files have proper front matter
- Tested that your contribution works with GitHub Copilot
- Checked that file names follow the naming convention
Code Review Checklist
For prompt files (*.prompt.md):
- Has markdown front matter
- Has
agentfield (value should be'agent'wrapped in single quotes) - Has non-empty
descriptionfield wrapped in single quotes - File name is lower case with hyphens
- Includes
modelfield (strongly recommended)
For instruction files (*.instructions.md):
- Has markdown front matter
- Has non-empty
descriptionfield wrapped in single quotes - Has
applyTofield with file patterns - File name is lower case with hyphens
For agent files (*.agent.md):
- Has markdown front matter
- Has non-empty
descriptionfield wrapped in single quotes - Has
namefield with human-readable name (e.g., "Address Comments" not "address-comments") - File name is lower case with hyphens
- Includes
modelfield (strongly recommended) - Considers using
toolsfield
For skills (skills/*/):
- Folder contains a SKILL.md file
- SKILL.md has markdown front matter
- Has
namefield matching folder name (lowercase with hyphens, max 64 characters) - Has non-empty
descriptionfield wrapped in single quotes (10-1024 characters) - Folder name is lower case with hyphens
- Any bundled assets are referenced in SKILL.md
- Bundled assets are under 5MB per file
Contributing
This is a community-driven project. Contributions are welcome! Please see:
- CONTRIBUTING.md for contribution guidelines
- CODE_OF_CONDUCT.md for community standards
- SECURITY.md for security policies
MCP Server
The repository includes an MCP (Model Context Protocol) Server that provides prompts for searching and installing resources directly from this repository. Docker is required to run the server.
License
MIT License - see LICENSE for details