A collection of AI agent skills for VS Code (GitHub Copilot), Claude Code, Cursor, and any agent-compatible IDE.
Each subfolder contains a self-contained skill with a SKILL.md file that agents load automatically when a matching request is detected.
| Skill | Description |
|---|---|
| skill-manager | Interactive skill management - uninstall skills with fzf fuzzy finder |
| obsidian-commander | Manage Obsidian vaults from any IDE or CLI |
| graph-it-live | Analyze code dependencies, call graphs, and architecture |
| onboarding-express | Guided architectural tour for new developers using Graph-It-Live |
| dead-code-hunter | Scan the dependency graph for orphan symbols and propose safe deletions |
npx skills add magic5644/skills/<skill-name>Replace <skill-name> with any folder name listed above. Examples:
npx skills add magic5644/skills/obsidian-commander
npx skills add magic5644/skills/graph-it-livegit clone https://github.com/magic5644/skills.gitThen copy the skill folder you need to your agent's skill directory:
VS Code / GitHub Copilot:
cp -r skills/<skill-name> ~/.copilot/skills/<skill-name>Claude Code:
cp -r skills/<skill-name> ~/.claude/skills/<skill-name>Generic agents:
cp -r skills/<skill-name> ~/.agents/skills/<skill-name>As a project skill (scoped to a single repo):
cp -r skills/<skill-name> .github/skills/<skill-name>Copy-Item -Recurse skills\<skill-name> "$env:USERPROFILE\.copilot\skills\<skill-name>"