# Send Dex CRM to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/dex-crm",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=dex-crm",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "scripts/dex-cleanup.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "dex-crm",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T13:19:53.376Z",
      "expiresAt": "2026-05-09T13:19:53.376Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=dex-crm",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=dex-crm",
        "contentDisposition": "attachment; filename=\"dex-crm-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "dex-crm"
      },
      "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/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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Dex Personal CRM

Manage your Dex CRM directly from Clawdbot. Search contacts, add notes, manage reminders.

### Authentication

Set DEX_API_KEY in gateway config env vars.

### API Base

Base URL: https://api.getdex.com/api/rest
Headers: Content-Type: application/json and x-hasura-dex-api-key: $DEX_API_KEY

### Contacts

# List contacts (paginated)
curl -s -H "Content-Type: application/json" \\
  -H "x-hasura-dex-api-key: $DEX_API_KEY" \\
  "https://api.getdex.com/api/rest/contacts?limit=10&offset=0"

# Get contact by ID
curl -s -H "Content-Type: application/json" \\
  -H "x-hasura-dex-api-key: $DEX_API_KEY" \\
  "https://api.getdex.com/api/rest/contacts/{contactId}"

# Search contact by email
curl -s -H "Content-Type: application/json" \\
  -H "x-hasura-dex-api-key: $DEX_API_KEY" \\
  "https://api.getdex.com/api/rest/search/contacts?email=someone@example.com"

# Create contact
curl -s -X POST -H "Content-Type: application/json" \\
  -H "x-hasura-dex-api-key: $DEX_API_KEY" \\
  -d '{"first_name":"John","last_name":"Doe","emails":["john@example.com"]}' \\
  "https://api.getdex.com/api/rest/contacts"

# Update contact
curl -s -X PUT -H "Content-Type: application/json" \\
  -H "x-hasura-dex-api-key: $DEX_API_KEY" \\
  -d '{"job_title":"CEO"}' \\
  "https://api.getdex.com/api/rest/contacts/{contactId}"

# Delete contact
curl -s -X DELETE -H "Content-Type: application/json" \\
  -H "x-hasura-dex-api-key: $DEX_API_KEY" \\
  "https://api.getdex.com/api/rest/contacts/{contactId}"

### Notes (Timeline Items)

# List notes
curl -s -H "Content-Type: application/json" \\
  -H "x-hasura-dex-api-key: $DEX_API_KEY" \\
  "https://api.getdex.com/api/rest/timeline_items?limit=10&offset=0"

# Notes for a contact
curl -s -H "Content-Type: application/json" \\
  -H "x-hasura-dex-api-key: $DEX_API_KEY" \\
  "https://api.getdex.com/api/rest/timeline_items/contacts/{contactId}"

# Create note
curl -s -X POST -H "Content-Type: application/json" \\
  -H "x-hasura-dex-api-key: $DEX_API_KEY" \\
  -d '{"note":"Met for coffee, discussed project","contact_ids":["contact-uuid"],"event_time":"2026-01-27T12:00:00Z"}' \\
  "https://api.getdex.com/api/rest/timeline_items"

# Update note
curl -s -X PUT -H "Content-Type: application/json" \\
  -H "x-hasura-dex-api-key: $DEX_API_KEY" \\
  -d '{"note":"Updated note text"}' \\
  "https://api.getdex.com/api/rest/timeline_items/{noteId}"

# Delete note
curl -s -X DELETE -H "Content-Type: application/json" \\
  -H "x-hasura-dex-api-key: $DEX_API_KEY" \\
  "https://api.getdex.com/api/rest/timeline_items/{noteId}"

### Reminders

# List reminders
curl -s -H "Content-Type: application/json" \\
  -H "x-hasura-dex-api-key: $DEX_API_KEY" \\
  "https://api.getdex.com/api/rest/reminders?limit=10&offset=0"

# Create reminder
curl -s -X POST -H "Content-Type: application/json" \\
  -H "x-hasura-dex-api-key: $DEX_API_KEY" \\
  -d '{"body":"Follow up on proposal","due_at_date":"2026-02-01","contact_ids":["contact-uuid"]}' \\
  "https://api.getdex.com/api/rest/reminders"

# Update reminder
curl -s -X PUT -H "Content-Type: application/json" \\
  -H "x-hasura-dex-api-key: $DEX_API_KEY" \\
  -d '{"is_complete":true}' \\
  "https://api.getdex.com/api/rest/reminders/{reminderId}"

# Delete reminder
curl -s -X DELETE -H "Content-Type: application/json" \\
  -H "x-hasura-dex-api-key: $DEX_API_KEY" \\
  "https://api.getdex.com/api/rest/reminders/{reminderId}"

### Contact Fields

first_name, last_name, job_title, description
emails (array of {email})
phones (array of {phone_number})
education, website, linkedin, facebook, twitter, instagram, telegram
birthday, image_url
last_seen_at, next_reminder_at
is_archived, created_at, updated_at

### Searching Contacts

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.

### Notes

Always confirm before creating, updating, or deleting contacts/notes/reminders
Contact search by name requires local filtering (API only supports email search)
Use pagination (limit/offset) for large result sets
The event_time field on notes is when the interaction happened, not when the note was created
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: jaybna
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-02T13:19:53.376Z
- Expires at: 2026-05-09T13:19:53.376Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/dex-crm)
- [Send to Agent page](https://openagent3.xyz/skills/dex-crm/agent)
- [JSON manifest](https://openagent3.xyz/skills/dex-crm/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/dex-crm/agent.md)
- [Download page](https://openagent3.xyz/downloads/dex-crm)