Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计提醒

pipedrive-automation管道驱动自动化

Agent Skill

pipedrive-automation 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

618

周安装

26

GitHub Stars

52

下载量

216
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:pipedrive-automation(管道驱动自动化)
来源仓库:https://github.com/aaaaqwq/claude-code-skills
仓库路径:skills/pipedrive-automation
安装命令:
npx skills add https://github.com/aaaaqwq/claude-code-skills --skill pipedrive-automation
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/aaaaqwq/claude-code-skills --skill pipedrive-automation

简介

通过Rube MCP自动化Pipedrive CRM工作流,包括交易管理和联系人操作。

  • 适用于需要集成Pipedrive CRM进行销售流程管理的场景。
  • 使用前需确保Rube MCP已连接且Pipedrive连接处于激活状态。
  • 首次使用需完成OAuth授权流程,注意API密钥和连接状态的配置要求。
  • pipedrive-automation 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Pipedrive Automation via Rube MCP

Automate Pipedrive CRM workflows including deal management, contact and organization operations, activity scheduling, notes, and pipeline/stage queries through Composio's Pipedrive toolkit.

Prerequisites

  • Rube MCP must be connected (RUBE_SEARCH_TOOLS available)
  • Active Pipedrive connection via RUBE_MANAGE_CONNECTIONS with toolkit pipedrive
  • Always call RUBE_SEARCH_TOOLS first to get current tool schemas

Setup

Get Rube MCP: Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.

  1. Verify Rube MCP is available by confirming RUBE_SEARCH_TOOLS responds
  2. Call RUBE_MANAGE_CONNECTIONS with toolkit pipedrive
  3. If connection is not ACTIVE, follow the returned auth link to complete Pipedrive OAuth
  4. Confirm connection status shows ACTIVE before running any workflows

Core Workflows

1. Create and Manage Deals

When to use: User wants to create a new deal, update an existing deal, or review deal details in the sales pipeline.

Tool sequence:

  1. PIPEDRIVE_SEARCH_ORGANIZATIONS - Find existing org to link to the deal [Optional]
  2. PIPEDRIVE_ADD_AN_ORGANIZATION - Create organization if none found [Optional]
  3. PIPEDRIVE_SEARCH_PERSONS - Find existing contact to link [Optional]
  4. PIPEDRIVE_ADD_A_PERSON - Create contact if none found [Optional]
  5. PIPEDRIVE_GET_ALL_PIPELINES - Resolve pipeline ID [Prerequisite]
  6. PIPEDRIVE_GET_ALL_STAGES - Resolve stage ID within the pipeline [Prerequisite]
  7. PIPEDRIVE_ADD_A_DEAL - Create the deal with title, value, org_id, person_id, stage_id [Required]
  8. PIPEDRIVE_UPDATE_A_DEAL - Modify deal properties after creation [Optional]
  9. PIPEDRIVE_ADD_A_PRODUCT_TO_A_DEAL - Attach line items/products [Optional]

Key parameters:

  • title: Deal title (required for creation)
  • value: Monetary value of the deal
  • currency: 3-letter ISO currency code (e.g., "USD")
  • pipeline_id / stage_id: Numeric IDs for pipeline placement
  • org_id / person_id: Link to organization and contact
  • status: "open", "won", or "lost"
  • expected_close_date: Format YYYY-MM-DD

Pitfalls:

  • title is the only required field for PIPEDRIVE_ADD_A_DEAL; all others are optional
  • Custom fields appear as long hash keys in responses; use dealFields endpoint to map them
  • PIPEDRIVE_UPDATE_A_DEAL requires the numeric id of the deal
  • Setting status to "lost" requires also providing lost_reason

2. Manage Contacts (Persons and Organizations)

When to use: User wants to create, update, search, or list contacts and companies in Pipedrive.

Tool sequence:

  1. PIPEDRIVE_SEARCH_PERSONS - Search for existing person by name, email, or phone [Prerequisite]
  2. PIPEDRIVE_ADD_A_PERSON - Create new contact if not found [Required]
  3. PIPEDRIVE_UPDATE_A_PERSON - Modify existing contact details [Optional]
  4. PIPEDRIVE_GET_DETAILS_OF_A_PERSON - Retrieve full contact record [Optional]
  5. PIPEDRIVE_SEARCH_ORGANIZATIONS - Search for existing organization [Prerequisite]
  6. PIPEDRIVE_ADD_AN_ORGANIZATION - Create new organization if not found [Required]
  7. PIPEDRIVE_UPDATE_AN_ORGANIZATION - Modify organization properties [Optional]
  8. PIPEDRIVE_GET_DETAILS_OF_AN_ORGANIZATION - Retrieve full org record [Optional]

Key parameters:

  • name: Required for both person and organization creation
  • email: Array of objects with value, label, primary fields for persons
  • phone: Array of objects with value, label, primary fields for persons
  • org_id: Link a person to an organization
  • visible_to: 1 = owner only, 3 = entire company
  • term: Search term for SEARCH_PERSONS / SEARCH_ORGANIZATIONS (minimum 2 characters)

Pitfalls:

  • PIPEDRIVE_ADD_AN_ORGANIZATION may auto-merge with an existing org; check response.additional_data.didMerge
  • Email and phone fields are arrays of objects, not plain strings: [{"value": "test@example.com", "label": "work", "primary": true}]
  • PIPEDRIVE_SEARCH_PERSONS wildcards like * or @ are NOT supported; use PIPEDRIVE_GET_ALL_PERSONS to list all
  • Deletion via PIPEDRIVE_DELETE_A_PERSON or PIPEDRIVE_DELETE_AN_ORGANIZATION is soft-delete with 30-day retention, then permanent

3. Schedule and Track Activities

When to use: User wants to create calls, meetings, tasks, or other activities linked to deals, contacts, or organizations.

Tool sequence:

  1. PIPEDRIVE_SEARCH_PERSONS or PIPEDRIVE_GET_DETAILS_OF_A_DEAL - Resolve linked entity IDs [Prerequisite]
  2. PIPEDRIVE_ADD_AN_ACTIVITY - Create the activity with subject, type, due date [Required]
  3. PIPEDRIVE_UPDATE_AN_ACTIVITY - Modify activity details or mark as done [Optional]
  4. PIPEDRIVE_GET_DETAILS_OF_AN_ACTIVITY - Retrieve activity record [Optional]
  5. PIPEDRIVE_GET_ALL_ACTIVITIES_ASSIGNED_TO_A_PARTICULAR_USER - List user's activities [Optional]

Key parameters:

  • subject: Activity title (required)
  • type: Activity type key string, e.g., "call", "meeting", "task", "email" (required)
  • due_date: Format YYYY-MM-DD
  • due_time: Format HH:MM
  • duration: Format HH:MM (e.g., "00:30" for 30 minutes)
  • deal_id / person_id / org_id: Link to related entities
  • done: 0 = not done, 1 = done

Pitfalls:

  • Both subject and type are required for PIPEDRIVE_ADD_AN_ACTIVITY
  • type must match an existing ActivityTypes key_string in the account
  • done is an integer (0 or 1), not a boolean
  • Response includes more_activities_scheduled_in_context in additional_data

4. Add and Manage Notes

When to use: User wants to attach notes to deals, persons, organizations, leads, or projects.

Tool sequence:

  1. PIPEDRIVE_SEARCH_PERSONS or PIPEDRIVE_GET_DETAILS_OF_A_DEAL - Resolve entity ID [Prerequisite]
  2. PIPEDRIVE_ADD_A_NOTE - Create note with HTML content linked to an entity [Required]
  3. PIPEDRIVE_UPDATE_A_NOTE - Modify note content [Optional]
  4. PIPEDRIVE_GET_ALL_NOTES - List notes filtered by entity [Optional]
  5. PIPEDRIVE_GET_ALL_COMMENTS_FOR_A_NOTE - Retrieve comments on a note [Optional]

Key parameters:

  • content: Note body in HTML format (required)
  • deal_id / person_id / org_id / lead_id / project_id: At least one entity link required
  • pinned_to_deal_flag / pinned_to_person_flag: Filter pinned notes when listing

Pitfalls:

  • content is required and supports HTML; plain text works but is sanitized server-side
  • At least one of deal_id, person_id, org_id, lead_id, or project_id must be provided
  • PIPEDRIVE_GET_ALL_NOTES returns notes across all entities by default; filter with entity ID params

5. Query Pipelines and Stages

When to use: User wants to view sales pipelines, stages, or deals within a pipeline/stage.

Tool sequence:

  1. PIPEDRIVE_GET_ALL_PIPELINES - List all pipelines and their IDs [Required]
  2. PIPEDRIVE_GET_ONE_PIPELINE - Get details and deal summary for a specific pipeline [Optional]
  3. PIPEDRIVE_GET_ALL_STAGES - List all stages, optionally filtered by pipeline [Required]
  4. PIPEDRIVE_GET_ONE_STAGE - Get details for a specific stage [Optional]
  5. PIPEDRIVE_GET_DEALS_IN_A_PIPELINE - List all deals across stages in a pipeline [Optional]
  6. PIPEDRIVE_GET_DEALS_IN_A_STAGE - List deals in a specific stage [Optional]

Key parameters:

  • id: Pipeline or stage ID (required for single-item endpoints)
  • pipeline_id: Filter stages by pipeline
  • totals_convert_currency: 3-letter currency code or "default_currency" for converted totals
  • get_summary: Set to 1 for deal summary in pipeline responses

Pitfalls:

  • PIPEDRIVE_GET_ALL_PIPELINES takes no parameters; returns all pipelines
  • PIPEDRIVE_GET_ALL_STAGES returns stages for ALL pipelines unless pipeline_id is specified
  • Deal counts in pipeline summaries use per_stages_converted only when totals_convert_currency is set

Common Patterns

ID Resolution

Always resolve display names to numeric IDs before operations:

  • Organization name -> org_id: PIPEDRIVE_SEARCH_ORGANIZATIONS with term param
  • Person name -> person_id: PIPEDRIVE_SEARCH_PERSONS with term param
  • Pipeline name -> pipeline_id: PIPEDRIVE_GET_ALL_PIPELINES then match by name
  • Stage name -> stage_id: PIPEDRIVE_GET_ALL_STAGES with pipeline_id then match by name

Pagination

Most list endpoints use offset-based pagination:

  • Use start (offset) and limit (page size) parameters
  • Check additional_data.pagination.more_items_in_collection to know if more pages exist
  • Use additional_data.pagination.next_start as the start value for the next page
  • Default limit is ~500 for some endpoints; set explicitly for predictable paging

Known Pitfalls

ID Formats

  • All entity IDs (deal, person, org, activity, pipeline, stage) are numeric integers
  • Lead IDs are UUID strings, not integers
  • Custom field keys are long alphanumeric hashes (e.g., "a1b2c3d4e5f6...")

Rate Limits

  • Pipedrive enforces per-company API rate limits; bulk operations should be paced
  • PIPEDRIVE_GET_ALL_PERSONS and PIPEDRIVE_GET_ALL_ORGANIZATIONS can return large datasets; always paginate

Parameter Quirks

  • Email and phone on persons are arrays of objects, not plain strings
  • visible_to is numeric: 1 = owner only, 3 = entire company, 5 = specific groups
  • done on activities is integer 0/1, not boolean true/false
  • Organization creation may auto-merge duplicates silently; check didMerge in response
  • PIPEDRIVE_SEARCH_PERSONS requires minimum 2 characters and does not support wildcards

Response Structure

  • Custom fields appear as hash keys in responses; map them via the respective Fields endpoints
  • Responses often nest data under response.data.data in wrapped executions
  • Search results are under response.data.items, not top-level

Quick Reference

TaskTool SlugKey Params
Create dealPIPEDRIVE_ADD_A_DEALtitle, value, org_id, stage_id
Update dealPIPEDRIVE_UPDATE_A_DEALid, status, value, stage_id
Get deal detailsPIPEDRIVE_GET_DETAILS_OF_A_DEALid
Search personsPIPEDRIVE_SEARCH_PERSONSterm, fields
Add personPIPEDRIVE_ADD_A_PERSONname, email, phone, org_id
Update personPIPEDRIVE_UPDATE_A_PERSONid, name, email
Get person detailsPIPEDRIVE_GET_DETAILS_OF_A_PERSONid
List all personsPIPEDRIVE_GET_ALL_PERSONSstart, limit, filter_id
Search organizationsPIPEDRIVE_SEARCH_ORGANIZATIONSterm, fields
Add organizationPIPEDRIVE_ADD_AN_ORGANIZATIONname, visible_to
Update organizationPIPEDRIVE_UPDATE_AN_ORGANIZATIONid, name, address
Get org detailsPIPEDRIVE_GET_DETAILS_OF_AN_ORGANIZATIONid
Add activityPIPEDRIVE_ADD_AN_ACTIVITYsubject, type, due_date, deal_id
Update activityPIPEDRIVE_UPDATE_AN_ACTIVITYid, done, due_date
Get activity detailsPIPEDRIVE_GET_DETAILS_OF_AN_ACTIVITYid
List user activitiesPIPEDRIVE_GET_ALL_ACTIVITIES_ASSIGNED_TO_A_PARTICULAR_USERuser_id, start, limit
Add notePIPEDRIVE_ADD_A_NOTEcontent, deal_id or person_id
List notesPIPEDRIVE_GET_ALL_NOTESdeal_id, person_id, start, limit
List pipelinesPIPEDRIVE_GET_ALL_PIPELINES(none)
Get pipeline detailsPIPEDRIVE_GET_ONE_PIPELINEid
List stagesPIPEDRIVE_GET_ALL_STAGESpipeline_id
Deals in pipelinePIPEDRIVE_GET_DEALS_IN_A_PIPELINEid, stage_id
Deals in stagePIPEDRIVE_GET_DEALS_IN_A_STAGEid, start, limit
Add product to dealPIPEDRIVE_ADD_A_PRODUCT_TO_A_DEALid, product_id, item_price

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.23%
按下载量换算78

Claude

31.25%
按下载量换算68

Cursor

17.03%
按下载量换算37

Gemini CLI

9.31%
按下载量换算20

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills