Shared agent skills / instructions repo for Claude Code, Codex, agy, and GitHub Copilot.
- keep one shared skill source in
.agents/skills/ - keep one canonical instruction source in
AGENTS.md - expose tool-specific instruction entry points without duplicating the rules
This repo intentionally keeps the README high level. Browse .agents/skills/ directly for the actual skills.
- Codex:
AGENTS.md - Claude Code:
CLAUDE.md - agy:
GEMINI.md - Copilot:
.github/copilot-instructions.md
CLAUDE.md, GEMINI.md, and .github/copilot-instructions.md should stay thin wrappers around the canonical rules in AGENTS.md.
Use symlinks, not copies, so this repo stays the source of truth.
If a tool supports a global skills directory, a symlink is enough:
ln -s ~/agents/.agents/skills ~/.codex/skills
ln -s ~/agents/.agents/skills ~/.copilot/skills
ln -s ~/agents/.agents/skills ~/.gemini/antigravity-cli/skillsIn this setup, agy / Antigravity CLI uses ~/.gemini/antigravity-cli/skills for user-level global skills, so it can point at the same shared .agents/skills/ directory.
Copilot supports a user-level instructions file, so this can also be a symlink:
ln -s ~/agents/AGENTS.md ~/.copilot/copilot-instructions.mdFor repo-local usage, keep these files at the repo root:
AGENTS.mdCLAUDE.mdGEMINI.md.github/copilot-instructions.md