How to package, distribute, and install a11y-agent-team agents in different environments.
The primary distribution method. All agents, skills, and configuration are stored in the repository.
Install:
gh skill install Community-Access/accessibility-agents
gh skill setup Community-Access/accessibility-agentsUpdate:
gh extension upgrade gh-skill
gh skill setup Community-Access/accessibility-agentsAdvantages:
- Full agent set with all configuration
- Update support via
gh skillcommands - Works for Claude Code, Copilot, Claude Desktop, and Codex CLI simultaneously
- Git-based versioning and rollback
Copy only the GitHub Copilot files into an existing project:
# Copy agents
cp -r .github/agents/ /path/to/project/.github/agents/
# Copy workspace instructions
cp .github/copilot-instructions.md /path/to/project/.github/
# Copy skills (optional)
cp -r .github/skills/ /path/to/project/.github/skills/
# Copy prompts (optional)
cp -r .github/prompts/ /path/to/project/.github/prompts/
# Copy VS Code config
cp -r .vscode/ /path/to/project/.vscode/Minimal install (agents only):
cp -r .github/agents/ /path/to/project/.github/agents/
cp .github/copilot-instructions.md /path/to/project/.github/Copy only the Claude Code files into an existing project:
# Copy agents
cp -r .claude/agents/ /path/to/project/.claude/agents/Copy the Gemini CLI extension into an existing project:
# Copy extension (includes manifest, context file, and all skills)
cp -r .gemini/extensions/a11y-agents/ /path/to/project/.gemini/extensions/a11y-agents/Global install (available in all projects):
cp -r .gemini/extensions/a11y-agents/ ~/.gemini/extensions/a11y-agents/What's included:
gemini-extension.json-- extension manifestGEMINI.md-- always-on accessibility context loaded into every conversationskills/-- 80 agent skills + 18 knowledge domain skills, each asSKILL.mdwith YAML frontmatter
Create a focused package with only the agents you need:
Web-only package (no document agents):
.github/agents/
accessibility-lead.agent.md
aria-specialist.agent.md
modal-specialist.agent.md
contrast-master.agent.md
keyboard-navigator.agent.md
live-region-controller.agent.md
forms-specialist.agent.md
alt-text-headings.agent.md
tables-data-specialist.agent.md
link-checker.agent.md
accessibility-wizard.agent.md
testing-coach.agent.md
wcag-guide.agent.md
Document-only package:
.github/agents/
document-accessibility-wizard.agent.md
document-inventory.agent.md
cross-document-analyzer.agent.md
word-accessibility.agent.md
excel-accessibility.agent.md
powerpoint-accessibility.agent.md
pdf-accessibility.agent.md
office-scan-config.agent.md
pdf-scan-config.agent.md
.github/skills/
accessibility-rules/SKILL.md
document-scanning/SKILL.md
report-generation/SKILL.md
PDF-only package:
.github/agents/
pdf-accessibility.agent.md
pdf-scan-config.agent.md
templates/
pdf-config-moderate.json
mcp-server/
package.json
README.md
PDF-QUICKSTART.md
server.js
server-core.js
stdio.js
tools/
This is the smallest package in this repository that provides both the guided PDF chat workflow and the open-source scanning implementation.
To add organization-specific rules or agents:
- Fork the repository
- Add custom agents in
.github/agents/or.claude/agents/ - Update
copilot-instructions.mdwith your custom agents - Add organization-specific scan configuration in
templates/ - Distribute the fork URL to your team
Use git tags for specific versions:
git clone --branch v1.0.0 https://github.com/Community-Access/accessibility-agents.gitgh skill follows the installed skill source. To pin, install from a tagged checkout:
git clone --branch v1.0.0 https://github.com/Community-Access/accessibility-agents.git
cd accessibility-agents
gh skill install .Approximate sizes for planning distribution:
| Component | Files | Size |
|---|---|---|
| Claude Code agents | 20 .md files |
~350 KB |
| Copilot agents | 22 .agent.md files |
~400 KB |
| Agent Skills | 3 SKILL.md files |
~30 KB |
| Prompts | 9 .prompt.md files |
~15 KB |
| Templates | 7 config files | ~10 KB |
| VS Code config | 4 files | ~5 KB |
| Documentation | Various | ~120 KB |
| Total | ~65 files | ~900 KB |