TopRank Skills

Home / Claw Skills / Autres / attio-apikey
Official OpenClaw rules 15%

attio-apikey

Direct 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.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 attio-apikey 技能。 若已安装,则直接安装 attio-apikey 技能。

Overview

Skill Key
felicitationes/attio-apikey
Author
felicitationes
Source Repo
openclaw/skills
Version
-
Source Path
skills/felicitationes/attio-apikey
Latest Commit SHA
6eea45037116c54ee9738f9ee7371da0bd55f483

Extracted Content

SKILL.md excerpt

# Attio Direct Skill

Direct Attio CRM integration with full CRUD (Create, Read, Update, Delete) operations.

## Setup

1. Get API key from https://app.attio.com/settings/api
2. Copy `.env.example` to `.env` and add your key

## Quick Commands

```bash
# 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
```

## Features

- Full CRUD on companies and people
- Add notes to any record
- Query with pagination (default 5000)
- Direct API - no OAuth overhead

## Files

```
attio-direct/
├── attio_client.py    # Main CLI
├── .env.example       # API key template
├── README.md          # Setup instructions
└── SKILL.md          # This file
```

README excerpt

# Attio Apikey

Direct Attio CRM integration for OpenClaw — full CRUD (Create, Read, Update, Delete) for companies, people, and notes.

## ⚠️ Security Setup

1. **Get your Attio API key:**
   - Go to https://app.attio.com/settings/api
   - Create a new API key with Read/Write permissions
   - **Tip:** Create a dedicated key with minimal permissions for this skill

2. **Copy the env template:**
   ```bash
   cp .env.example .env
   ```

3. **Add your API key:**
   ```bash
   # Edit .env and replace with your key
   ATTIO_API_KEY="your-key-here"
   ```

## Security Recommendations

- Use a dedicated API key with minimal permissions
- Don't share your key publicly
- Consider rotating the key periodically
- Monitor your Attio API usage for anomalies

## Usage

```bash
# Query companies
python3 attio_client.py companies

# Query people
python3 attio_client.py people

# Create a company
python3 attio_client.py companies --create --data '{"name": "Acme Corp"}'

# Add a note to a company
python3 attio_client.py companies --note "Title|Content" --id RECORD_ID

# Update a company stage
python3 attio_client.py companies --update --id RECORD_ID --data '{"funnel_stage": "Nurture"}'
```

## Options

| Flag | Description |
|------|-------------|
| `--limit N` | Number of results (default: 5000) |
| `--create` | Create new record |
| `--update` | Update existing record |
| `--delete` | Delete record |
| `--id` | Record ID for update/delete/note |
| `--data` | JSON data for create/update |
| `--note` | Add note: "title\|content" |

## Requirements

- Python 3.7+
- Attio API key with appropriate permissions

## Author

- felixwithoutx

Related Claw Skills