Thanks to visit codestin.com
Credit goes to icepick.hatchet.run

Skip to main content

icepick

CLI tool for managing Icepick components, agents, and tools.

Global Options

OptionDescription
-C, --cwd <path>Change working directory before running command
--versionShow version information

Commands

icepick create [name]

Create a new Icepick project. Arguments:
  • [name] - Project name (optional)
Example:
icepick create my-project

icepick add

Add various resources to your project.

icepick add agent <name>

Add a new agent to the project. Arguments:
  • <name> - Agent name (required)
Example:
icepick add agent my-agent

icepick add tool <name>

Add a new tool to the project. Arguments:
  • <name> - Tool name (required)
Example:
icepick add tool my-tool

icepick mcp

Start the Model Context Protocol server for development (should only be started by coding assistants). Example:
icepick mcp

icepick version

Show version information. Example:
icepick version

Usage Examples

Create a new project

icepick create my-ai-project
cd my-ai-project

Add an agent

icepick add agent customer-support

Add a tool

icepick add tool database-query

Change working directory

icepick -C /path/to/project add agent new-agent