intertool

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 link

After the npm package is released, you can install it globally instead:

npm install -g intertool

Authenticate

Log in to your organization's registry:

intertool login --url https://your-registry.example.com

For SaaS registries, use your organization path:

intertool login --url https://intertool.sh/example-org

This opens a browser window for OAuth. Once authenticated, your token is stored locally at ~/.intertool/config.json.

Verify

intertool whoami

Search for skills

intertool search "code review"

Install a skill

intertool install @team/code-review

For 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 list

Next steps

On this page