LaunchKit · 2026
Back to Skills

Interact with your Attio CRM workspace via the attio-cli.

0
1.3k downloads
by @froemic

Setup & Installation

openclaw skills install @froemic/attio-cli

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install attio-cli

What This Skill Does

A CLI tool for interacting with Attio CRM workspaces from the command line. Supports listing objects, records, and pipeline entries, plus generating a full workspace schema as a markdown reference file.

Lets you query and update Attio CRM directly from scripts or AI agents without navigating the web UI.

When to use it

  • Look up a contact's details without opening the Attio web app
  • Add a new company record from a terminal workflow
  • Check what deals are in a sales pipeline stage
  • Generate a workspace schema to give an AI agent CRM context
  • Query people records by email address in a script

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: find all entries in my hiring pipeline

AGENT
  1. 1Run `attio list list-all` to find the slug for the hiring list
  2. 2Run `attio entry list hiring` to retrieve all entries
  3. 3Parse the returned records to extract candidate names and stages
OUTPUT

A list of candidates with their current hiring pipeline stages

Requirements

Accounts, API keys, or tools you or your AI assistant may need to set up while using this skill.

ATTIO_API_KEY environment variable (from Attio Settings > Developers > API Keys)Attio accountattio-cli installed via cloning https://github.com/FroeMic/attio-cli and running npm install && npm link