基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/badlogic/atcli --skill atcli命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| 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