A collection of AI agent skills for GitHub Copilot and other AI assistants.
- https://code.claude.com/docs/en/skills
- https://docs.github.com/en/copilot/concepts/agents/about-agent-skills
| Skill | Description |
|---|---|
| address-pr-comments | Address PR review comments from automated and human reviewers |
| boulevard | Query Boulevard Admin, Public Client, and Known Client APIs. Compare and sync services between Boulevard instances |
| describe-image | Generates a short text description of an image file using AI |
| feature-dev | A 7-phase standard workflow for robust feature development, from discovery to shipping |
| frontend-design | Guidelines for creating distinctive, non-generic user interfaces |
| gtm-manager | Manage Google Tag Manager containers, tags, triggers, and variables |
| pr-review-guidelines | Rubrics and standards for conducting high-quality code reviews |
| security-guidance | A definitive checklist and detection guide for common security vulnerabilities |
Use the @supercorks/skills-installer CLI to interactively select and install skills:
Installer repository: supercorks/agent-skills-installer
npx @supercorks/skills-installerIf you run into issues with npx resolving the executable, use the explicit form:
npx --package=@supercorks/skills-installer skills-installer installThis will:
- Let you choose the installation path (
.github/skills/(Copilot),~/.codex/skills/(Codex),.claude/skills/(Claude), or custom) - Optionally add the path to
.gitignore - Let you select which skills to install via checkboxes
- Sparse-clone only the selected skills
Use Git sparse-checkout to clone only the skills you need:
# Clone the repo without checking out files
git clone --filter=blob:none --sparse https://github.com/supercorks/agent-skills.git .github/skills
cd .github/skills
# Checkout only the skills you need
git sparse-checkout set address-pr-comments boulevard describe-image gtm-managerCopy the skill folder to your project's .github/skills/ directory:
# From a cloned agent-skills repo
cp -r address-pr-comments /path/to/your/project/.github/skills/If you installed using sparse-checkout (Option 1 or 2):
cd .github/skills # or wherever you installed
git pullEach skill follows this structure:
skill-name/
├── SKILL.md # Main skill documentation (read by AI)
└── scripts/ # Supporting scripts and tools
├── lib.js # Shared utilities
└── *.js # Individual command scripts
- Install skills to
.github/skills/(or.claude/skills/for Claude) - The AI agent will automatically discover and use skills from this location
- Each skill's
SKILL.mdcontains the instructions the AI follows
MIT