Skip to main content

Installation

Skills live in the zincio/skills catalog and install with the skills CLI.

Configuration

Set up one authentication method, depending on how you want to pay.
For a pre-registered Zinc account, set the ZINC_API_KEY environment variable before starting your agent:
export ZINC_API_KEY=your-api-key
Get your key from the Zinc dashboard and deposit funds to place orders.

OpenClaw configuration file

If you’re using OpenClaw, you can set the API key through the config file instead of an environment variable:
~/.openclaw/openclaw.json
{
  "skills": {
    "entries": {
      "universal-checkout": {
        "enabled": true,
        "env": {
          "ZINC_API_KEY": "your-api-key"
        }
      }
    }
  }
}

Verifying the Installation

Start your agent and ask:
“List my recent Zinc orders.”
If the skill loaded correctly, the agent makes a GET /orders request and returns your order history. An authentication error usually means ZINC_API_KEY isn’t set (or, on MPP, that no payment method is configured).

Updating

Re-run the install command to pull the latest version:
npx skills add zincio/skills --skill universal-checkout