salesprompter-cli 0.1.3 → 0.1.4

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.
Files changed (2) hide show
  1. package/README.md +56 -0
  2. package/package.json +27 -6
package/README.md CHANGED
@@ -12,6 +12,59 @@
12
12
  - Analyze upstream lead-list and domain-enrichment bottlenecks
13
13
  - Replace opaque Pipedream logic with deterministic CLI workflows
14
14
 
15
+ It is built for two users at the same time:
16
+
17
+ - humans working in a terminal
18
+ - coding agents such as Codex, Claude Code, and other LLM-driven shell workflows
19
+
20
+ ## Start Here
21
+
22
+ If someone discovers Salesprompter from a vague prompt, the first thing they need is the shortest working path.
23
+
24
+ ```bash
25
+ npx salesprompter-cli@latest --help
26
+ ```
27
+
28
+ Or install it globally:
29
+
30
+ ```bash
31
+ npm install -g salesprompter-cli
32
+ salesprompter --help
33
+ ```
34
+
35
+ ## Prompt To Command
36
+
37
+ If the user says something like "I need to determine the ICP of deel.com", there are two different meanings.
38
+
39
+ ### 1. They want leads at Deel itself
40
+
41
+ This means Deel is the target account.
42
+
43
+ ```bash
44
+ salesprompter account:resolve --domain deel.com --company-name Deel --out ./data/deel-account.json
45
+ salesprompter leads:generate --icp ./data/icp.json --count 5 --domain deel.com --company-name Deel --out ./data/deel-leads.json
46
+ ```
47
+
48
+ ### 2. They sell for Deel and need Deel's ideal customer profile
49
+
50
+ This means Deel is the vendor, not the target account.
51
+
52
+ ```bash
53
+ salesprompter icp:vendor --vendor deel --market dach --out ./data/deel-icp.json
54
+ salesprompter leads:lookup:bq --icp ./data/deel-icp.json --limit 100 --execute --out ./data/deel-leads-raw.json --lead-out ./data/deel-leads.json
55
+ salesprompter leads:enrich --in ./data/deel-leads.json --out ./data/deel-enriched.json
56
+ salesprompter leads:score --icp ./data/deel-icp.json --in ./data/deel-enriched.json --out ./data/deel-scored.json
57
+ ```
58
+
59
+ ### 3. They want the LLM to call the CLI directly
60
+
61
+ Use the same commands, but prefer machine-readable output:
62
+
63
+ ```bash
64
+ salesprompter --json icp:vendor --vendor deel --market dach --out ./data/deel-icp.json
65
+ salesprompter --json leads:lookup:bq --icp ./data/deel-icp.json --limit 100 --lead-out ./data/deel-leads.json
66
+ ```
67
+
15
68
  ## Documentation
16
69
 
17
70
  This repository now includes a Mintlify docs site for the wider Salesprompter universe, including the app contract, CLI surface, Chrome extension contract, and the main warehouse-backed workflows.
@@ -24,6 +77,8 @@ This repository now includes a Mintlify docs site for the wider Salesprompter un
24
77
  - Chrome extension: `./platform/chrome-extension.mdx`
25
78
  - Domain finder: `./workflows/domain-finder.mdx`
26
79
  - Command reference: `./reference/cli.mdx`
80
+ - Environment variables: `./reference/environment-variables.mdx`
81
+ - Troubleshooting: `./operations/troubleshooting.mdx`
27
82
 
28
83
  Run the docs locally with:
29
84
 
@@ -94,6 +149,7 @@ salesprompter auth:login --token "<token-from-app>" --api-url "https://salesprom
94
149
 
95
150
  - Every command reads and writes plain JSON.
96
151
  - Output is machine-readable and composable (`--json` for compact transport).
152
+ - The top-level use cases map ambiguous prompts like "determine the ICP of deel.com" into explicit command paths.
97
153
  - Domain contracts are explicit and validated with `zod`.
98
154
  - External integrations are behind narrow provider interfaces.
99
155
  - Lead generation reports which provider and mode produced the result.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "salesprompter-cli",
3
- "version": "0.1.3",
4
- "description": "CLI for defining ICPs, generating leads, enriching them, scoring them, and syncing to GTM tools.",
3
+ "version": "0.1.4",
4
+ "description": "JSON-first sales prospecting CLI for ICP definition, lead generation, enrichment, scoring, and CRM/outreach sync.",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "salesprompter": "dist/cli.js"
@@ -13,19 +13,39 @@
13
13
  "scripts": {
14
14
  "build": "tsc -p tsconfig.json",
15
15
  "check": "tsc --noEmit -p tsconfig.json",
16
- "docs:dev": "npx mint dev",
17
- "docs:broken-links": "npx mint broken-links",
18
- "docs:a11y": "npx mint a11y",
16
+ "docs:dev": "mint dev",
17
+ "docs:broken-links": "mint broken-links",
18
+ "docs:a11y": "mint a11y",
19
19
  "start": "node ./dist/cli.js",
20
20
  "test": "npm run build && tsc -p tsconfig.test.json && node --test dist-tests/tests/**/*.test.js"
21
21
  },
22
22
  "keywords": [
23
23
  "sales",
24
+ "salesprompter",
24
25
  "cli",
26
+ "icp",
27
+ "ideal-customer-profile",
28
+ "prospecting",
25
29
  "lead-generation",
30
+ "lead-enrichment",
31
+ "lead-scoring",
32
+ "sales-intelligence",
26
33
  "crm",
27
- "outreach"
34
+ "outreach",
35
+ "instantly",
36
+ "hubspot",
37
+ "llm",
38
+ "ai-agent",
39
+ "codex"
28
40
  ],
41
+ "homepage": "https://salesprompter.ai/docs",
42
+ "repository": {
43
+ "type": "git",
44
+ "url": "git+https://github.com/danielsinewe/salesprompter-cli.git"
45
+ },
46
+ "bugs": {
47
+ "url": "https://github.com/danielsinewe/salesprompter-cli/issues"
48
+ },
29
49
  "license": "MIT",
30
50
  "dependencies": {
31
51
  "commander": "^14.0.1",
@@ -33,6 +53,7 @@
33
53
  },
34
54
  "devDependencies": {
35
55
  "@types/node": "^24.3.0",
56
+ "mint": "^4.2.420",
36
57
  "typescript": "^5.9.2"
37
58
  }
38
59
  }