Install
openclaw skills install attio-apikeyDirect Attio CRM integration for OpenClaw with full CRUD capabilities. Query, create, update, and delete companies, people, and notes in real-time. Uses Attio API key directly - no OAuth or proxy server required.
openclaw skills install attio-apikeyDirect Attio CRM integration with full CRUD (Create, Read, Update, Delete) operations.
.env.example to .env and add your key# Read data
python3 attio_client.py companies
python3 attio_client.py people
# Create
python3 attio_client.py companies --create --data '{"name": "Acme"}'
# Update
python3 attio_client.py companies --update --id RECORD_ID --data '{"funnel_stage": "Nurture"}'
# Delete
python3 attio_client.py companies --delete --id RECORD_ID
# Add note
python3 attio_client.py companies --note "Title|Content" --id RECORD_ID
attio-direct/
├── attio_client.py # Main CLI
├── .env.example # API key template
├── README.md # Setup instructions
└── SKILL.md # This file