{
  "schemaVersion": "1.0",
  "item": {
    "slug": "native-hubspot",
    "name": "Native HubSpot",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/codeninja23/native-hubspot",
    "canonicalUrl": "https://clawhub.ai/codeninja23/native-hubspot",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/native-hubspot",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=native-hubspot",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "scripts/hubspot_query.py"
    ],
    "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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.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/native-hubspot"
    },
    "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/native-hubspot",
    "agentPageUrl": "https://openagent3.xyz/skills/native-hubspot/agent",
    "manifestUrl": "https://openagent3.xyz/skills/native-hubspot/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/native-hubspot/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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "HubSpot",
        "body": "Interact with HubSpot CRM directly via the HubSpot API (api.hubapi.com)."
      },
      {
        "title": "Setup (one-time)",
        "body": "In HubSpot: Settings → Integrations → Private Apps → Create a private app\nGive it scopes: crm.objects.contacts.read, crm.objects.contacts.write, crm.objects.companies.read, crm.objects.companies.write, crm.objects.deals.read, crm.objects.deals.write, tickets\nCopy the access token\nSet environment variable:\nHUBSPOT_TOKEN=pat-na1-..."
      },
      {
        "title": "Search contacts",
        "body": "python3 /mnt/skills/user/hubspot/scripts/hubspot_query.py search contacts --query \"john\"\npython3 /mnt/skills/user/hubspot/scripts/hubspot_query.py search contacts --email \"john@example.com\""
      },
      {
        "title": "List contacts",
        "body": "python3 /mnt/skills/user/hubspot/scripts/hubspot_query.py list contacts --limit 20"
      },
      {
        "title": "Get a specific object",
        "body": "python3 /mnt/skills/user/hubspot/scripts/hubspot_query.py get contacts 12345\npython3 /mnt/skills/user/hubspot/scripts/hubspot_query.py get companies 67890\npython3 /mnt/skills/user/hubspot/scripts/hubspot_query.py get deals 11111"
      },
      {
        "title": "List companies",
        "body": "python3 /mnt/skills/user/hubspot/scripts/hubspot_query.py list companies --limit 20"
      },
      {
        "title": "Search companies",
        "body": "python3 /mnt/skills/user/hubspot/scripts/hubspot_query.py search companies --query \"Acme\""
      },
      {
        "title": "List deals",
        "body": "python3 /mnt/skills/user/hubspot/scripts/hubspot_query.py list deals --limit 20"
      },
      {
        "title": "Search deals",
        "body": "python3 /mnt/skills/user/hubspot/scripts/hubspot_query.py search deals --query \"enterprise\""
      },
      {
        "title": "List tickets",
        "body": "python3 /mnt/skills/user/hubspot/scripts/hubspot_query.py list tickets --limit 20"
      },
      {
        "title": "Create a contact",
        "body": "python3 /mnt/skills/user/hubspot/scripts/hubspot_query.py create contacts --email \"new@example.com\" --firstname \"Jane\" --lastname \"Doe\""
      },
      {
        "title": "Create a company",
        "body": "python3 /mnt/skills/user/hubspot/scripts/hubspot_query.py create companies --name \"Acme Corp\" --domain \"acme.com\""
      },
      {
        "title": "Create a deal",
        "body": "python3 /mnt/skills/user/hubspot/scripts/hubspot_query.py create deals --dealname \"Enterprise Plan\" --amount 50000 --pipeline default --dealstage appointmentscheduled"
      },
      {
        "title": "Update an object",
        "body": "python3 /mnt/skills/user/hubspot/scripts/hubspot_query.py update contacts 12345 --email \"new@example.com\" --phone \"+1234567890\"\npython3 /mnt/skills/user/hubspot/scripts/hubspot_query.py update deals 11111 --dealstage closedwon --amount 75000"
      },
      {
        "title": "Associate objects",
        "body": "python3 /mnt/skills/user/hubspot/scripts/hubspot_query.py associate contacts 12345 companies 67890"
      },
      {
        "title": "List pipelines",
        "body": "python3 /mnt/skills/user/hubspot/scripts/hubspot_query.py pipelines deals\npython3 /mnt/skills/user/hubspot/scripts/hubspot_query.py pipelines tickets"
      },
      {
        "title": "List owners",
        "body": "python3 /mnt/skills/user/hubspot/scripts/hubspot_query.py owners"
      }
    ],
    "body": "HubSpot\n\nInteract with HubSpot CRM directly via the HubSpot API (api.hubapi.com).\n\nSetup (one-time)\nIn HubSpot: Settings → Integrations → Private Apps → Create a private app\nGive it scopes: crm.objects.contacts.read, crm.objects.contacts.write, crm.objects.companies.read, crm.objects.companies.write, crm.objects.deals.read, crm.objects.deals.write, tickets\nCopy the access token\nSet environment variable:\nHUBSPOT_TOKEN=pat-na1-...\n\nQueries\nSearch contacts\npython3 /mnt/skills/user/hubspot/scripts/hubspot_query.py search contacts --query \"john\"\npython3 /mnt/skills/user/hubspot/scripts/hubspot_query.py search contacts --email \"john@example.com\"\n\nList contacts\npython3 /mnt/skills/user/hubspot/scripts/hubspot_query.py list contacts --limit 20\n\nGet a specific object\npython3 /mnt/skills/user/hubspot/scripts/hubspot_query.py get contacts 12345\npython3 /mnt/skills/user/hubspot/scripts/hubspot_query.py get companies 67890\npython3 /mnt/skills/user/hubspot/scripts/hubspot_query.py get deals 11111\n\nList companies\npython3 /mnt/skills/user/hubspot/scripts/hubspot_query.py list companies --limit 20\n\nSearch companies\npython3 /mnt/skills/user/hubspot/scripts/hubspot_query.py search companies --query \"Acme\"\n\nList deals\npython3 /mnt/skills/user/hubspot/scripts/hubspot_query.py list deals --limit 20\n\nSearch deals\npython3 /mnt/skills/user/hubspot/scripts/hubspot_query.py search deals --query \"enterprise\"\n\nList tickets\npython3 /mnt/skills/user/hubspot/scripts/hubspot_query.py list tickets --limit 20\n\nCreate a contact\npython3 /mnt/skills/user/hubspot/scripts/hubspot_query.py create contacts --email \"new@example.com\" --firstname \"Jane\" --lastname \"Doe\"\n\nCreate a company\npython3 /mnt/skills/user/hubspot/scripts/hubspot_query.py create companies --name \"Acme Corp\" --domain \"acme.com\"\n\nCreate a deal\npython3 /mnt/skills/user/hubspot/scripts/hubspot_query.py create deals --dealname \"Enterprise Plan\" --amount 50000 --pipeline default --dealstage appointmentscheduled\n\nUpdate an object\npython3 /mnt/skills/user/hubspot/scripts/hubspot_query.py update contacts 12345 --email \"new@example.com\" --phone \"+1234567890\"\npython3 /mnt/skills/user/hubspot/scripts/hubspot_query.py update deals 11111 --dealstage closedwon --amount 75000\n\nAssociate objects\npython3 /mnt/skills/user/hubspot/scripts/hubspot_query.py associate contacts 12345 companies 67890\n\nList pipelines\npython3 /mnt/skills/user/hubspot/scripts/hubspot_query.py pipelines deals\npython3 /mnt/skills/user/hubspot/scripts/hubspot_query.py pipelines tickets\n\nList owners\npython3 /mnt/skills/user/hubspot/scripts/hubspot_query.py owners"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/codeninja23/native-hubspot",
    "publisherUrl": "https://clawhub.ai/codeninja23/native-hubspot",
    "owner": "codeninja23",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/native-hubspot",
    "downloadUrl": "https://openagent3.xyz/downloads/native-hubspot",
    "agentUrl": "https://openagent3.xyz/skills/native-hubspot/agent",
    "manifestUrl": "https://openagent3.xyz/skills/native-hubspot/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/native-hubspot/agent.md"
  }
}