CLI Reference
Complete reference for all Intertool CLI commands.
Global options
| Flag | Description |
|---|---|
--json | Output as JSON (for CI/CD pipelines) |
--version | Show CLI version |
--help | Show help |
Commands
login
Authenticate with a registry instance.
intertool login --url https://your-registry.example.com| Flag | Description |
|---|---|
--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 logoutwhoami
Show the currently authenticated user and registry URL.
intertool whoamisearch
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-namelist (alias: ls)
List locally installed skills and MCP servers.
intertool listinfo
Show detailed information about a skill.
intertool info skill-namepublish
Publish a skill to the registry.
intertool publish SKILL.md
intertool publish server.json --type mcp-server --category integrations| Flag | Description |
|---|---|
--name | Skill name |
--type | Type: skill, mcp-server, agent-tool, prompt-template |
--description | Short description |
--category | Category slug |
--tags | Comma-separated tags |
--source-url | Source repository URL |
update
Re-install a skill to get the latest version. Full update checking is not yet available.
intertool install @team/skill-name