원클릭으로
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