salesprompter-cli 0.1.43 → 0.1.45
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 +30 -0
- package/dist/cli.js +2587 -103
- package/dist/linkedin-session.js +103 -17
- package/dist/sales-navigator.js +42 -15
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -41,6 +41,7 @@ For headless or automation use, generate a CLI token in the app and run `salespr
|
|
|
41
41
|
- guided setup and auth
|
|
42
42
|
- product and market discovery
|
|
43
43
|
- Sales Navigator search orchestration
|
|
44
|
+
- affiliate audience campaigns from affiliate links and LinkedIn searches
|
|
44
45
|
- contact and company enrichment
|
|
45
46
|
- email-enrichment batch preparation
|
|
46
47
|
- scored-lead sync into downstream systems
|
|
@@ -64,6 +65,31 @@ salesprompter companies:resolve-linkedin-urls --in ./companies.txt --out ./compa
|
|
|
64
65
|
# When authenticated, Salesprompter first enriches company domains in the app, then the CLI builds the email batch.
|
|
65
66
|
salesprompter contacts:resolve-emails --in ./contacts.tsv --out-dir ./email-run --dry-run
|
|
66
67
|
|
|
68
|
+
# Preview an affiliate audience without touching LinkedIn
|
|
69
|
+
salesprompter affiliate:launch \
|
|
70
|
+
--affiliate-link "https://example.com/?ref=you" \
|
|
71
|
+
--linkedin-url "https://www.linkedin.com/sales/search/people?query=..." \
|
|
72
|
+
--max-results 100 \
|
|
73
|
+
--dry-run
|
|
74
|
+
|
|
75
|
+
# Collect a Sales Navigator people audience locally and create its campaign page
|
|
76
|
+
salesprompter affiliate:launch \
|
|
77
|
+
--affiliate-link "https://example.com/?ref=you" \
|
|
78
|
+
--linkedin-url "https://www.linkedin.com/sales/search/people?query=..." \
|
|
79
|
+
--max-results 100
|
|
80
|
+
|
|
81
|
+
# End to end: collect, enrich emails, write a sequence, and create a draft Instantly campaign
|
|
82
|
+
salesprompter affiliate:run \
|
|
83
|
+
--affiliate-link "https://example.com/?ref=you" \
|
|
84
|
+
--linkedin-url "https://www.linkedin.com/sales/search/people?query=..." \
|
|
85
|
+
--max-results 100
|
|
86
|
+
|
|
87
|
+
# Review the persisted sequence and enrichment summary, then activate explicitly
|
|
88
|
+
salesprompter affiliate:status "$AFFILIATE_RUN_ID"
|
|
89
|
+
salesprompter affiliate:regenerate-sequence "$AFFILIATE_RUN_ID"
|
|
90
|
+
salesprompter affiliate:enrich "$AFFILIATE_RUN_ID"
|
|
91
|
+
salesprompter affiliate:activate "$AFFILIATE_RUN_ID"
|
|
92
|
+
|
|
67
93
|
# See included capability packs
|
|
68
94
|
salesprompter packs:list
|
|
69
95
|
|
|
@@ -80,6 +106,10 @@ salesprompter --help
|
|
|
80
106
|
|
|
81
107
|
- Use your own authorized data access and workspace credentials.
|
|
82
108
|
- Respect provider terms and customer data boundaries.
|
|
109
|
+
- `affiliate:run` uses direct email enrichment first, then Phantombuster Email Finder for unresolved people before creating a draft Instantly campaign.
|
|
110
|
+
- Affiliate preparation automatically creates three variants per step with spintax; `affiliate:regenerate-sequence` rebuilds and syncs them through the Salesprompter app.
|
|
111
|
+
- `affiliate:enrich` reruns email recovery and adds only newly found addresses to an existing campaign.
|
|
112
|
+
- A draft campaign does not send until `affiliate:activate` is run.
|
|
83
113
|
- The CLI is designed for interactive users and agent-assisted workflows.
|
|
84
114
|
- A repo-local Chrome extension compatibility copy is available in `chrome-extension/` for local LinkedIn session sync and popup copy/debug flows.
|
|
85
115
|
|