intertool

CLI Reference

Complete reference for all Intertool CLI commands.

Global options

FlagDescription
--jsonOutput as JSON (for CI/CD pipelines)
--versionShow CLI version
--helpShow help

Commands

login

Authenticate with a registry instance.

intertool login --url https://your-registry.example.com
FlagDescription
--url <url>Registry instance URL (required)
--token <token>API key to skip the browser OAuth flow

Opens a browser for GitHub OAuth unless --token is provided. Stores credentials in ~/.config/intertool/config.json.

logout

Remove stored credentials.

intertool logout

whoami

Show the currently authenticated user and registry URL.

intertool whoami

Search for skills by keyword.

intertool search "code review"

install

Install a skill, MCP server, agent tool, or prompt template into the current project.

intertool install @team/skill-name
  • Skills / agent tools / prompt templates: writes to .claude/skills/<slug>/SKILL.md
  • MCP servers: writes to .claude/mcp-servers/<slug>/server.json

Automatically adds installed paths to .gitignore.

remove (alias: rm)

Remove an installed skill or MCP server from the current project.

intertool remove skill-name

list (alias: ls)

List locally installed skills and MCP servers.

intertool list

info

Show detailed information about a skill.

intertool info skill-name

publish

Publish a skill to the registry.

intertool publish SKILL.md
intertool publish server.json --type mcp-server --category integrations
FlagDescription
--nameSkill name
--typeType: skill, mcp-server, agent-tool, prompt-template
--descriptionShort description
--categoryCategory slug
--tagsComma-separated tags
--source-urlSource repository URL

update

Re-install a skill to get the latest version. Full update checking is not yet available.

intertool install @team/skill-name

On this page