# Send Pipedrive CRM (OpenClaw) 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. 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. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "pipedrive-crm-openclaw",
    "name": "Pipedrive CRM (OpenClaw)",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/danielfoch/pipedrive-crm-openclaw",
    "canonicalUrl": "https://clawhub.ai/danielfoch/pipedrive-crm-openclaw",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/pipedrive-crm-openclaw",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pipedrive-crm-openclaw",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "agents/openai.yaml",
      "references/entity-playbooks.md",
      "references/pipedrive-v1-notes.md",
      "scripts/pipedrive-api.py",
      "scripts/setup-wizard.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "pipedrive-crm-openclaw",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T20:29:36.463Z",
      "expiresAt": "2026-05-07T20:29:36.463Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pipedrive-crm-openclaw",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pipedrive-crm-openclaw",
        "contentDisposition": "attachment; filename=\"pipedrive-crm-openclaw-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "pipedrive-crm-openclaw"
      },
      "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/pipedrive-crm-openclaw"
    },
    "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/pipedrive-crm-openclaw",
    "downloadUrl": "https://openagent3.xyz/downloads/pipedrive-crm-openclaw",
    "agentUrl": "https://openagent3.xyz/skills/pipedrive-crm-openclaw/agent",
    "manifestUrl": "https://openagent3.xyz/skills/pipedrive-crm-openclaw/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/pipedrive-crm-openclaw/agent.md"
  }
}
```
## Documentation

### Pipedrive CRM for OpenClaw

Use this skill to run day-to-day CRM operations in Pipedrive through API calls, including CRUD, search, pipeline movement, activity logging, and any unsupported operation via raw endpoint requests.

### Required Environment

Set one authentication mode:

PIPEDRIVE_API_TOKEN for API token auth (simplest)
PIPEDRIVE_ACCESS_TOKEN for OAuth bearer auth

Set base routing:

PIPEDRIVE_COMPANY_DOMAIN (for example: acme for https://acme.pipedrive.com)

Optional:

PIPEDRIVE_API_BASE to override full API base URL (defaults to https://<company>.pipedrive.com/api/v1)
PIPEDRIVE_TIMEOUT request timeout in seconds (default 30)

### Setup

If the user asks to connect or validate credentials:

python3 skills/pipedrive-crm-openclaw/scripts/setup-wizard.py

### Primary Script

Run:

python3 skills/pipedrive-crm-openclaw/scripts/pipedrive-api.py <command> [args]

Core commands:

test_connection
list <entity> [--start N] [--limit N]
get <entity> <id>
create <entity> <json_payload>
update <entity> <id> <json_payload> [--method PUT|PATCH]
delete <entity> <id>
search <entity> <term> [--limit N] [--fields csv] [--exact-match]
move_deal_stage <deal_id> <stage_id> [--status open|won|lost|deleted]
add_note <content> [--deal-id ID] [--person-id ID] [--org-id ID] [--lead-id UUID]
request <METHOD> <path> [--query '{...}'] [--body '{...}']

Supported entities:

persons
organizations
deals
leads
activities
notes
products
users
pipelines
stages

### Lead Intake and Qualification

search persons "name or email" to deduplicate.
create persons '{...}' if no match.
create deals '{...}' and link person/org.
add_note "summary" --deal-id <id> to preserve context.

### Pipeline Management

list deals with filters through request query.
move_deal_stage <deal_id> <stage_id>.
create activities '{...}' for next follow-up.

### Daily Follow-Up Queue

list activities and search persons.
update activities <id> '{"done":1}' after completion.
Log interaction with add_note.

### Safety Rules

Never print or echo raw tokens in chat output.
Read before write when user intent is ambiguous.
Validate IDs from API responses before destructive actions.
If response is 401 or 403, stop and request corrected credentials/scopes.
Use request for endpoints not yet wrapped by helper commands.

### References

Load as needed:

references/entity-playbooks.md
references/pipedrive-v1-notes.md
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: danielfoch
- Version: 0.1.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-04-30T20:29:36.463Z
- Expires at: 2026-05-07T20:29:36.463Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/pipedrive-crm-openclaw)
- [Send to Agent page](https://openagent3.xyz/skills/pipedrive-crm-openclaw/agent)
- [JSON manifest](https://openagent3.xyz/skills/pipedrive-crm-openclaw/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/pipedrive-crm-openclaw/agent.md)
- [Download page](https://openagent3.xyz/downloads/pipedrive-crm-openclaw)