Universal skill, workflow & global rules manager for AI coding assistants with bi-directional GitHub sync
One command to manage AI coding skills across Claude Code, Antigravity, Cursor, Windsurf, Codex CLI, and more.
npm install -g agentools # Initialize with your GitHub repo agentools init --repo https://github.com/youruser/my-ai-skills.git # Pull skills from repo and auto-install to platforms agentools pull # Push local changes to repo agentools push
# Add skill sources from GitHub agentools source add https://github.com/vercel-labs/agent-skills.git \ --name vercel-labs --path skills agentools source add https://github.com/affaan-m/everything-claude-code.git \ --name everything-claude-code --path skills # Sync and auto-install to IDEs agentools update
agentools init --repo <url> # Initialize with repository agentools push [--message "msg"] # Push skills to GitHub agentools pull # Pull from GitHub + auto-install
agentools source add <url> [options] # Add custom source agentools source remove <name> # Remove source agentools source list # List all sources agentools source enable/disable <name> # Toggle source agentools source info <name> # View source details
agentools config get/set <key> [value] # Get or set config agentools config edit # Open in $EDITOR agentools config validate # Validate config agentools config export/import [file] # Export or import config agentools config reset --yes # Reset to defaults
agentools update # Update from all sources (pull -> sync -> push -> install) agentools list # List installed skills agentools platforms # Show detected platforms agentools uninstall # Remove installed skills agentools sync-external # Alias for update agentools list-external # List available external skills agentools version # Show version agentools help # Show help
agentools secrets sync # Sync MCP secrets from Bitwarden vaultagentools rules list # List available local rule templates agentools rules add <name> # Install rule to .claude/rules/ + .agents/rules/ agentools rules status # Show rules installed in current project
Securely sync MCP secrets from Bitwarden vault to your shell profile. See Bitwarden MCP Setup for configuration.
| Platform | Skills Path | MCP Support | Global Rules | Format |
|---|---|---|---|---|
| Claude Code | ~/.claude/skills/ |
✅ ~/.claude.json |
✅ ~/.claude/rules/ |
Folder |
| Antigravity IDE | ~/.gemini/antigravity/skills/ |
✅ mcp_config.json |
✅ ~/.gemini/GEMINI.md |
Single file |
| Cursor | ~/.cursor/skills/ |
✅ ~/.cursor/mcp.json |
✅ ~/.cursor/rules/ |
Folder |
| Windsurf | ~/.windsurf/skills/ |
✅ ~/.codeium/windsurf/mcp_config.json |
✅ global_rules.md |
Single file |
| Codex CLI | ~/.codex/skills/ |
✅ ~/.codex/config.toml |
✅ ~/.codex/AGENTS.md |
Single file |
| GitHub Copilot | ~/.github/copilot-instructions.md |
❌ | ❌ | - |
New in v2.10.0: Local Rules — select and install project-level rule templates via CLI or AI workflow.
~/.agentools/config.json # User configuration
~/.agentools/sync-repo/ # Local git clone for sync
~/.agentools-external-cache/ # Cached external repos
# Export your config agentools config export team-config.json # Team members import agentools config import team-config.json --merge
MIT