Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Command-line tool to list, get, and manage objects, records, and lists in your Attio CRM workspace via the Attio API.
Command-line tool to list, get, and manage objects, records, and lists in your Attio CRM workspace via the Attio API.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
Interact with your Attio CRM workspace via the attio-cli.
Clone and install the CLI: git clone https://github.com/FroeMic/attio-cli cd attio-cli npm install npm link Set ATTIO_API_KEY environment variable (get it from Attio Settings > Developers > API Keys): Recommended: Add to ~/.claude/.env for Claude Code Alternative: Add to ~/.bashrc or ~/.zshrc: export ATTIO_API_KEY="your-api-key" Repository: https://github.com/FroeMic/attio-cli
List objects and records: attio object list # List all objects attio record list people # List people records attio record list companies # List company records Work with lists (pipelines): attio list list-all # List all lists attio entry list <list-slug> # List entries in a list Get detailed info: attio object get <object-slug> # Get object details attio object attributes <object-slug> # Get object attributes attio list attributes <list-slug> # Get list entry attributes
Generate a markdown schema of your workspace for context: bash {baseDir}/scripts/generate-schema.sh > {baseDir}/workspace.schema.md This creates a reference file documenting all objects, attributes, lists, and field options in your workspace.
ConceptPurposeExampleObjectsBase record typesPeople, Companies, DealsListsPipeline/workflow managementSales Pipeline, HiringRecordsIndividual items in objectsA specific person or companyEntriesRecords added to a listA deal in the Sales Pipeline
Base URL: https://api.attio.com/v2 Auth: Authorization: Bearer $ATTIO_API_KEY Rate Limits: 100 requests per 10 seconds per workspace
Search for a person: curl -X POST https://api.attio.com/v2/objects/people/records/query \ -H "Authorization: Bearer $ATTIO_API_KEY" \ -H "Content-Type: application/json" \ -d '{"filter": {"email_addresses": {"contains": "john@example.com"}}}' Create a record: curl -X POST https://api.attio.com/v2/objects/<object-slug>/records \ -H "Authorization: Bearer $ATTIO_API_KEY" \ -H "Content-Type: application/json" \ -d '{"data": {"values": {"name": [{"value": "Record Name"}]}}}' Add entry to a list: curl -X POST https://api.attio.com/v2/lists/<list-slug>/entries \ -H "Authorization: Bearer $ATTIO_API_KEY" \ -H "Content-Type: application/json" \ -d '{"data": {"parent_record_id": "<record-id>"}}'
Run generate-schema.sh after installing to create a workspace schema file with all your objects, lists, and field options. Lists are commonly used to manage pipelines (sales stages, hiring workflows, etc.). The CLI requires jq for JSON processing in schema generation.
Workflow acceleration for inboxes, docs, calendars, planning, and execution loops.
Largest current source with strong distribution and engagement signals.