salesprompter-cli 0.1.39 → 0.1.41
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 +11 -0
- package/dist/cli.js +3673 -1124
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -60,10 +60,19 @@ salesprompter contacts:find-linkedin-urls --in ./contacts.tsv --out ./contacts.e
|
|
|
60
60
|
# Resolve LinkedIn company URLs for a pasted company list
|
|
61
61
|
salesprompter companies:resolve-linkedin-urls --in ./companies.txt --out ./companies.enriched.json
|
|
62
62
|
|
|
63
|
+
# Import authorized local Sales Navigator people-search results into Salesprompter
|
|
64
|
+
salesprompter search:local-import --query-url '<sales navigator people search URL>' --number-of-profiles all
|
|
65
|
+
|
|
66
|
+
# Build a one-lead Sales Navigator search locally, accepting filters step by step
|
|
67
|
+
salesprompter search:lead-parameters --name 'Katrin Laukötter' --company neotares --current-title 'Workplace Consultant' --dry-run
|
|
68
|
+
|
|
63
69
|
# Build and start email enrichment from pasted company/contact rows
|
|
64
70
|
# When authenticated, Salesprompter first enriches company domains in the app, then the CLI builds the email batch.
|
|
65
71
|
salesprompter contacts:resolve-emails --in ./contacts.tsv --out-dir ./email-run --dry-run
|
|
66
72
|
|
|
73
|
+
# Launch the app-backed Phantombuster email finder and backfill current Email not found / Email invalid rows.
|
|
74
|
+
salesprompter contacts:resolve-emails --provider phantombuster --email-backfill-only --retry-not-found-after-days 0 --retry-invalid-emails --limit 500 --out-dir ./email-run
|
|
75
|
+
|
|
67
76
|
# See included capability packs
|
|
68
77
|
salesprompter packs:list
|
|
69
78
|
|
|
@@ -80,6 +89,8 @@ salesprompter --help
|
|
|
80
89
|
|
|
81
90
|
- Use your own authorized data access and workspace credentials.
|
|
82
91
|
- Respect provider terms and customer data boundaries.
|
|
92
|
+
- Local Sales Navigator import requires an authorized Sales Navigator session captured from the user's own browser context.
|
|
93
|
+
- Local Sales Navigator import writes profile evidence that the app uses for lead-pool filtering. The app owns the durable filter contract: `company_filter = 'Company qualified'` requires at least one ready qualified contact, `company_contact_filter` reports whether a raw qualified company has any usable contacts left, and contact filter `20: LinkedIn profile invalid` excludes placeholder LinkedIn profiles such as rows with a profile URL but no usable profile image.
|
|
83
94
|
- The CLI is designed for interactive users and agent-assisted workflows.
|
|
84
95
|
- A repo-local Chrome extension compatibility copy is available in `chrome-extension/` for local LinkedIn session sync and popup copy/debug flows.
|
|
85
96
|
|