Getting Started
Set up the Intertool CLI and install your first skill.
Prerequisites
- Node.js 18+
- A GitHub account that belongs to your organization
- Your team's Intertool registry URL
Install the CLI
npm install -g intertoolAuthenticate
Log in to your organization's registry:
intertool login --url https://your-registry.example.comThis opens a browser window for GitHub OAuth. Once authenticated, your token is stored locally at ~/.config/intertool/config.json.
Verify
intertool whoamiSearch for skills
intertool search "code review"Install a skill
intertool install @team/code-reviewFor skills, agent tools, and prompt templates, this writes a SKILL.md file to .claude/skills/<slug>/SKILL.md in your current project.
For MCP servers, it writes a server.json to .claude/mcp-servers/<slug>/server.json with the server configuration and install commands.
List installed skills
intertool listNext steps
- Publishing skills to share your own work
- CLI reference for all available commands
- API overview for programmatic access