clawdbot-pipedrive 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -14,20 +14,11 @@ Pipedrive CRM integration plugin for [Clawdbot](https://clawd.bot).
14
14
 
15
15
  ## Installation
16
16
 
17
- ### Option 1: Install from npm (when published)
18
-
19
17
  ```bash
20
18
  clawdbot plugins install clawdbot-pipedrive
21
19
  ```
22
20
 
23
- ### Option 2: Manual installation
24
-
25
- Copy this folder to `~/.clawdbot/extensions/pipedrive/`
26
-
27
- Or create a symlink for development:
28
- ```bash
29
- ln -s /path/to/clawdbot-pipedrive ~/.clawdbot/extensions/pipedrive
30
- ```
21
+ Or manually: copy to `~/.clawdbot/extensions/pipedrive/`
31
22
 
32
23
  ## Configuration
33
24
 
@@ -91,7 +82,17 @@ Your domain is the subdomain of your Pipedrive URL:
91
82
 
92
83
  ## Custom Skills
93
84
 
94
- For organization-specific workflows (naming conventions, required fields, etc.), create a skill at `~/.clawdbot/skills/your-crm/SKILL.md`. Skills provide instructions to the AI without modifying the plugin.
85
+ For organization-specific workflows (naming conventions, required fields, etc.), create a skill:
86
+
87
+ ```bash
88
+ # Copy the template
89
+ mkdir -p ~/.clawdbot/skills/pipedrive-crm
90
+ cp examples/SKILL-TEMPLATE.md ~/.clawdbot/skills/pipedrive-crm/SKILL.md
91
+
92
+ # Then customize with your pipeline stages, naming conventions, etc.
93
+ ```
94
+
95
+ See [examples/SKILL-TEMPLATE.md](examples/SKILL-TEMPLATE.md) for a starting point.
95
96
 
96
97
  ## License
97
98
 
@@ -0,0 +1,71 @@
1
+ # Pipedrive CRM Workflows
2
+
3
+ > Copy this file to `~/.clawdbot/skills/pipedrive-crm/SKILL.md` and customize for your organization.
4
+
5
+ ## Deal Naming Convention
6
+
7
+ When creating deals, use this format:
8
+ - **Title**: `[Company Name] - [Product/Plan] - [Value]`
9
+ - Example: `Acme Corp - Enterprise - $2,500/mo`
10
+
11
+ ## Pipeline Stages
12
+
13
+ | Stage ID | Name | When to use |
14
+ |----------|------|-------------|
15
+ | 1 | Lead | Initial contact |
16
+ | 2 | Qualified | Confirmed interest |
17
+ | 3 | Proposal | Pricing sent |
18
+ | 4 | Negotiation | Active discussions |
19
+ | 5 | Closed Won | Deal signed |
20
+ | 6 | Closed Lost | Deal lost |
21
+
22
+ > **Note**: Replace stage IDs with your actual Pipedrive stage IDs.
23
+ > Find them via: `pipedrive_list_stages`
24
+
25
+ ## Required Fields
26
+
27
+ When creating deals, always include:
28
+ - `title` - Following naming convention above
29
+ - `value` - Deal value in your currency
30
+ - `person_id` or `org_id` - Link to contact/company
31
+
32
+ ## Activity Types
33
+
34
+ | Type | Use for | Subject format |
35
+ |------|---------|----------------|
36
+ | `call` | Phone calls | "Call: [topic]" |
37
+ | `meeting` | Demos, meetings | "Meeting: [purpose]" |
38
+ | `task` | Follow-ups, to-dos | "Task: [action]" |
39
+ | `email` | Email follow-ups | "Email: [subject]" |
40
+
41
+ ## Common Workflows
42
+
43
+ ### New Lead
44
+ 1. Search if contact exists: `pipedrive_search_persons`
45
+ 2. Create person if new: `pipedrive_create_person`
46
+ 3. Create deal: `pipedrive_create_deal`
47
+ 4. Schedule follow-up: `pipedrive_create_activity`
48
+
49
+ ### After Demo
50
+ 1. Update deal stage: `pipedrive_update_deal` with next stage_id
51
+ 2. Add notes: `pipedrive_create_note`
52
+ 3. Create follow-up task: `pipedrive_create_activity`
53
+
54
+ ### Close Won
55
+ 1. Update deal: `pipedrive_update_deal` with `status: "won"`
56
+ 2. Add closing note: `pipedrive_create_note`
57
+
58
+ ### Close Lost
59
+ 1. Update deal: `pipedrive_update_deal` with `status: "lost"` and `lost_reason`
60
+
61
+ ## Custom Fields
62
+
63
+ If you have custom fields in Pipedrive, document them here:
64
+ - Field X: Used for...
65
+ - Field Y: Used for...
66
+
67
+ ## Tips
68
+
69
+ - Always search before creating to avoid duplicates
70
+ - Link deals to both person AND organization when possible
71
+ - Use notes liberally to document conversations
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawdbot-pipedrive",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "type": "module",
5
5
  "description": "Pipedrive CRM integration for Clawdbot",
6
6
  "author": "graileanu",
@@ -10,7 +10,9 @@
10
10
  "url": "https://github.com/graileanu/clawdbot-pipedrive"
11
11
  },
12
12
  "clawdbot": {
13
- "extensions": ["./index.ts"]
13
+ "extensions": [
14
+ "./index.ts"
15
+ ]
14
16
  },
15
17
  "dependencies": {
16
18
  "@sinclair/typebox": "0.34.47"