Getting Started
Set up the Intertool CLI and install your first skill.
Prerequisites
- Node.js 20+
- A GitHub account that belongs to your organization
- Your team's Intertool registry URL
Install the CLI from source
Until the npm package is published, build and link the CLI from this repository:
cd cli
npm install
npm run build
npm linkAfter the npm package is released, you can install it globally instead:
npm install -g intertoolAuthenticate
Log in to your organization's registry:
intertool login --url https://your-registry.example.comFor SaaS registries, use your organization path:
intertool login --url https://intertool.sh/example-orgThis opens a browser window for OAuth. Once authenticated, your token is stored locally at ~/.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.
If the published item includes package files, the CLI downloads those files into the same install directory and writes .intertool.json metadata used by intertool update.
List installed skills
intertool listNext steps
- Using the CLI for end-to-end install, update, publish, and automation workflows
- Publishing skills to share your own work
- CLI reference for all available commands
- API overview for programmatic access