{
  "schemaVersion": "1.0",
  "item": {
    "slug": "attio",
    "name": "Attio",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/capt-marbles/attio",
    "canonicalUrl": "https://clawhub.ai/capt-marbles/attio",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/attio",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=attio",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "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",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/attio"
    },
    "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",
    "agentPageUrl": "https://openagent3.xyz/skills/attio/agent",
    "manifestUrl": "https://openagent3.xyz/skills/attio/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/attio/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 CRM",
        "body": "Manage Attio CRM via REST API. Supports companies, people, deals, lists (pipelines), notes, and tasks."
      },
      {
        "title": "Setup",
        "body": "Set ATTIO_API_KEY in environment or ~/.env:\n\necho \"ATTIO_API_KEY=your_api_key\" >> ~/.env\n\nGet your API key: Attio → Workspace Settings → Developers → New Access Token"
      },
      {
        "title": "Objects (Records)",
        "body": "# List/search records\nattio objects list                     # List available objects\nattio records list <object>            # List records (companies, people, deals, etc.)\nattio records search <object> <query>  # Search by text\nattio records get <object> <id>        # Get single record\nattio records create <object> <json>   # Create record\nattio records update <object> <id> <json>  # Update record"
      },
      {
        "title": "Lists (Pipelines)",
        "body": "attio lists list                       # Show all pipelines/lists\nattio entries list <list_slug>         # List entries in a pipeline\nattio entries add <list_slug> <object> <record_id>  # Add record to pipeline"
      },
      {
        "title": "Notes",
        "body": "attio notes list <object> <record_id>  # Notes on a record\nattio notes create <object> <record_id> <title> <content>"
      },
      {
        "title": "Tasks",
        "body": "attio tasks list                       # All tasks\nattio tasks create <content> [deadline]  # Create task (deadline: YYYY-MM-DD)\nattio tasks complete <task_id>         # Mark complete"
      },
      {
        "title": "Find a company and add a note",
        "body": "# Search for company\nattio records search companies \"Acme\"\n\n# Add note to the company (using record_id from search)\nattio notes create companies abc123-uuid \"Call Notes\" \"Discussed Q1 roadmap...\""
      },
      {
        "title": "Work with pipeline",
        "body": "# List pipeline stages\nattio entries list sales_pipeline\n\n# Add a company to pipeline\nattio entries add sales_pipeline companies abc123-uuid"
      },
      {
        "title": "Create a follow-up task",
        "body": "attio tasks create \"Follow up with John at Acme\" \"2024-02-15\""
      },
      {
        "title": "API Limits",
        "body": "Rate limit: ~100 requests/minute\nPagination: Use limit and offset params for large datasets"
      },
      {
        "title": "Full API Docs",
        "body": "https://docs.attio.com/"
      }
    ],
    "body": "Attio CRM\n\nManage Attio CRM via REST API. Supports companies, people, deals, lists (pipelines), notes, and tasks.\n\nSetup\n\nSet ATTIO_API_KEY in environment or ~/.env:\n\necho \"ATTIO_API_KEY=your_api_key\" >> ~/.env\n\n\nGet your API key: Attio → Workspace Settings → Developers → New Access Token\n\nQuick Reference\nObjects (Records)\n# List/search records\nattio objects list                     # List available objects\nattio records list <object>            # List records (companies, people, deals, etc.)\nattio records search <object> <query>  # Search by text\nattio records get <object> <id>        # Get single record\nattio records create <object> <json>   # Create record\nattio records update <object> <id> <json>  # Update record\n\nLists (Pipelines)\nattio lists list                       # Show all pipelines/lists\nattio entries list <list_slug>         # List entries in a pipeline\nattio entries add <list_slug> <object> <record_id>  # Add record to pipeline\n\nNotes\nattio notes list <object> <record_id>  # Notes on a record\nattio notes create <object> <record_id> <title> <content>\n\nTasks\nattio tasks list                       # All tasks\nattio tasks create <content> [deadline]  # Create task (deadline: YYYY-MM-DD)\nattio tasks complete <task_id>         # Mark complete\n\nExamples\nFind a company and add a note\n# Search for company\nattio records search companies \"Acme\"\n\n# Add note to the company (using record_id from search)\nattio notes create companies abc123-uuid \"Call Notes\" \"Discussed Q1 roadmap...\"\n\nWork with pipeline\n# List pipeline stages\nattio entries list sales_pipeline\n\n# Add a company to pipeline\nattio entries add sales_pipeline companies abc123-uuid\n\nCreate a follow-up task\nattio tasks create \"Follow up with John at Acme\" \"2024-02-15\"\n\nAPI Limits\nRate limit: ~100 requests/minute\nPagination: Use limit and offset params for large datasets\nFull API Docs\n\nhttps://docs.attio.com/"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/capt-marbles/attio",
    "publisherUrl": "https://clawhub.ai/capt-marbles/attio",
    "owner": "capt-marbles",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/attio",
    "downloadUrl": "https://openagent3.xyz/downloads/attio",
    "agentUrl": "https://openagent3.xyz/skills/attio/agent",
    "manifestUrl": "https://openagent3.xyz/skills/attio/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/attio/agent.md"
  }
}