{
  "schemaVersion": "1.0",
  "item": {
    "slug": "attio-cli",
    "name": "Attio CRM CLI",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/FroeMic/attio-cli",
    "canonicalUrl": "https://clawhub.ai/FroeMic/attio-cli",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/attio-cli",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=attio-cli",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/generate-schema.sh"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "slug": "attio-cli",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T04:36:10.028Z",
      "expiresAt": "2026-05-06T04:36:10.028Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=attio-cli",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=attio-cli",
        "contentDisposition": "attachment; filename=\"attio-cli-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "attio-cli"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/attio-cli"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/attio-cli",
    "agentPageUrl": "https://openagent3.xyz/skills/attio-cli/agent",
    "manifestUrl": "https://openagent3.xyz/skills/attio-cli/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/attio-cli/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "attio-cli",
        "body": "Interact with your Attio CRM workspace via the attio-cli."
      },
      {
        "title": "Install",
        "body": "Clone and install the CLI:\n\ngit clone https://github.com/FroeMic/attio-cli\ncd attio-cli\nnpm install\nnpm link\n\nSet ATTIO_API_KEY environment variable (get it from Attio Settings > Developers > API Keys):\n\nRecommended: Add to ~/.claude/.env for Claude Code\nAlternative: Add to ~/.bashrc or ~/.zshrc: export ATTIO_API_KEY=\"your-api-key\"\n\nRepository: https://github.com/FroeMic/attio-cli"
      },
      {
        "title": "Commands",
        "body": "List objects and records:\n\nattio object list                      # List all objects\nattio record list people               # List people records\nattio record list companies            # List company records\n\nWork with lists (pipelines):\n\nattio list list-all                    # List all lists\nattio entry list <list-slug>           # List entries in a list\n\nGet detailed info:\n\nattio object get <object-slug>         # Get object details\nattio object attributes <object-slug>  # Get object attributes\nattio list attributes <list-slug>      # Get list entry attributes"
      },
      {
        "title": "Generate Workspace Schema",
        "body": "Generate a markdown schema of your workspace for context:\n\nbash {baseDir}/scripts/generate-schema.sh > {baseDir}/workspace.schema.md\n\nThis creates a reference file documenting all objects, attributes, lists, and field options in your workspace."
      },
      {
        "title": "Key Concepts",
        "body": "ConceptPurposeExampleObjectsBase record typesPeople, Companies, DealsListsPipeline/workflow managementSales Pipeline, HiringRecordsIndividual items in objectsA specific person or companyEntriesRecords added to a listA deal in the Sales Pipeline"
      },
      {
        "title": "API Reference",
        "body": "Base URL: https://api.attio.com/v2\nAuth: Authorization: Bearer $ATTIO_API_KEY\nRate Limits: 100 requests per 10 seconds per workspace"
      },
      {
        "title": "Common API Operations",
        "body": "Search for a person:\n\ncurl -X POST https://api.attio.com/v2/objects/people/records/query \\\n  -H \"Authorization: Bearer $ATTIO_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"filter\": {\"email_addresses\": {\"contains\": \"john@example.com\"}}}'\n\nCreate a record:\n\ncurl -X POST https://api.attio.com/v2/objects/<object-slug>/records \\\n  -H \"Authorization: Bearer $ATTIO_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"data\": {\"values\": {\"name\": [{\"value\": \"Record Name\"}]}}}'\n\nAdd entry to a list:\n\ncurl -X POST https://api.attio.com/v2/lists/<list-slug>/entries \\\n  -H \"Authorization: Bearer $ATTIO_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"data\": {\"parent_record_id\": \"<record-id>\"}}'"
      },
      {
        "title": "Notes",
        "body": "Run generate-schema.sh after installing to create a workspace schema file with all your objects, lists, and field options.\nLists are commonly used to manage pipelines (sales stages, hiring workflows, etc.).\nThe CLI requires jq for JSON processing in schema generation."
      }
    ],
    "body": "attio-cli\n\nInteract with your Attio CRM workspace via the attio-cli.\n\nInstall\nClone and install the CLI:\ngit clone https://github.com/FroeMic/attio-cli\ncd attio-cli\nnpm install\nnpm link\n\nSet ATTIO_API_KEY environment variable (get it from Attio Settings > Developers > API Keys):\nRecommended: Add to ~/.claude/.env for Claude Code\nAlternative: Add to ~/.bashrc or ~/.zshrc: export ATTIO_API_KEY=\"your-api-key\"\n\nRepository: https://github.com/FroeMic/attio-cli\n\nCommands\n\nList objects and records:\n\nattio object list                      # List all objects\nattio record list people               # List people records\nattio record list companies            # List company records\n\n\nWork with lists (pipelines):\n\nattio list list-all                    # List all lists\nattio entry list <list-slug>           # List entries in a list\n\n\nGet detailed info:\n\nattio object get <object-slug>         # Get object details\nattio object attributes <object-slug>  # Get object attributes\nattio list attributes <list-slug>      # Get list entry attributes\n\nGenerate Workspace Schema\n\nGenerate a markdown schema of your workspace for context:\n\nbash {baseDir}/scripts/generate-schema.sh > {baseDir}/workspace.schema.md\n\n\nThis creates a reference file documenting all objects, attributes, lists, and field options in your workspace.\n\nKey Concepts\nConcept\tPurpose\tExample\nObjects\tBase record types\tPeople, Companies, Deals\nLists\tPipeline/workflow management\tSales Pipeline, Hiring\nRecords\tIndividual items in objects\tA specific person or company\nEntries\tRecords added to a list\tA deal in the Sales Pipeline\nAPI Reference\nBase URL: https://api.attio.com/v2\nAuth: Authorization: Bearer $ATTIO_API_KEY\nRate Limits: 100 requests per 10 seconds per workspace\nCommon API Operations\n\nSearch for a person:\n\ncurl -X POST https://api.attio.com/v2/objects/people/records/query \\\n  -H \"Authorization: Bearer $ATTIO_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"filter\": {\"email_addresses\": {\"contains\": \"john@example.com\"}}}'\n\n\nCreate a record:\n\ncurl -X POST https://api.attio.com/v2/objects/<object-slug>/records \\\n  -H \"Authorization: Bearer $ATTIO_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"data\": {\"values\": {\"name\": [{\"value\": \"Record Name\"}]}}}'\n\n\nAdd entry to a list:\n\ncurl -X POST https://api.attio.com/v2/lists/<list-slug>/entries \\\n  -H \"Authorization: Bearer $ATTIO_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"data\": {\"parent_record_id\": \"<record-id>\"}}'\n\nNotes\nRun generate-schema.sh after installing to create a workspace schema file with all your objects, lists, and field options.\nLists are commonly used to manage pipelines (sales stages, hiring workflows, etc.).\nThe CLI requires jq for JSON processing in schema generation."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/FroeMic/attio-cli",
    "publisherUrl": "https://clawhub.ai/FroeMic/attio-cli",
    "owner": "FroeMic",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/attio-cli",
    "downloadUrl": "https://openagent3.xyz/downloads/attio-cli",
    "agentUrl": "https://openagent3.xyz/skills/attio-cli/agent",
    "manifestUrl": "https://openagent3.xyz/skills/attio-cli/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/attio-cli/agent.md"
  }
}