salesprompter-cli 0.1.27 → 0.1.29
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/CODE_OF_CONDUCT.md +35 -0
- package/CONTRIBUTING.md +89 -0
- package/README.md +30 -1
- package/SECURITY.md +35 -0
- package/dist/cli.js +3309 -166
- package/dist/deel-outreach.js +16 -1
- package/dist/direct-path.js +16 -1
- package/dist/domainfinder.js +132 -0
- package/dist/linkedin-companies.js +3 -3
- package/dist/linkedin-products.js +2 -2
- package/dist/linkedin-session-contracts.js +3 -0
- package/dist/linkedin-session.js +8 -9
- package/dist/vendor/salesprompter-shared/extension-session-contracts.js +29 -0
- package/dist/vendor/salesprompter-shared/linkedin-session.js +22 -0
- package/dist/vendor/salesprompter-shared/phantombuster-contracts.js +16 -0
- package/dist/vendor/salesprompter-shared/session-vault-contracts.js +17 -0
- package/package.json +17 -4
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# Code of Conduct
|
|
2
|
+
|
|
3
|
+
## Our standard
|
|
4
|
+
|
|
5
|
+
We expect contributors and maintainers to keep this project respectful, direct, and constructive.
|
|
6
|
+
|
|
7
|
+
Examples of expected behavior:
|
|
8
|
+
|
|
9
|
+
- assume good intent
|
|
10
|
+
- focus feedback on the code and product behavior
|
|
11
|
+
- use factual, reproducible reports
|
|
12
|
+
- be respectful in disagreement
|
|
13
|
+
- help keep the project usable for others
|
|
14
|
+
|
|
15
|
+
Examples of unacceptable behavior:
|
|
16
|
+
|
|
17
|
+
- harassment or personal attacks
|
|
18
|
+
- discriminatory language
|
|
19
|
+
- doxxing or publishing private information
|
|
20
|
+
- bad-faith disruption
|
|
21
|
+
- spam, abuse, or intimidation
|
|
22
|
+
|
|
23
|
+
## Enforcement
|
|
24
|
+
|
|
25
|
+
Project maintainers may remove, edit, or reject comments, commits, issues, or pull requests that violate this code of conduct.
|
|
26
|
+
|
|
27
|
+
Repeated or severe violations may result in temporary or permanent exclusion from project spaces.
|
|
28
|
+
|
|
29
|
+
## Reporting
|
|
30
|
+
|
|
31
|
+
To report conduct issues, contact:
|
|
32
|
+
|
|
33
|
+
- `hello@danielsinewe.com`
|
|
34
|
+
|
|
35
|
+
Please include links, screenshots, or other concrete context where possible.
|
package/CONTRIBUTING.md
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
# Contributing to salesprompter-cli
|
|
2
|
+
|
|
3
|
+
Thanks for contributing to `salesprompter-cli`.
|
|
4
|
+
|
|
5
|
+
## Scope
|
|
6
|
+
|
|
7
|
+
This repository contains the public CLI for Salesprompter:
|
|
8
|
+
|
|
9
|
+
- guided setup and auth flows
|
|
10
|
+
- lead-generation and enrichment commands
|
|
11
|
+
- docs-site source for the CLI docs experience
|
|
12
|
+
- tests for command contracts and user-facing behavior
|
|
13
|
+
|
|
14
|
+
## Development setup
|
|
15
|
+
|
|
16
|
+
Requirements:
|
|
17
|
+
|
|
18
|
+
- Node.js `>=20`
|
|
19
|
+
- npm
|
|
20
|
+
|
|
21
|
+
Install dependencies:
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
npm install
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
Build the CLI:
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
npm run build
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
Run the main verification steps:
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
npm test
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
For broader repo checks:
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
npm run verify:all
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
## Change guidelines
|
|
46
|
+
|
|
47
|
+
Please keep changes aligned with the product-facing CLI surface:
|
|
48
|
+
|
|
49
|
+
- prefer stable, user-facing command names over internal implementation names
|
|
50
|
+
- keep default help and README examples concise and product-oriented
|
|
51
|
+
- add or update tests when command behavior, payloads, or parsing rules change
|
|
52
|
+
- avoid introducing hidden infrastructure details into normal CLI output
|
|
53
|
+
|
|
54
|
+
## Pull requests
|
|
55
|
+
|
|
56
|
+
Before opening a PR:
|
|
57
|
+
|
|
58
|
+
1. Run `npm run build`
|
|
59
|
+
2. Run `npm test`
|
|
60
|
+
3. Update docs or README when user-facing behavior changes
|
|
61
|
+
4. Keep PRs focused on one logical change when possible
|
|
62
|
+
|
|
63
|
+
PR descriptions should include:
|
|
64
|
+
|
|
65
|
+
- what changed
|
|
66
|
+
- why it changed
|
|
67
|
+
- how it was verified
|
|
68
|
+
- any follow-up work or known limits
|
|
69
|
+
|
|
70
|
+
Use the PR template in `.github/pull_request_template.md`.
|
|
71
|
+
|
|
72
|
+
## Reporting bugs
|
|
73
|
+
|
|
74
|
+
When reporting a bug, include:
|
|
75
|
+
|
|
76
|
+
- the command you ran
|
|
77
|
+
- the input shape or sample payload
|
|
78
|
+
- expected behavior
|
|
79
|
+
- actual behavior
|
|
80
|
+
- relevant JSON output or error messages
|
|
81
|
+
- your environment details such as Node version and OS
|
|
82
|
+
|
|
83
|
+
## Security
|
|
84
|
+
|
|
85
|
+
Do not open public issues for security-sensitive findings. Use the process in [SECURITY.md](./SECURITY.md).
|
|
86
|
+
|
|
87
|
+
## Releases
|
|
88
|
+
|
|
89
|
+
For release steps, see [RELEASING.md](./RELEASING.md).
|
package/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# salesprompter-cli
|
|
2
2
|
|
|
3
|
-
Salesprompter CLI
|
|
3
|
+
Salesprompter CLI is a terminal workflow for lead generation, enrichment, scoring, and sync.
|
|
4
|
+
|
|
5
|
+
It helps operators and agents go from company, market, or product input to qualified outbound-ready leads with a product-facing command surface and machine-readable output.
|
|
4
6
|
|
|
5
7
|
## Install
|
|
6
8
|
|
|
@@ -34,6 +36,15 @@ New here? Create your account at `https://salesprompter.ai/sign-up`, then run `s
|
|
|
34
36
|
|
|
35
37
|
For headless or automation use, generate a CLI token in the app and run `salesprompter auth:login --token <token>`.
|
|
36
38
|
|
|
39
|
+
## What it does
|
|
40
|
+
|
|
41
|
+
- guided setup and auth
|
|
42
|
+
- product and market discovery
|
|
43
|
+
- Sales Navigator search orchestration
|
|
44
|
+
- contact and company enrichment
|
|
45
|
+
- email-enrichment batch preparation
|
|
46
|
+
- scored-lead sync into downstream systems
|
|
47
|
+
|
|
37
48
|
## Common commands
|
|
38
49
|
|
|
39
50
|
```bash
|
|
@@ -46,6 +57,9 @@ salesprompter --json auth:whoami
|
|
|
46
57
|
# Resolve profile URLs for a pasted contact list
|
|
47
58
|
salesprompter contacts:find-linkedin-urls --in ./contacts.tsv --out ./contacts.enriched.json
|
|
48
59
|
|
|
60
|
+
# Resolve LinkedIn company URLs for a pasted company list
|
|
61
|
+
salesprompter companies:resolve-linkedin-urls --in ./companies.txt --out ./companies.enriched.json
|
|
62
|
+
|
|
49
63
|
# Build and start email enrichment from pasted company/contact rows
|
|
50
64
|
# When authenticated, Salesprompter first enriches company domains in the app, then the CLI builds the email batch.
|
|
51
65
|
salesprompter contacts:resolve-emails --in ./contacts.tsv --out-dir ./email-run --dry-run
|
|
@@ -67,6 +81,21 @@ salesprompter --help
|
|
|
67
81
|
- Use your own authorized data access and workspace credentials.
|
|
68
82
|
- Respect provider terms and customer data boundaries.
|
|
69
83
|
- The CLI is designed for interactive users and agent-assisted workflows.
|
|
84
|
+
- A repo-local Chrome extension compatibility copy is available in `chrome-extension/` for local LinkedIn session sync and popup copy/debug flows.
|
|
85
|
+
|
|
86
|
+
## Development
|
|
87
|
+
|
|
88
|
+
```bash
|
|
89
|
+
npm install
|
|
90
|
+
npm run build
|
|
91
|
+
npm test
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
For contribution and security processes, see:
|
|
95
|
+
|
|
96
|
+
- [CONTRIBUTING.md](./CONTRIBUTING.md)
|
|
97
|
+
- [CODE_OF_CONDUCT.md](./CODE_OF_CONDUCT.md)
|
|
98
|
+
- [SECURITY.md](./SECURITY.md)
|
|
70
99
|
|
|
71
100
|
## Links
|
|
72
101
|
|
package/SECURITY.md
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# Security Policy
|
|
2
|
+
|
|
3
|
+
## Supported versions
|
|
4
|
+
|
|
5
|
+
Security fixes are applied to the latest published CLI version.
|
|
6
|
+
|
|
7
|
+
If you are reporting a vulnerability, please verify it against the latest release first when possible.
|
|
8
|
+
|
|
9
|
+
## Reporting a vulnerability
|
|
10
|
+
|
|
11
|
+
Please do not report security vulnerabilities through public GitHub issues.
|
|
12
|
+
|
|
13
|
+
Send reports to:
|
|
14
|
+
|
|
15
|
+
- `hello@danielsinewe.com`
|
|
16
|
+
|
|
17
|
+
Include:
|
|
18
|
+
|
|
19
|
+
- affected version
|
|
20
|
+
- reproduction steps
|
|
21
|
+
- impact assessment
|
|
22
|
+
- logs, screenshots, or proof of concept if available
|
|
23
|
+
|
|
24
|
+
## Response expectations
|
|
25
|
+
|
|
26
|
+
We aim to:
|
|
27
|
+
|
|
28
|
+
- acknowledge receipt promptly
|
|
29
|
+
- reproduce and assess the report
|
|
30
|
+
- ship a fix or mitigation when confirmed
|
|
31
|
+
- coordinate disclosure when appropriate
|
|
32
|
+
|
|
33
|
+
## Sensitive data
|
|
34
|
+
|
|
35
|
+
This CLI may operate on customer lead data, workspace metadata, and authenticated sessions. Please avoid sending real customer data unless it is necessary to reproduce the issue.
|