Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计通过

attio-crmattio CRM 搜索

Agent Skill

attio-crm 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

5,214

周安装

213

GitHub Stars

11

下载量

1,670
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:attio-crm(attio CRM 搜索)
来源仓库:https://github.com/casper-studios/casper-marketplace
仓库路径:skills/attio-crm
安装命令:
npx skills add https://github.com/casper-studios/casper-marketplace --skill attio-crm
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/casper-studios/casper-marketplace --skill attio-crm

简介

attio-crm 提供 Attio CRM 系统的程序化交互能力,管理公司、联系人、笔记与交易记录。

  • 支持通过脚本批量创建更新实体、关联人员与添加备注,提升 CRM 维护效率。
  • 可解析 Attio 专属 URL 自动提取上下文信息,减少人工录入错误概率。
  • 使用前需设置 API token 并授予相应读写权限,私有字段访问受安全策略限制。
  • attio-crm 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Attio CRM

Overview

Interact with Attio CRM to manage companies, contacts, notes, and deals programmatically.

Quick Decision Tree

What do you need?
│
├── Get/search companies
│   └── references/api-guide.md
│   └── Script: scripts/attio_api.py get-company / search-companies
│
├── Create/update company
│   └── Script: scripts/attio_api.py create-company / update-company
│
├── Create/link contacts
│   └── Script: scripts/attio_api.py create-person
│
├── Add notes to records
│   └── Script: scripts/attio_api.py create-note
│
└── Parse Attio URLs
    └── Script: scripts/attio_api.py parse-url

Environment Setup

# Required in .env
ATTIO_API_KEY=your_api_key_here

Get your API key: Attio Settings → Developers → API Keys

Required Scopes

ScopeOperations
record:readGet/search companies and people
record:writeCreate/update companies and people
note:readList and get notes
note:writeCreate and delete notes

Common Usage

Search Companies

python scripts/attio_api.py search-companies "Acme Corp" --limit 10

Get Company

python scripts/attio_api.py get-company <record_id>

Create Company

python scripts/attio_api.py create-company "Microsoft" --domain "microsoft.com"

Create Contact

python scripts/attio_api.py create-person "john@acme.com" --first-name "John" --last-name "Smith"

Add Note

python scripts/attio_api.py create-note <record_id> "Meeting Notes" "Discussion summary..."

Rate Limits

  • 100 requests per minute
  • Automatic retry with exponential backoff

Cost

Free - Attio API has generous free tier.

Security Notes

Credential Handling

  • Store ATTIO_API_KEY in .env file (never commit to git)
  • Generate keys in Attio: Settings > Developers > API Keys
  • Rotate keys periodically or if compromised
  • Never log or print API keys in script output

Data Privacy

  • CRM contains sensitive customer and prospect information
  • Company records include business details and contact info
  • People records contain PII (names, emails, phone numbers)
  • Notes may contain confidential meeting discussions
  • Avoid exporting full CRM data unnecessarily

Access Scopes

  • Request minimum required scopes:

- record:read - Read companies and people (read-only) - record:write - Create/update records (write access) - note:read - Read notes (read-only) - note:write - Create notes (write access)

  • API keys can be scoped to specific permissions

Compliance Considerations

  • PII Protection: Customer data is subject to privacy regulations
  • GDPR: EU customer data requires GDPR compliance
  • Data Minimization: Only access/export data you need
  • Audit Trail: Log CRM operations for compliance auditing
  • Data Retention: Follow organizational data retention policies
  • Access Control: Limit API key distribution to authorized users
  • Customer Consent: Ensure proper consent for data processing

Troubleshooting

Common Issues

Issue: Invalid field ID / slug

Symptoms: "Field not found" or "Invalid attribute" error Cause: Field slug doesn't match Attio workspace configuration Solution:

  • Check field slugs in Attio: Settings > Objects > Fields
  • Field slugs are case-sensitive (e.g., company_name not Company_Name)
  • Custom fields have unique slugs - verify exact spelling
  • Use API to list available fields if unsure

Issue: Rate limited

Symptoms: 429 status code or "rate limit exceeded" Cause: Exceeding 100 requests per minute limit Solution:

  • Implement exponential backoff between requests
  • Batch multiple operations into single requests where possible
  • Add delays (600ms+) between consecutive requests
  • Queue requests and process gradually

Issue: Record not found

Symptoms: "Record not found" error with known record Cause: Invalid record ID, deleted record, or wrong object type Solution:

  • Verify record ID from Attio URL or previous API response
  • Check if record was deleted or merged
  • Ensure using correct object type (companies vs people)
  • Use search endpoint to find record by name/email

Issue: API key invalid

Symptoms: 401 Unauthorized or "invalid API key" Cause: Key expired, revoked, or incorrectly configured Solution:

  • Regenerate API key in Attio: Settings > Developers > API Keys
  • Verify ATTIO_API_KEY is correctly set in .env
  • Check for leading/trailing whitespace in key
  • Ensure key has required scopes for operation

Issue: Insufficient permissions

Symptoms: "Forbidden" error or missing data Cause: API key missing required scopes Solution:

  • Review key scopes in Attio: Settings > Developers > API Keys
  • Create new key with required scopes (record:read, record:write, etc.)
  • For notes: ensure note:read and note:write scopes
  • Workspace admin may need to grant additional permissions

Issue: Duplicate record created

Symptoms: Same company/person appears multiple times Cause: No deduplication on create, or different field values Solution:

  • Search before creating to check for existing records
  • Use primary identifier (domain for companies, email for people)
  • Consider using update-or-create pattern
  • Merge duplicates manually in Attio UI

Resources

  • references/api-guide.md - Complete API documentation
  • references/integration.md - CRM integration patterns

Integration Patterns

Meeting Notes to CRM

Skills: transcript-search → attio-crm Use case: Add meeting summaries to company records Flow:

  1. Search transcript-search for client meetings
  2. Extract key points, action items, and summary
  3. Create note on Attio company record with meeting details

Research to CRM

Skills: parallel-research → attio-crm Use case: Enrich CRM records with research data Flow:

  1. Run parallel-research on company for latest info
  2. Extract funding, team size, tech stack, news
  3. Update Attio company record with enriched fields

Voice Agent to CRM

Skills: voice-agents → attio-crm Use case: Log AI call summaries to CRM Flow:

  1. Voice agent completes discovery or feedback call
  2. Extract call summary and key insights
  3. Add note to Attio record with call summary and next steps

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.49%
按下载量换算626

Claude

29.64%
按下载量换算495

Cursor

19.88%
按下载量换算332

Gemini CLI

8.3%
按下载量换算139

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills