salesprompter-cli 0.1.24 → 0.1.26
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 +10 -5
- package/dist/cli.js +1031 -34
- package/dist/hunter-emailfinder.js +252 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -17,16 +17,17 @@ npx -y salesprompter-cli@latest
|
|
|
17
17
|
## Quickstart
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
|
-
#
|
|
21
|
-
salesprompter
|
|
22
|
-
|
|
23
|
-
# Login explicitly
|
|
20
|
+
# Sign in from the CLI
|
|
24
21
|
salesprompter auth:login
|
|
25
22
|
|
|
26
23
|
# Verify your session
|
|
27
24
|
salesprompter auth:whoami
|
|
28
25
|
```
|
|
29
26
|
|
|
27
|
+
New here? Create your account at `https://salesprompter.ai/sign-up`, then run `salesprompter auth:login`.
|
|
28
|
+
|
|
29
|
+
For headless or automation use, generate a CLI token in the app and run `salesprompter auth:login --token <token>`.
|
|
30
|
+
|
|
30
31
|
## Common commands
|
|
31
32
|
|
|
32
33
|
```bash
|
|
@@ -39,6 +40,10 @@ salesprompter --json auth:whoami
|
|
|
39
40
|
# Resolve profile URLs for a pasted contact list
|
|
40
41
|
salesprompter contacts:find-linkedin-urls --in ./contacts.tsv --out ./contacts.enriched.json
|
|
41
42
|
|
|
43
|
+
# Build and start email enrichment from pasted company/contact rows
|
|
44
|
+
# When authenticated, Salesprompter first enriches company domains in the app, then the CLI builds the email batch.
|
|
45
|
+
salesprompter contacts:resolve-emails --in ./contacts.tsv --out-dir ./email-run --dry-run
|
|
46
|
+
|
|
42
47
|
# Explore the full command surface
|
|
43
48
|
salesprompter --help
|
|
44
49
|
```
|
|
@@ -56,6 +61,6 @@ salesprompter --help
|
|
|
56
61
|
|
|
57
62
|
## Links
|
|
58
63
|
|
|
59
|
-
- Docs: https://salesprompter
|
|
64
|
+
- Docs: https://salesprompter.ai/docs
|
|
60
65
|
- App: https://salesprompter.ai
|
|
61
66
|
- Repository: https://github.com/danielsinewe/salesprompter-cli
|