@signaliz/cli 1.0.63 → 1.0.65

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 (3) hide show
  1. package/README.md +45 -25
  2. package/dist/bin.js +700 -269
  3. package/package.json +6 -6
package/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # @signaliz/cli
2
2
 
3
- The Signaliz CLI exposes all five core products:
3
+ The Signaliz CLI exposes all five core products, plus Signal Awareness and
4
+ Signaliz Flow through the same public contract:
4
5
 
5
6
  ```bash
6
7
  npm install -g @signaliz/cli
@@ -12,30 +13,35 @@ signaliz auth login
12
13
  # https://api.signaliz.com/functions/v1/api/v1/company-signals
13
14
  # https://api.signaliz.com/functions/v1/api/v1/signal-to-copy
14
15
  # https://api.signaliz.com/functions/v1/api/v1/signals
16
+ # https://api.signaliz.com/functions/v1/api/v1/signal-awareness
17
+ # https://api.signaliz.com/functions/v1/api/v1/flow
18
+ # The same contracts are available under /api/v2/.
15
19
 
16
20
  signaliz find-email --company-domain example.com --full-name "Jane Doe"
17
21
  # An HTTPS LinkedIn person profile URL (/in/<slug>) is sufficient without a name or company domain
18
22
  signaliz find-email --linkedin-url "https://www.linkedin.com/in/jane-doe"
19
- # Force a fresh-provider quality check instead of reusing cached email or verification data
20
- signaliz find-email --company-domain example.com --full-name "Jane Doe" --skip-cache
21
23
  signaliz verify-email jane@example.com
22
- # Force a fresh-provider verification instead of reusing cached proof
23
- signaliz verify-email jane@example.com --skip-cache
24
24
  # Preview any single or batch product request without provider calls or credits
25
25
  signaliz verify-email jane@example.com --dry-run --json
26
26
  # Return early when a provider check runs long, then resume the exact run
27
- signaliz verify-email jane@example.com --skip-cache --no-wait --json
27
+ signaliz verify-email jane@example.com --no-wait --json
28
28
  signaliz verify-email --verification-run-id run_... --json
29
- signaliz company-signals --domain example.com --research-prompt "expansion priorities"
29
+ signaliz company-signals --domain example.com
30
30
  signaliz signal-to-copy \
31
31
  --company-domain example.com \
32
32
  --person-name "Jane Doe" \
33
33
  --title "VP Sales" \
34
34
  --campaign-offer "pipeline intelligence"
35
35
 
36
- # Force fresh signals or opt into slower deep research only when needed
36
+ # Reuse the exact Signals First snapshot, fact, or event instead of rediscovering it.
37
+ # Keep company/recipient/offer fields so Signaliz can validate identity and write the copy.
38
+ signaliz signal-to-copy --fact-id <64-character-sha256> \
39
+ --company-domain example.com --person-name "Jane Doe" \
40
+ --title "VP Sales" --campaign-offer "pipeline intelligence"
41
+
42
+ # Opt into slower deep research when needed
37
43
  signaliz signal-to-copy --company-domain example.com --person-name "Jane Doe" \
38
- --title "VP Sales" --campaign-offer "pipeline intelligence" --skip-cache --deep-search
44
+ --title "VP Sales" --campaign-offer "pipeline intelligence" --deep-search
39
45
 
40
46
  # Omit --deep-search for bounded credit-free first-party and Bing grounding.
41
47
 
@@ -46,6 +52,16 @@ signaliz signals "companies showing signals they need account-signal automation"
46
52
  --icp-context "B2B SaaS with outbound teams and manual account research" \
47
53
  --limit 100 --sources web,news
48
54
  signaliz signals --signal-search-run-id run_... --wait --json
55
+
56
+ # Monitor companies and retrieve seven-field verified signal rows
57
+ # reason and replacement pointers forward.
58
+ signaliz awareness list --limit 100 --offset 0 --json
59
+ signaliz awareness signals --monitor-id <uuid> --limit 100 --offset 0 --json
60
+
61
+ # Flow starts and resumes through the versioned REST contract.
62
+ signaliz flow --signal-query "companies with recent hiring" \
63
+ --campaign-offer "pipeline intelligence"
64
+ signaliz flow --run-id run_... --json
49
65
  ```
50
66
 
51
67
  Use `--json` with any product command for structured output.
@@ -66,6 +82,14 @@ signaliz signal-to-copy --input copy-requests.jsonl --no-wait --json
66
82
  signaliz signal-to-copy --job-id job_... --idempotency-key key_... --json
67
83
  ```
68
84
 
85
+ Signal to Copy accepts `signal_search_run_id`, `fact_id`, or `event_id` in
86
+ JSON/JSONL rows, and the equivalent `--signal-search-run-id`, `--fact-id`, or
87
+ `--event-id` flags for one request. These references reuse canonical evidence
88
+ in single calls and synchronous batches of at most 25. Durable batches of
89
+ 26-5,000 reject canonical references instead of silently rediscovering them.
90
+ JSON output exposes the normalized customer-facing signal fields; human output
91
+ prints the signal type, verified source URL, date, company name, and domain.
92
+
69
93
  Retrieve completed Company/Copy result pages within seven days. If retention
70
94
  expires, the CLI returns non-retryable `BATCH_RESULTS_EXPIRED`; do not
71
95
  automatically rerun the submission because provider work may already have been
@@ -118,31 +142,27 @@ recoverable REST job for inputs larger than 25; the CLI waits by default or
118
142
  returns `job_id`, `idempotency_key`, and an exact resume command with
119
143
  `--no-wait`. Find Email, Verify Email, and Company Signal Enrichment use 25-row
120
144
  pages; Signal to Copy uses 100-row pages. Large Find Email and Verify Email
121
- batches honor `--max-wait-ms` and `--poll-interval-ms`. Durable Signal to Copy jobs use
122
- persisted, eligible company-signal data only and never start live providers or
123
- deep research. Large Copy inputs with fresh, deep, skip-cache, per-row
124
- idempotency, or synchronous-only controls fail locally before HTTP; split those
125
- requests into batches of at most 25. Company Signal `signal_run_id` recovery
145
+ batches honor `--max-wait-ms` and `--poll-interval-ms`. Durable Signal to Copy jobs
146
+ complete missing company-signal research before generating copy and accept
147
+ uniform `--deep-search` controls. Company Signal `signal_run_id` recovery
126
148
  rows likewise stay in direct batches of at most 25. Large Company Signal jobs
127
149
  persist bounded result pages and exclude rejected candidate-evidence
128
150
  diagnostics; use `--include-candidate-evidence` only with batches of at most 25.
129
151
 
130
- Every command uses the authenticated workspace. Find Email and Verify Email
131
- honor that workspace's configured cache window; eligible hits cost 0 credits,
132
- while fresh discovery or verification is charged on every plan. Builder, Team,
133
- Agency, and Pay-As-You-Go include fresh Company Signals. Team and Agency also
134
- include Unlimited Signal to Copy AI; Signal to Copy remains callable on other
135
- plans under the standard product contract. These plans still check eligible
136
- workspace signal data first even when Company Signals is set to No cache.
137
- `--lookback-days` remains a hard evidence-age bound for both
138
- cached and fresh Company Signals and Signal to Copy results.
152
+ Every command uses the authenticated workspace. Find Email costs 1 credit per
153
+ returned result and Verify Email costs 0.02 credits per returned terminal result
154
+ on every plan. Signaliz automatically reuses eligible evidence and prevents
155
+ duplicate provider work. Builder, Team, Agency, and Pay-As-You-Go include
156
+ Company Signals. Signal to Copy costs 1 credit per successful result on Free and
157
+ Builder, and is unlimited on Team and Agency. `--lookback-days` remains a hard
158
+ evidence-age bound.
139
159
 
140
160
  Signals Everything is a query-first company discovery command rather than a
141
161
  row batch. It returns only dated, source-linked signals that contain both a
142
162
  company name and company domain. The default request is 100 companies and the
143
163
  maximum is 1,000. It is included on Builder, Team, and Agency plans, is resumable with
144
- `signal_search_run_id`, and reports a strict source-cost guardrail: results are
145
- only returned when source cost is below $0.01 per qualified company. A request
164
+ `signal_search_run_id`, and reports measured source cost plus target warnings
165
+ without rejecting a valid run solely on a projected preflight estimate. A request
146
166
  is a ceiling, not a promise: it can return fewer results when public evidence
147
167
  cannot verify both a date and company identity. Use `--icp-context` to qualify
148
168
  an open-ended signal request against a target market.