dingdawg-sales-agent 1.0.0
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 +108 -0
- package/dist/index.d.ts +16 -0
- package/dist/index.js +1215 -0
- package/package.json +48 -0
- package/src/index.ts +1512 -0
- package/tsconfig.json +14 -0
package/README.md
ADDED
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
# dingdawg-sales-agent
|
|
2
|
+
|
|
3
|
+
AI Sales Prospecting & Outreach Agent — governed, receipted, CAN-SPAM compliant.
|
|
4
|
+
|
|
5
|
+
Research prospects, draft personalized outreach, qualify leads against your ICP, and track your pipeline. Every action produces a governance receipt.
|
|
6
|
+
|
|
7
|
+
## Quick Start
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npx dingdawg-sales-agent
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
### Add to Claude Code
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
claude mcp add dingdawg-sales-agent npx dingdawg-sales-agent
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
### Add to Cursor
|
|
20
|
+
|
|
21
|
+
Add to `.cursor/mcp.json`:
|
|
22
|
+
|
|
23
|
+
```json
|
|
24
|
+
{
|
|
25
|
+
"mcpServers": {
|
|
26
|
+
"dingdawg-sales-agent": {
|
|
27
|
+
"command": "npx",
|
|
28
|
+
"args": ["dingdawg-sales-agent"]
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## Tools
|
|
35
|
+
|
|
36
|
+
### `prospect_research`
|
|
37
|
+
|
|
38
|
+
Research a company or person for sales context.
|
|
39
|
+
|
|
40
|
+
- **Input:** Company name, person name, or LinkedIn URL + optional context
|
|
41
|
+
- **Returns:** Overview, key signals, potential pain points, recommended approach
|
|
42
|
+
- **Free tier:** 20 lookups/day
|
|
43
|
+
|
|
44
|
+
### `draft_outreach`
|
|
45
|
+
|
|
46
|
+
Generate a personalized cold email or LinkedIn message with a 3-message follow-up sequence.
|
|
47
|
+
|
|
48
|
+
- **Input:** Prospect info + your product value proposition + channel (email/linkedin)
|
|
49
|
+
- **Returns:** Subject line, body, 3 follow-up messages, CAN-SPAM compliance report
|
|
50
|
+
- **Governance:** No misleading claims, no spam patterns, CAN-SPAM compliant
|
|
51
|
+
- **Free tier:** 10 drafts/day
|
|
52
|
+
|
|
53
|
+
### `qualify_lead`
|
|
54
|
+
|
|
55
|
+
Score a lead 0-100 against your Ideal Customer Profile (ICP).
|
|
56
|
+
|
|
57
|
+
- **Input:** Lead info (company, industry, size, budget, timeline, pain level) + ICP criteria
|
|
58
|
+
- **Returns:** Score, grade (A-F), reasoning, recommended next action
|
|
59
|
+
- **Free tier:** 30 qualifications/day
|
|
60
|
+
|
|
61
|
+
### `track_pipeline`
|
|
62
|
+
|
|
63
|
+
Log and track your sales pipeline locally.
|
|
64
|
+
|
|
65
|
+
- **Actions:** add, update, remove, view
|
|
66
|
+
- **Storage:** `~/.dingdawg/sales/pipeline.json` (local, no data leaves your machine)
|
|
67
|
+
- **Free tier:** Unlimited
|
|
68
|
+
|
|
69
|
+
## Governance
|
|
70
|
+
|
|
71
|
+
Every action includes:
|
|
72
|
+
|
|
73
|
+
- **Receipt ID** — unique identifier for audit trail
|
|
74
|
+
- **CAN-SPAM compliance** — all outreach drafts checked against 15 spam patterns and 7 misleading claim patterns
|
|
75
|
+
- **Audit trail** — stored at `~/.dingdawg/sales/audit_trail.json`
|
|
76
|
+
- **Local data storage** — pipeline and audit data never leave your machine on the free tier
|
|
77
|
+
- **No PII stored** — inputs are hashed, not stored in plaintext
|
|
78
|
+
|
|
79
|
+
## Configuration
|
|
80
|
+
|
|
81
|
+
| Variable | Purpose | Default |
|
|
82
|
+
|----------|---------|---------|
|
|
83
|
+
| `DINGDAWG_API_KEY` | Unlock enriched research with live company data | (none — local analysis) |
|
|
84
|
+
| `DINGDAWG_API_URL` | Custom API endpoint | `https://api.dingdawg.com/v1` |
|
|
85
|
+
| `DINGDAWG_NO_TELEMETRY` | Set to `1` to disable anonymous usage telemetry | (telemetry on) |
|
|
86
|
+
|
|
87
|
+
## Free vs. Paid
|
|
88
|
+
|
|
89
|
+
| Feature | Free | API Key |
|
|
90
|
+
|---------|------|---------|
|
|
91
|
+
| Prospect research | 20/day, context-based analysis | Unlimited, live company data + org charts |
|
|
92
|
+
| Outreach drafts | 10/day, template-based | Unlimited, AI-personalized |
|
|
93
|
+
| Lead qualification | 30/day, rule-based scoring | Unlimited, ML-enhanced scoring |
|
|
94
|
+
| Pipeline tracking | Unlimited (local) | Unlimited + cloud sync |
|
|
95
|
+
| CAN-SPAM governance | Always on | Always on |
|
|
96
|
+
| Audit trail | Local file | Local + cloud backup |
|
|
97
|
+
|
|
98
|
+
Get an API key at [dingdawg.com/developers](https://dingdawg.com/developers).
|
|
99
|
+
|
|
100
|
+
## Also Available
|
|
101
|
+
|
|
102
|
+
- **[dingdawg-compliance](https://www.npmjs.com/package/dingdawg-compliance)** — AI compliance reports (EU AI Act, Colorado AI Act, SOC2, GDPR)
|
|
103
|
+
- **[dingdawg-shield](https://www.npmjs.com/package/dingdawg-shield)** — AI security scanning
|
|
104
|
+
- **[dingdawg-governance](https://www.npmjs.com/package/dingdawg-governance)** — AI agent governance framework
|
|
105
|
+
|
|
106
|
+
## License
|
|
107
|
+
|
|
108
|
+
MIT — Innovative Systems Global
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* dingdawg-sales-agent — AI Sales Prospecting & Outreach MCP Server
|
|
4
|
+
*
|
|
5
|
+
* Governed. Receipted. CAN-SPAM compliant.
|
|
6
|
+
*
|
|
7
|
+
* Install: npx dingdawg-sales-agent
|
|
8
|
+
* Claude Code: claude mcp add dingdawg-sales-agent npx dingdawg-sales-agent
|
|
9
|
+
*
|
|
10
|
+
* Tools:
|
|
11
|
+
* prospect_research — Research a company or person for sales context (20/day free)
|
|
12
|
+
* draft_outreach — Generate personalized cold email/LinkedIn message (10/day free)
|
|
13
|
+
* qualify_lead — Score a lead against your ICP (30/day free)
|
|
14
|
+
* track_pipeline — Log and track sales pipeline locally (unlimited)
|
|
15
|
+
*/
|
|
16
|
+
export {};
|