← Back to Skills Marketplace
kesslerio

Attio CRM

by kesslerio · GitHub ↗ · v1.0.0
cross-platform ⚠ suspicious
2066
Downloads
4
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install attio-crm
Description
Manage Attio CRM records (companies, people, deals, tasks, notes). Search, create, update records and manage deal pipelines.
README (SKILL.md)

Attio CRM

Quick Commands

# Search for records
attio search companies "Acme"
attio search deals "Enterprise"
attio search people "John"

# Get record details by ID
attio get companies "record-uuid"
attio get deals "record-uuid"

# Add a note to a record
attio note companies "record-uuid" "Title" "Note content here"

# List notes on a record
attio notes companies "record-uuid"

# See available fields for a record type
attio fields companies
attio fields deals

# Get select field options (e.g., deal stages)
attio options deals stage

Golden Rules

  1. Discover fields first - Run attio fields \x3Ctype> before updating records
  2. Check select options - Run attio options \x3Ctype> \x3Cfield> for dropdown values
  3. Use internal values - Select fields use internal names, not display labels
  4. When uncertain, use notes - Put unstructured data in notes, not record fields
  5. Format data correctly - Numbers as 85, arrays as ["Value"], booleans as true/false

Workflow Index

Load these references as needed:

  • Company workflows - references/company_workflows.md
  • Deal workflows - references/deal_workflows.md
  • Field guide - references/field_guide.md

Command Reference

Command Description
attio search \x3Ctype> "\x3Cquery>" Search records
attio get \x3Ctype> \x3Cid> Get record details
attio update \x3Ctype> \x3Cid> record_data='{...}' Update record
attio create \x3Ctype> record_data='{...}' Create record
attio delete \x3Ctype> \x3Cid> Delete record
attio note \x3Ctype> \x3Cid> "\x3Ctitle>" "\x3Ccontent>" Add note
attio notes \x3Ctype> \x3Cid> List notes
attio fields \x3Ctype> List available fields
attio options \x3Ctype> \x3Cfield> Get select options

Record types: companies, people, deals, tasks

Common Workflows

Look up a company

attio search companies "Acme Corp"

Get deal details

attio get deals "deal-uuid-here"

Add meeting notes to company

attio note companies "company-uuid" "Meeting Notes" "Discussed pricing. Follow up next week."

Check deal stages before updating

attio options deals stage

Update deal stage

attio update deals "deal-uuid" record_data='{"stage":"negotiation"}'

Pipeline Stages

Never hard-code stage names. Always check first:

attio options deals stage

Use the internal value (e.g., negotiation), not the display label (e.g., "Negotiation").

Usage Guidance
This skill largely does what it claims (Attio CRM workflows) but has a few red flags you should verify before installing: - Manifest vs files mismatch: the declared required binary is 'attio', but setup and docs install/use 'attio-mcp' and mcporter. Confirm which CLI/server the environment needs and that those binaries are trustworthy. - Missing declared env var: README and setup.sh require ATTIO_WORKSPACE_ID in addition to ATTIO_ACCESS_TOKEN. The skill metadata omits the workspace ID — assume the setup will ask for both. - Persistent plaintext credentials: setup.sh writes your ATTIO_ACCESS_TOKEN and WORKSPACE_ID into ~/.config/mcporter/servers/attio/config.json in cleartext. If you install, consider restricting file permissions, using a secrets manager, or avoiding persisting the token. - Installer actions: setup.sh runs npm install -g attio-mcp (global package install), creates directories under your home, and symlinks the skill. Run the script manually (not as root), inspect attio-mcp on npm/GitHub first, and run in a controlled environment if you have doubts. - Source/ownership: registry metadata shows an owner ID and no homepage; the README links to a GitHub repo but the package origin isn't proven by the registry entry. If you need to trust this skill, verify the attio-mcp project and the repository owner directly. If any of the above is unacceptable, do not run setup.sh; instead manually install and configure only the components you trust and keep tokens out of persistent configs where possible.
Capability Analysis
Type: OpenClaw Skill Name: attio-crm Version: 1.0.0 The skill bundle is designed for managing Attio CRM records and appears benign. The `setup.sh` script performs standard installation steps, including installing the `attio-mcp` Node.js CLI tool via `npm` and configuring API credentials (`ATTIO_ACCESS_TOKEN`, `ATTIO_WORKSPACE_ID`) by prompting the user or loading from a `.env` file, then storing them in a `mcporter` configuration file. The `SKILL.md` and associated markdown documentation provide clear instructions for the AI agent on how to interact with the Attio CRM using the `attio` command-line tool, without any evidence of prompt injection attempts to subvert the agent's purpose or perform unauthorized actions. All actions are aligned with the stated goal of CRM management.
Capability Assessment
Purpose & Capability
The skill's stated purpose (manage Attio CRM) matches the content of SKILL.md and reference docs. However, declared required binary is 'attio' while the README and setup.sh install and configure 'attio-mcp' and use mcporter; this inconsistency suggests the manifest doesn't accurately describe what will actually be used. A legitimate Attio skill might need attio-mcp and mcporter — the mismatch should be resolved.
Instruction Scope
SKILL.md runtime instructions are limited to running the attio CLI for CRM operations (expected). But the repository also includes a setup.sh that reads a local .env (if present), prompts for credentials, writes a mcporter server config, and symlinks the skill into ~/.clawdbot/skills. The setup actions go beyond just documentation: they persist credentials and modify user config directories, which is scope-expanding compared to the minimal SKILL.md metadata.
Install Mechanism
There is no platform install spec, but setup.sh will run npm install -g attio-mcp if required. Installing from the public npm registry is a common pattern (moderate risk) — nothing indicates a malicious download URL. Still, setup.sh performs global npm installs and filesystem changes, so run it manually and inspect the package(s) beforehand.
Credentials
The skill metadata and registry list only ATTIO_ACCESS_TOKEN as a required env var, but README and setup.sh also require ATTIO_WORKSPACE_ID and the mcporter config stores both. The setup script will prompt for and then write both values into ~/.config/mcporter/servers/attio/config.json in plaintext. Requesting and persisting the workspace ID is reasonable for connecting to Attio, but the manifest should declare it; storing API tokens unencrypted on disk increases exposure.
Persistence & Privilege
The skill is not marked 'always', and agent autonomous invocation remains allowed (default). The setup script will create/overwrite ~/.config/mcporter/servers/attio/config.json and symlink the skill into ~/.clawdbot/skills/attio, i.e., it modifies user config and persists credentials. That behavior is plausible for a Moltbot skill but is a privilege that merits caution because it leaves credentials and config on disk.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install attio-crm
  3. After installation, invoke the skill by name or use /attio-crm
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial ClawHub release
Metadata
Slug attio-crm
Version 1.0.0
License
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Attio CRM?

Manage Attio CRM records (companies, people, deals, tasks, notes). Search, create, update records and manage deal pipelines. It is an AI Agent Skill for Claude Code / OpenClaw, with 2066 downloads so far.

How do I install Attio CRM?

Run "/install attio-crm" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Attio CRM free?

Yes, Attio CRM is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Attio CRM support?

Attio CRM is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Attio CRM?

It is built and maintained by kesslerio (@kesslerio); the current version is v1.0.0.

💬 Comments