{
  "schemaVersion": "1.0",
  "item": {
    "slug": "dex-crm",
    "name": "Dex CRM",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/jaybna/dex-crm",
    "canonicalUrl": "https://clawhub.ai/jaybna/dex-crm",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/dex-crm",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=dex-crm",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "scripts/dex-cleanup.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/dex-crm"
    },
    "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/dex-crm",
    "agentPageUrl": "https://openagent3.xyz/skills/dex-crm/agent",
    "manifestUrl": "https://openagent3.xyz/skills/dex-crm/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/dex-crm/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": "Dex Personal CRM",
        "body": "Manage your Dex CRM directly from Clawdbot. Search contacts, add notes, manage reminders."
      },
      {
        "title": "Authentication",
        "body": "Set DEX_API_KEY in gateway config env vars."
      },
      {
        "title": "API Base",
        "body": "Base URL: https://api.getdex.com/api/rest\nHeaders: Content-Type: application/json and x-hasura-dex-api-key: $DEX_API_KEY"
      },
      {
        "title": "Contacts",
        "body": "# List contacts (paginated)\ncurl -s -H \"Content-Type: application/json\" \\\n  -H \"x-hasura-dex-api-key: $DEX_API_KEY\" \\\n  \"https://api.getdex.com/api/rest/contacts?limit=10&offset=0\"\n\n# Get contact by ID\ncurl -s -H \"Content-Type: application/json\" \\\n  -H \"x-hasura-dex-api-key: $DEX_API_KEY\" \\\n  \"https://api.getdex.com/api/rest/contacts/{contactId}\"\n\n# Search contact by email\ncurl -s -H \"Content-Type: application/json\" \\\n  -H \"x-hasura-dex-api-key: $DEX_API_KEY\" \\\n  \"https://api.getdex.com/api/rest/search/contacts?email=someone@example.com\"\n\n# Create contact\ncurl -s -X POST -H \"Content-Type: application/json\" \\\n  -H \"x-hasura-dex-api-key: $DEX_API_KEY\" \\\n  -d '{\"first_name\":\"John\",\"last_name\":\"Doe\",\"emails\":[\"john@example.com\"]}' \\\n  \"https://api.getdex.com/api/rest/contacts\"\n\n# Update contact\ncurl -s -X PUT -H \"Content-Type: application/json\" \\\n  -H \"x-hasura-dex-api-key: $DEX_API_KEY\" \\\n  -d '{\"job_title\":\"CEO\"}' \\\n  \"https://api.getdex.com/api/rest/contacts/{contactId}\"\n\n# Delete contact\ncurl -s -X DELETE -H \"Content-Type: application/json\" \\\n  -H \"x-hasura-dex-api-key: $DEX_API_KEY\" \\\n  \"https://api.getdex.com/api/rest/contacts/{contactId}\""
      },
      {
        "title": "Notes (Timeline Items)",
        "body": "# List notes\ncurl -s -H \"Content-Type: application/json\" \\\n  -H \"x-hasura-dex-api-key: $DEX_API_KEY\" \\\n  \"https://api.getdex.com/api/rest/timeline_items?limit=10&offset=0\"\n\n# Notes for a contact\ncurl -s -H \"Content-Type: application/json\" \\\n  -H \"x-hasura-dex-api-key: $DEX_API_KEY\" \\\n  \"https://api.getdex.com/api/rest/timeline_items/contacts/{contactId}\"\n\n# Create note\ncurl -s -X POST -H \"Content-Type: application/json\" \\\n  -H \"x-hasura-dex-api-key: $DEX_API_KEY\" \\\n  -d '{\"note\":\"Met for coffee, discussed project\",\"contact_ids\":[\"contact-uuid\"],\"event_time\":\"2026-01-27T12:00:00Z\"}' \\\n  \"https://api.getdex.com/api/rest/timeline_items\"\n\n# Update note\ncurl -s -X PUT -H \"Content-Type: application/json\" \\\n  -H \"x-hasura-dex-api-key: $DEX_API_KEY\" \\\n  -d '{\"note\":\"Updated note text\"}' \\\n  \"https://api.getdex.com/api/rest/timeline_items/{noteId}\"\n\n# Delete note\ncurl -s -X DELETE -H \"Content-Type: application/json\" \\\n  -H \"x-hasura-dex-api-key: $DEX_API_KEY\" \\\n  \"https://api.getdex.com/api/rest/timeline_items/{noteId}\""
      },
      {
        "title": "Reminders",
        "body": "# List reminders\ncurl -s -H \"Content-Type: application/json\" \\\n  -H \"x-hasura-dex-api-key: $DEX_API_KEY\" \\\n  \"https://api.getdex.com/api/rest/reminders?limit=10&offset=0\"\n\n# Create reminder\ncurl -s -X POST -H \"Content-Type: application/json\" \\\n  -H \"x-hasura-dex-api-key: $DEX_API_KEY\" \\\n  -d '{\"body\":\"Follow up on proposal\",\"due_at_date\":\"2026-02-01\",\"contact_ids\":[\"contact-uuid\"]}' \\\n  \"https://api.getdex.com/api/rest/reminders\"\n\n# Update reminder\ncurl -s -X PUT -H \"Content-Type: application/json\" \\\n  -H \"x-hasura-dex-api-key: $DEX_API_KEY\" \\\n  -d '{\"is_complete\":true}' \\\n  \"https://api.getdex.com/api/rest/reminders/{reminderId}\"\n\n# Delete reminder\ncurl -s -X DELETE -H \"Content-Type: application/json\" \\\n  -H \"x-hasura-dex-api-key: $DEX_API_KEY\" \\\n  \"https://api.getdex.com/api/rest/reminders/{reminderId}\""
      },
      {
        "title": "Contact Fields",
        "body": "first_name, last_name, job_title, description\nemails (array of {email})\nphones (array of {phone_number})\neducation, website, linkedin, facebook, twitter, instagram, telegram\nbirthday, image_url\nlast_seen_at, next_reminder_at\nis_archived, created_at, updated_at"
      },
      {
        "title": "Searching Contacts",
        "body": "The API only supports search by email. For name-based search, fetch contacts in batches and filter locally. Use a reasonable limit (50-100) for browsing."
      },
      {
        "title": "Notes",
        "body": "Always confirm before creating, updating, or deleting contacts/notes/reminders\nContact search by name requires local filtering (API only supports email search)\nUse pagination (limit/offset) for large result sets\nThe event_time field on notes is when the interaction happened, not when the note was created"
      }
    ],
    "body": "Dex Personal CRM\n\nManage your Dex CRM directly from Clawdbot. Search contacts, add notes, manage reminders.\n\nAuthentication\n\nSet DEX_API_KEY in gateway config env vars.\n\nAPI Base\nBase URL: https://api.getdex.com/api/rest\nHeaders: Content-Type: application/json and x-hasura-dex-api-key: $DEX_API_KEY\nQuick Reference\nContacts\n# List contacts (paginated)\ncurl -s -H \"Content-Type: application/json\" \\\n  -H \"x-hasura-dex-api-key: $DEX_API_KEY\" \\\n  \"https://api.getdex.com/api/rest/contacts?limit=10&offset=0\"\n\n# Get contact by ID\ncurl -s -H \"Content-Type: application/json\" \\\n  -H \"x-hasura-dex-api-key: $DEX_API_KEY\" \\\n  \"https://api.getdex.com/api/rest/contacts/{contactId}\"\n\n# Search contact by email\ncurl -s -H \"Content-Type: application/json\" \\\n  -H \"x-hasura-dex-api-key: $DEX_API_KEY\" \\\n  \"https://api.getdex.com/api/rest/search/contacts?email=someone@example.com\"\n\n# Create contact\ncurl -s -X POST -H \"Content-Type: application/json\" \\\n  -H \"x-hasura-dex-api-key: $DEX_API_KEY\" \\\n  -d '{\"first_name\":\"John\",\"last_name\":\"Doe\",\"emails\":[\"john@example.com\"]}' \\\n  \"https://api.getdex.com/api/rest/contacts\"\n\n# Update contact\ncurl -s -X PUT -H \"Content-Type: application/json\" \\\n  -H \"x-hasura-dex-api-key: $DEX_API_KEY\" \\\n  -d '{\"job_title\":\"CEO\"}' \\\n  \"https://api.getdex.com/api/rest/contacts/{contactId}\"\n\n# Delete contact\ncurl -s -X DELETE -H \"Content-Type: application/json\" \\\n  -H \"x-hasura-dex-api-key: $DEX_API_KEY\" \\\n  \"https://api.getdex.com/api/rest/contacts/{contactId}\"\n\nNotes (Timeline Items)\n# List notes\ncurl -s -H \"Content-Type: application/json\" \\\n  -H \"x-hasura-dex-api-key: $DEX_API_KEY\" \\\n  \"https://api.getdex.com/api/rest/timeline_items?limit=10&offset=0\"\n\n# Notes for a contact\ncurl -s -H \"Content-Type: application/json\" \\\n  -H \"x-hasura-dex-api-key: $DEX_API_KEY\" \\\n  \"https://api.getdex.com/api/rest/timeline_items/contacts/{contactId}\"\n\n# Create note\ncurl -s -X POST -H \"Content-Type: application/json\" \\\n  -H \"x-hasura-dex-api-key: $DEX_API_KEY\" \\\n  -d '{\"note\":\"Met for coffee, discussed project\",\"contact_ids\":[\"contact-uuid\"],\"event_time\":\"2026-01-27T12:00:00Z\"}' \\\n  \"https://api.getdex.com/api/rest/timeline_items\"\n\n# Update note\ncurl -s -X PUT -H \"Content-Type: application/json\" \\\n  -H \"x-hasura-dex-api-key: $DEX_API_KEY\" \\\n  -d '{\"note\":\"Updated note text\"}' \\\n  \"https://api.getdex.com/api/rest/timeline_items/{noteId}\"\n\n# Delete note\ncurl -s -X DELETE -H \"Content-Type: application/json\" \\\n  -H \"x-hasura-dex-api-key: $DEX_API_KEY\" \\\n  \"https://api.getdex.com/api/rest/timeline_items/{noteId}\"\n\nReminders\n# List reminders\ncurl -s -H \"Content-Type: application/json\" \\\n  -H \"x-hasura-dex-api-key: $DEX_API_KEY\" \\\n  \"https://api.getdex.com/api/rest/reminders?limit=10&offset=0\"\n\n# Create reminder\ncurl -s -X POST -H \"Content-Type: application/json\" \\\n  -H \"x-hasura-dex-api-key: $DEX_API_KEY\" \\\n  -d '{\"body\":\"Follow up on proposal\",\"due_at_date\":\"2026-02-01\",\"contact_ids\":[\"contact-uuid\"]}' \\\n  \"https://api.getdex.com/api/rest/reminders\"\n\n# Update reminder\ncurl -s -X PUT -H \"Content-Type: application/json\" \\\n  -H \"x-hasura-dex-api-key: $DEX_API_KEY\" \\\n  -d '{\"is_complete\":true}' \\\n  \"https://api.getdex.com/api/rest/reminders/{reminderId}\"\n\n# Delete reminder\ncurl -s -X DELETE -H \"Content-Type: application/json\" \\\n  -H \"x-hasura-dex-api-key: $DEX_API_KEY\" \\\n  \"https://api.getdex.com/api/rest/reminders/{reminderId}\"\n\nContact Fields\nfirst_name, last_name, job_title, description\nemails (array of {email})\nphones (array of {phone_number})\neducation, website, linkedin, facebook, twitter, instagram, telegram\nbirthday, image_url\nlast_seen_at, next_reminder_at\nis_archived, created_at, updated_at\nSearching Contacts\n\nThe API only supports search by email. For name-based search, fetch contacts in batches and filter locally. Use a reasonable limit (50-100) for browsing.\n\nNotes\nAlways confirm before creating, updating, or deleting contacts/notes/reminders\nContact search by name requires local filtering (API only supports email search)\nUse pagination (limit/offset) for large result sets\nThe event_time field on notes is when the interaction happened, not when the note was created"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/jaybna/dex-crm",
    "publisherUrl": "https://clawhub.ai/jaybna/dex-crm",
    "owner": "jaybna",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/dex-crm",
    "downloadUrl": "https://openagent3.xyz/downloads/dex-crm",
    "agentUrl": "https://openagent3.xyz/skills/dex-crm/agent",
    "manifestUrl": "https://openagent3.xyz/skills/dex-crm/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/dex-crm/agent.md"
  }
}