Himadajin's personal agent skills.
Personal skills should be managed in ~/.agents/skills/ as the single source of truth.
The skill format itself is shared, so keeping one canonical directory avoids duplicating the same skill per agent or per project.
This works well because Codex uses ~/.agents/skills/ natively,
GitHub Copilot also supports ~/.agents/skills/ across its agent surfaces,
and Claude Code can follow the same directory through a symlink.
Use ~/.agents/skills/ as the real directory, then connect agent-specific locations to it with symlinks where needed:
-
Claude Code
- Location:
~/.claude/skills/ - Setup: symlink
~/.claude/skills->~/.agents/skills
- Location:
-
Codex
- Location:
~/.agents/skills/ - Setup: use directly
- Location:
-
GitHub Copilot CLI
- Location:
~/.agents/skills/or~/.copilot/skills/ - Setup: prefer
~/.agents/skills/; if you also use~/.copilot/skills/, symlink it to the same directory
- Location:
-
GitHub Copilot cloud agent
- Location:
~/.agents/skills/or~/.copilot/skills/ - Setup: manage shared personal skills in
~/.agents/skills/
- Location:
-
GitHub Copilot in VS Code
- Location:
~/.agents/skills/,~/.claude/skills/, or~/.copilot/skills/ - Setup: prefer
~/.agents/skills/; keep the others as symlinks only if needed
- Location:
This keeps shared skills centralized in one place while still matching each agent's discovery rules.
mkdir -p ~/.agents/skills ~/.claude ~/.copilot
ln -sfn ~/.agents/skills ~/.claude/skills
ln -sfn ~/.agents/skills ~/.copilot/skillsClaude and ChatGPT accept skills as zip uploads. Each release of this repository
attaches one <skill-name>.zip per skill, in the folder layout both services expect.
Download the zip for the skill you need from the latest release and upload it in the chat app's skill settings. See docs/releasing.md for how releases are produced.
References:
- Overview - Agent Skills
- Extend Claude with skills - Claude Code Docs
- Agent Skills – Codex | OpenAI Developers
- Adding agent skills for GitHub Copilot CLI - GitHub Docs
- Use Agent Skills in VS Code
Related repositories: