@wavyx/pdcli 0.3.0 → 0.5.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/CHANGELOG.md +34 -0
- package/README.md +24 -0
- package/oclif.manifest.json +1003 -106
- package/package.json +1 -1
- package/src/commands/audit.js +137 -0
- package/src/commands/deal/bulk-update.js +131 -0
- package/src/commands/funnel.js +92 -0
- package/src/commands/metrics/velocity.js +81 -0
- package/src/commands/org/import.js +109 -0
- package/src/commands/person/import.js +118 -0
- package/src/commands/pipeline/health.js +78 -0
- package/src/lib/analytics.js +154 -0
- package/src/lib/audit.js +228 -0
- package/src/lib/bulk.js +106 -0
- package/src/lib/csv-parse.js +88 -0
- package/src/lib/import.js +49 -0
- package/src/lib/period.js +33 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,40 @@ All notable changes to `pdcli` are documented here. Format follows
|
|
|
4
4
|
[Keep a Changelog](https://keepachangelog.com/); versions follow
|
|
5
5
|
[SemVer](https://semver.org/).
|
|
6
6
|
|
|
7
|
+
## [0.5.0] - 2026-06-04
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- `metrics velocity` — the Sales Velocity Equation ((open × win rate ×
|
|
12
|
+
avg won value) / cycle days) with all four levers, over a trailing
|
|
13
|
+
`--period` and optional `--pipeline`/`--owner` scope.
|
|
14
|
+
- `funnel` — stage-to-stage conversion approximated from closed deals'
|
|
15
|
+
final stages, plus the current open distribution per stage.
|
|
16
|
+
- `pipeline health` — per-stage snapshot: open count/value,
|
|
17
|
+
probability-weighted value, stale deals (>14d), deals without a next
|
|
18
|
+
step, deals past their close date.
|
|
19
|
+
- `audit` — 11 data-hygiene checks (stale/ancient deals, missing fields,
|
|
20
|
+
duplicate persons by email, duplicate orgs by name, uncontactable
|
|
21
|
+
contacts, overdue pileups, …) with `--checks`, `--verbose`, and
|
|
22
|
+
`--strict` (exit 1 on must-severity findings — CI-able).
|
|
23
|
+
|
|
24
|
+
## [0.4.0] - 2026-06-04
|
|
25
|
+
|
|
26
|
+
### Added
|
|
27
|
+
|
|
28
|
+
- `deal bulk-update` — update many deals at once by `--ids`, a Pipedrive
|
|
29
|
+
saved `--filter`, or ids piped on stdin. Paced sequentially inside the
|
|
30
|
+
rate-limit burst window, confirms before writing (`--yes` to skip),
|
|
31
|
+
`--dry-run` previews targets, partial failures are listed per deal and
|
|
32
|
+
exit 1.
|
|
33
|
+
- `person import` / `org import` — bulk-create from CSV. Headers map to
|
|
34
|
+
fields, including custom fields by human name with option-label
|
|
35
|
+
resolution; `--dry-run` validates every row without writing.
|
|
36
|
+
|
|
37
|
+
### Changed
|
|
38
|
+
|
|
39
|
+
- CI actions bumped to checkout/setup-node v5.
|
|
40
|
+
|
|
7
41
|
## [0.3.0] - 2026-06-04
|
|
8
42
|
|
|
9
43
|
### Added
|
package/README.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# pdcli
|
|
2
2
|
|
|
3
|
+
[](https://github.com/wavyx/pdcli/actions/workflows/ci.yml)
|
|
4
|
+
[](https://codecov.io/gh/wavyx/pdcli)
|
|
5
|
+
[](https://www.npmjs.com/package/@wavyx/pdcli)
|
|
6
|
+
|
|
3
7
|
Command-line interface for [Pipedrive](https://www.pipedrive.com/) — fast, scriptable, built for terminals, CI pipelines, and AI agents.
|
|
4
8
|
|
|
5
9
|
> Not affiliated with or endorsed by Pipedrive.
|
|
@@ -55,6 +59,26 @@ pdcli deal create --title "Sized" --field "Deal Size=Large" --field "Score=4.5"
|
|
|
55
59
|
pdcli deal update 42 --body '{"probability":75}' # raw JSON escape hatch
|
|
56
60
|
```
|
|
57
61
|
|
|
62
|
+
## Bulk
|
|
63
|
+
|
|
64
|
+
```bash
|
|
65
|
+
pdcli deal bulk-update --filter 9 --stage 5 # saved filter → stage move
|
|
66
|
+
pdcli deal bulk-update --ids 1,2,3 --status won --yes
|
|
67
|
+
pdcli deal list --status open --jq '.[].id' | pdcli deal bulk-update --owner 42
|
|
68
|
+
pdcli person import people.csv --dry-run # CSV headers map to fields,
|
|
69
|
+
pdcli person import people.csv # custom fields by name
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
## Analytics & housekeeping
|
|
73
|
+
|
|
74
|
+
```bash
|
|
75
|
+
pdcli metrics velocity --period 90d # the Sales Velocity Equation, in your terminal
|
|
76
|
+
pdcli funnel --pipeline 1 # stage-to-stage conversion
|
|
77
|
+
pdcli pipeline health # per-stage value, weighted value, stale, no-next-step
|
|
78
|
+
pdcli audit # 11 data-hygiene checks (duplicates, stale, gaps)
|
|
79
|
+
pdcli audit --strict # exit 1 on must-severity findings — wire into CI
|
|
80
|
+
```
|
|
81
|
+
|
|
58
82
|
## Files, webhooks, backup
|
|
59
83
|
|
|
60
84
|
```bash
|