mirror of
https://github.com/github/awesome-copilot.git
synced 2026-02-20 18:35:14 +00:00
- Document generate-marketplace.mjs in eng/README.md - Add plugin folder documentation to AGENTS.md - Update setup commands to include marketplace generation - Add plugin checklist to code review guidelines Co-authored-by: aaronpowell <434140+aaronpowell@users.noreply.github.com>
265 lines
12 KiB
Markdown
265 lines
12 KiB
Markdown
# 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
|
|
- **Hooks** - Automated workflows triggered by specific events during development
|
|
- **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)
|
|
├── hooks/ # Automated workflow hooks (folders with README.md + hooks.json)
|
|
├── collections/ # Curated collections of resources (.md files)
|
|
├── docs/ # Documentation for different resource types
|
|
├── eng/ # Build and automation scripts
|
|
└── scripts/ # Utility scripts
|
|
```
|
|
|
|
## Setup Commands
|
|
|
|
```bash
|
|
# Install dependencies
|
|
npm ci
|
|
|
|
# Build the project (generates README.md and marketplace.json)
|
|
npm run build
|
|
|
|
# Generate marketplace.json only
|
|
npm run plugin:generate-marketplace
|
|
|
|
# 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, Skills, and Hooks
|
|
|
|
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. Hooks are folders containing a `README.md` with frontmatter and a `hooks.json` configuration file:
|
|
|
|
#### Agent Files (*.agent.md)
|
|
- Must have `description` field (wrapped in single quotes)
|
|
- File names should be lower case with words separated by hyphens
|
|
- Recommended to include `tools` field
|
|
- Strongly recommended to specify `model` field
|
|
|
|
#### Prompt Files (*.prompt.md)
|
|
- Must have `agent` field (value should be `'agent'` wrapped in single quotes)
|
|
- Must have `description` field (wrapped in single quotes, not empty)
|
|
- File names should be lower case with words separated by hyphens
|
|
- Recommended to specify `tools` if applicable
|
|
- Strongly recommended to specify `model` field
|
|
|
|
#### Instruction Files (*.instructions.md)
|
|
- Must have `description` field (wrapped in single quotes, not empty)
|
|
- Must have `applyTo` field 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.md` file
|
|
- SKILL.md must have `name` field (lowercase with hyphens, matching folder name, max 64 characters)
|
|
- SKILL.md must have `description` field (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](https://agentskills.io/specification)
|
|
|
|
#### Hook Folders (hooks/*/README.md)
|
|
- Each hook is a folder containing a `README.md` file with frontmatter
|
|
- README.md must have `name` field (human-readable name)
|
|
- README.md must have `description` field (wrapped in single quotes, not empty)
|
|
- Must include a `hooks.json` file with hook configuration (hook events extracted from this file)
|
|
- Folder names should be lower case with words separated by hyphens
|
|
- Can include bundled assets (scripts, utilities, configuration files)
|
|
- Bundled scripts should be referenced in the README.md and hooks.json
|
|
- Follow the [GitHub Copilot hooks specification](https://docs.github.com/en/copilot/how-tos/use-copilot-agents/coding-agent/use-hooks)
|
|
- Optionally includes `tags` field for categorization
|
|
|
|
#### Plugin Folders (plugins/*)
|
|
- Each plugin is a folder containing a `.github/plugin/plugin.json` file with metadata
|
|
- plugin.json must have `name` field (matching the folder name)
|
|
- plugin.json must have `description` field (describing the plugin's purpose)
|
|
- plugin.json must have `version` field (semantic version, e.g., "1.0.0")
|
|
- Plugin folders can contain any combination of agents, prompts, instructions, skills, and hooks
|
|
- The `marketplace.json` file is automatically generated from all plugins during build
|
|
- Plugins are discoverable and installable via GitHub Copilot CLI
|
|
|
|
### Adding New Resources
|
|
|
|
When adding a new agent, prompt, instruction, skill, hook, or plugin:
|
|
|
|
**For Agents, Prompts, and Instructions:**
|
|
1. Create the file with proper front matter
|
|
2. Add the file to the appropriate directory
|
|
3. Update the README.md by running: `npm run build`
|
|
4. Verify the resource appears in the generated README
|
|
|
|
**For Hooks:**
|
|
1. Create a new folder in `hooks/` with a descriptive name
|
|
2. Create `README.md` with proper frontmatter (name, description, hooks, tags)
|
|
3. Create `hooks.json` with hook configuration following GitHub Copilot hooks spec
|
|
4. Add any bundled scripts or assets to the folder
|
|
5. Make scripts executable: `chmod +x script.sh`
|
|
6. Update the README.md by running: `npm run build`
|
|
7. Verify the hook appears in the generated README
|
|
|
|
|
|
**For Skills:**
|
|
1. Run `npm run skill:create` to scaffold a new skill folder
|
|
2. Edit the generated SKILL.md file with your instructions
|
|
3. Add any bundled assets (scripts, templates, data) to the skill folder
|
|
4. Run `npm run skill:validate` to validate the skill structure
|
|
5. Update the README.md by running: `npm run build`
|
|
6. Verify the skill appears in the generated README
|
|
|
|
**For Plugins:**
|
|
1. Create a new folder in `plugins/` with a descriptive name (lowercase with hyphens)
|
|
2. Create `.github/plugin/plugin.json` with metadata (name, description, version)
|
|
3. Add agents, prompts, instructions, skills, or hooks to the plugin folder
|
|
4. Run `npm run build` to update README.md and marketplace.json
|
|
5. Verify the plugin appears in `.github/plugin/marketplace.json`
|
|
6. Test plugin installation: `copilot plugin install <plugin-name>@awesome-copilot`
|
|
|
|
### Testing Instructions
|
|
|
|
```bash
|
|
# 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 build` to update the README
|
|
- **Always run `bash scripts/fix-line-endings.sh`** to 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/` and `scripts/` directories
|
|
- Follow Node.js ES module conventions (`.mjs` extension)
|
|
- Use clear, descriptive function and variable names
|
|
|
|
## Pull Request Guidelines
|
|
|
|
When creating a pull request:
|
|
|
|
1. **README updates**: New files should automatically be added to the README when you run `npm run build`
|
|
2. **Front matter validation**: Ensure all markdown files have the required front matter fields
|
|
3. **File naming**: Verify all new files follow the lower-case-with-hyphens naming convention
|
|
4. **Build check**: Run `npm run build` before committing to verify README generation
|
|
5. **Line endings**: **Always run `bash scripts/fix-line-endings.sh`** to normalize line endings to LF (Unix-style)
|
|
6. **Description**: Provide a clear description of what your agent/prompt/instruction does
|
|
7. **Testing**: If adding a collection, run `npm run collection:validate` to ensure validity
|
|
|
|
### Pre-commit Checklist
|
|
|
|
Before submitting your PR, ensure you have:
|
|
- [ ] Run `npm install` (or `npm ci`) to install dependencies
|
|
- [ ] Run `npm run build` to generate the updated README.md
|
|
- [ ] Run `bash scripts/fix-line-endings.sh` to 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 `agent` field (value should be `'agent'` wrapped in single quotes)
|
|
- [ ] Has non-empty `description` field wrapped in single quotes
|
|
- [ ] File name is lower case with hyphens
|
|
- [ ] Includes `model` field (strongly recommended)
|
|
|
|
For instruction files (*.instructions.md):
|
|
- [ ] Has markdown front matter
|
|
- [ ] Has non-empty `description` field wrapped in single quotes
|
|
- [ ] Has `applyTo` field with file patterns
|
|
- [ ] File name is lower case with hyphens
|
|
|
|
For agent files (*.agent.md):
|
|
- [ ] Has markdown front matter
|
|
- [ ] Has non-empty `description` field wrapped in single quotes
|
|
- [ ] Has `name` field with human-readable name (e.g., "Address Comments" not "address-comments")
|
|
- [ ] File name is lower case with hyphens
|
|
- [ ] Includes `model` field (strongly recommended)
|
|
- [ ] Considers using `tools` field
|
|
|
|
For skills (skills/*/):
|
|
- [ ] Folder contains a SKILL.md file
|
|
- [ ] SKILL.md has markdown front matter
|
|
- [ ] Has `name` field matching folder name (lowercase with hyphens, max 64 characters)
|
|
- [ ] Has non-empty `description` field 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
|
|
|
|
For hook folders (hooks/*/):
|
|
- [ ] Folder contains a README.md file with markdown front matter
|
|
- [ ] Has `name` field with human-readable name
|
|
- [ ] Has non-empty `description` field wrapped in single quotes
|
|
- [ ] Has `hooks.json` file with valid hook configuration (hook events extracted from this file)
|
|
- [ ] Folder name is lower case with hyphens
|
|
- [ ] Any bundled scripts are executable and referenced in README.md
|
|
- [ ] Follows [GitHub Copilot hooks specification](https://docs.github.com/en/copilot/how-tos/use-copilot-agents/coding-agent/use-hooks)
|
|
- [ ] Optionally includes `tags` array field for categorization
|
|
|
|
For plugin folders (plugins/*/):
|
|
- [ ] Folder contains a `.github/plugin/plugin.json` file with metadata
|
|
- [ ] plugin.json has `name` field matching folder name (lowercase with hyphens)
|
|
- [ ] plugin.json has non-empty `description` field
|
|
- [ ] plugin.json has `version` field (semantic version, e.g., "1.0.0")
|
|
- [ ] Folder name is lower case with hyphens
|
|
- [ ] Plugin resources (agents, prompts, etc.) follow their respective guidelines
|
|
- [ ] Run `npm run build` to verify marketplace.json is updated correctly
|
|
|
|
## Contributing
|
|
|
|
This is a community-driven project. Contributions are welcome! Please see:
|
|
- [CONTRIBUTING.md](CONTRIBUTING.md) for contribution guidelines
|
|
- [CODE_OF_CONDUCT.md](CODE_OF_CONDUCT.md) for community standards
|
|
- [SECURITY.md](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](LICENSE) for details
|