Skip to content

Operating on Tier0 with Agents

Available inEdgeCloudEnterprise

Tier0 provides a set of skills and CLI commands for agents to operate on it.

Required CLI version: v0.4.6+

Choose the installer that matches your environment.

If Node.js 16 or later is available, use npx to install the CLI and skills.

Terminal window
npx @tier0/cli@latest

This runs the full installer and does two things:

  • Installs the tier0 CLI binary into ~/.tier0/bin/.
  • Installs Cursor/Claude Agent Skills from FREEZONEX/Tier0-skill.
  1. Install the tier0 CLI binary.

    Terminal window
    curl -fsSL https://raw.githubusercontent.com/FREEZONEX/Tier0-cli/main/install.sh | bash
  2. Install the Agent Skills.

    Terminal window
    tier0 skills update

The Tier0 Skills give agents a structured way to choose the right CLI command, read the matching reference, and operate Tier0 through the tier0 CLI.

Private deployments must configure the base URL before login. Once it’s configured, all the following commands will be executed on that instance.

Terminal window
tier0 config --base-url https://your-tier0.example.com
  1. Set the API key for the operating instance.

    Terminal window
    tier0 config --api-key <api-key>
  2. Verify the API key identity and permissions.

    Terminal window
    tier0 auth whoami
  3. Perform other operations with the tier0 CLI.

Terminal window
# Remove the Tier0 CLI while keeping local configuration.
npx @tier0/cli@latest uninstall
# Remove the Tier0 CLI and delete local configuration, credentials, skills, and cache.
npx @tier0/cli@latest uninstall --purge

Tier0 Skill Reference lists the supported operation targets, common tasks, and matching CLI commands.