Organization-wide shared repository for GitHub configurations and Copilot Agent Skills.
This is a special .github repository that provides shared resources across all repositories in the grahambrooks organization. It includes:
- Shared Skills: Reusable GitHub Copilot Agent Skills available to all repositories
- Community Health Files: Organization-wide templates and guidelines (future)
- Workflow Templates: Reusable GitHub Actions workflows (future)
The skills/ directory contains Agent Skills that are automatically available to GitHub Copilot agents when working in any repository within this organization.
- code-review - Comprehensive code review guidelines focusing on quality, security, and best practices
- testing-best-practices - Standards for writing effective tests with proper coverage
- documentation-standards - Guidelines for creating clear, comprehensive technical documentation
Skills in this repository are automatically loaded by GitHub Copilot agents when relevant to the current task. No additional configuration is needed in individual repositories.
To add a new skill:
- Create a new directory under
skills/with a descriptive name (use lowercase and hyphens) - Add a
SKILL.mdfile in that directory with:- YAML frontmatter containing
name,description, andlicense - Instructions and guidelines for the skill
- YAML frontmatter containing
- Optionally include supporting files (scripts, examples, etc.)
Example structure:
skills/
my-new-skill/
SKILL.md
(optional supporting files)
MIT License - See individual skill files for specific licensing information.