一键导入
atcli
Attio REST API CLI for records, lists, tasks, and raw API calls. Use when accessing Attio workspaces from the terminal.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Attio REST API CLI for records, lists, tasks, and raw API calls. Use when accessing Attio workspaces from the terminal.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | atcli |
| description | Attio REST API CLI for records, lists, tasks, and raw API calls. Use when accessing Attio workspaces from the terminal. |
Minimal Attio CLI using the REST API directly. No MCP server.
When this is installed as a pi package from git, pi runs npm install, which runs the build. From this skill directory, invoke the CLI with:
node ../../dist/cli.js <args>
If installed globally with npm, atcli <args> also works.
atcli needs an Attio access token before it can make API calls.
Create or update a token in your workspace's developer settings:
https://app.attio.com/<workspace-slug>/settings/developers/access-tokens
Set the permission options/scopes you need, then click Save changes. Copy the token and save it locally under an account name:
node ../../dist/cli.js accounts token work <token>
# or, if ATTIO_TOKEN is set
node ../../dist/cli.js accounts token work $ATTIO_TOKEN
Tokens are stored in ~/.atcli/accounts.json.
node ../../dist/cli.js accounts list
node ../../dist/cli.js work me
node ../../dist/cli.js work objects
node ../../dist/cli.js work records people --limit 10
node ../../dist/cli.js work records companies --filter '{"name":"Acme"}' --json
node ../../dist/cli.js work raw GET /objects/people/attributes
Use raw for endpoints not yet wrapped by first-class commands:
node ../../dist/cli.js work raw GET /objects/people/attributes
node ../../dist/cli.js work raw POST /objects/people/records/query '{"limit":5}'
node ../../dist/cli.js work raw PATCH /objects/people/records/<recordId> @body.json