salesprompter-cli 0.1.25 → 0.1.27
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 +20 -6
- package/dist/cli.js +1189 -35
- package/dist/hunter-emailfinder.js +252 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@ Salesprompter CLI helps you go from company or product input to qualified leads
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
|
|
8
|
+
curl -fsSL https://docs.salesprompter.ai/install.sh | bash
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
or run directly:
|
|
@@ -17,21 +17,28 @@ npx -y salesprompter-cli@latest
|
|
|
17
17
|
## Quickstart
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
|
-
#
|
|
21
|
-
salesprompter
|
|
20
|
+
# Run first-time setup
|
|
21
|
+
salesprompter setup
|
|
22
22
|
|
|
23
|
-
#
|
|
23
|
+
# Run a local health check
|
|
24
|
+
salesprompter doctor
|
|
25
|
+
|
|
26
|
+
# Sign in from the CLI
|
|
24
27
|
salesprompter auth:login
|
|
25
28
|
|
|
26
29
|
# Verify your session
|
|
27
30
|
salesprompter auth:whoami
|
|
28
31
|
```
|
|
29
32
|
|
|
33
|
+
New here? Create your account at `https://salesprompter.ai/sign-up`, then run `salesprompter auth:login`.
|
|
34
|
+
|
|
35
|
+
For headless or automation use, generate a CLI token in the app and run `salesprompter auth:login --token <token>`.
|
|
36
|
+
|
|
30
37
|
## Common commands
|
|
31
38
|
|
|
32
39
|
```bash
|
|
33
40
|
# Start the guided workflow
|
|
34
|
-
salesprompter
|
|
41
|
+
salesprompter wizard
|
|
35
42
|
|
|
36
43
|
# Show machine-readable output
|
|
37
44
|
salesprompter --json auth:whoami
|
|
@@ -39,6 +46,13 @@ salesprompter --json auth:whoami
|
|
|
39
46
|
# Resolve profile URLs for a pasted contact list
|
|
40
47
|
salesprompter contacts:find-linkedin-urls --in ./contacts.tsv --out ./contacts.enriched.json
|
|
41
48
|
|
|
49
|
+
# Build and start email enrichment from pasted company/contact rows
|
|
50
|
+
# When authenticated, Salesprompter first enriches company domains in the app, then the CLI builds the email batch.
|
|
51
|
+
salesprompter contacts:resolve-emails --in ./contacts.tsv --out-dir ./email-run --dry-run
|
|
52
|
+
|
|
53
|
+
# See included capability packs
|
|
54
|
+
salesprompter packs:list
|
|
55
|
+
|
|
42
56
|
# Explore the full command surface
|
|
43
57
|
salesprompter --help
|
|
44
58
|
```
|
|
@@ -56,6 +70,6 @@ salesprompter --help
|
|
|
56
70
|
|
|
57
71
|
## Links
|
|
58
72
|
|
|
59
|
-
- Docs: https://salesprompter
|
|
73
|
+
- Docs: https://salesprompter.ai/docs
|
|
60
74
|
- App: https://salesprompter.ai
|
|
61
75
|
- Repository: https://github.com/danielsinewe/salesprompter-cli
|