@signaliz/cli 1.0.16 → 1.0.18

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 +47 -4
  2. package/dist/bin.js +1176 -72
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -7,6 +7,12 @@ provider routing for Nango-managed customer API destinations, MCP/Ops
7
7
  observability, enrichment primitives, and live email verification at 0.02 fresh
8
8
  enrichment credits when a new verification is needed.
9
9
 
10
+ Monthly plans include unlimited cache search, Campaign Builder, API, MCP, CLI,
11
+ Ops, and integrations. Team is the $499/month public plan and adds unlimited
12
+ live Find People and Find Companies in Signaliz; Agency stays $999/month with
13
+ higher credits and throughput. Fresh credits are used only when Signaliz
14
+ creates, verifies, or fetches new premium data.
15
+
10
16
  Fresh enrichment throughput now allows Free 60/min, Builder 300/min, Team
11
17
  600/min, Agency 1,000/min, and Pay-As-You-Go 1,000/min, with a 5,000/hour
12
18
  workspace safety cap.
@@ -143,19 +149,17 @@ concurrency, and rate-limit behavior before running an Op.
143
149
 
144
150
  ## Custom AI Enrichment - Multi Model
145
151
 
146
- Run OpenRouter Fusion-backed enrichment with the exact OpenRouter model ID you want. Fusion includes web search/fetch by default during analysis; the CLI intentionally does not expose a separate web-search flag.
152
+ Run custom AI enrichment with the Signaliz-hosted default model. The response includes model readback metadata so callers can audit which model ran.
147
153
 
148
154
  ```bash
149
155
  signaliz ai multi-model \
150
156
  --prompt "Research {{company_name}} and score ICP fit for enterprise sales." \
151
- --model google/gemini-2.5-flash \
152
157
  --input-json '{"company_name":"Stripe","company_domain":"stripe.com"}' \
153
158
  --output-fields fit_score:number,reasoning:text \
154
159
  --confirm-spend
155
160
 
156
161
  signaliz ai multi-model \
157
162
  --prompt "Review this PDF and extract buyer pains for {{company_name}}." \
158
- --model google/gemini-2.5-flash \
159
163
  --records-file accounts.json \
160
164
  --attachment-fields pdf_url \
161
165
  --output-fields pains:array,next_step:text \
@@ -185,7 +189,8 @@ signaliz lead local \
185
189
  # Poll async lead jobs
186
190
  signaliz lead status <job_id>
187
191
 
188
- # Verify or find emails
192
+ # Verify or find emails. `email find` uses the V3 waterfall:
193
+ # primary discovery, secondary enrichment, verified guesses, then paid fallback if needed.
189
194
  signaliz email verify jane@example.com
190
195
  signaliz email verify-batch --emails jane@example.com,sam@example.com
191
196
  signaliz email status <job_id>
@@ -469,12 +474,50 @@ scripts but are not needed for new work.
469
474
 
470
475
  ```bash
471
476
  # Natural-language planning and creation
477
+ signaliz ops autopilot
472
478
  signaliz ops plan "Monitor these accounts daily and alert Slack on funding signals"
479
+ # Human plan output includes run-now, schedule, approval, status, results, and Nango dry-run gates.
480
+ signaliz ops create "Monitor strategic accounts and alert Slack on funding or CRM updates" \
481
+ --cadence daily \
482
+ --timezone America/Phoenix \
483
+ --wake-on-events company_funded,crm.updated \
484
+ --activate \
485
+ --confirm-spend
486
+ signaliz ops schedule "Monitor strategic accounts and alert Slack on funding or CRM updates" \
487
+ --timezone America/Phoenix \
488
+ --wake-on-events company_funded,crm.updated \
489
+ --destinations slack \
490
+ --confirm-spend \
491
+ --wait \
492
+ --limit 100 \
493
+ --json
473
494
  signaliz ops quickstart company_research
474
495
  signaliz ops create "Build 100 verified VP Sales leads at B2B SaaS companies" --confirm-spend
475
496
 
497
+ # Bring any customer-owned API into Ops through Nango
498
+ signaliz ops nango search hubspot --intent ops --action-name upsert-contact --required-fields email,company --json
499
+ signaliz ops nango tools --workspace-connection-id <workspace_connection_id> --json
500
+ signaliz ops nango call <action_name> --workspace-connection-id <workspace_connection_id> --input-json '{"rows":[]}' --dry-run --json
501
+ # --wait uses the native nango_mcp_tool_call_and_wait tool for a single execute-and-result packet
502
+ signaliz ops nango call <action_name> --workspace-connection-id <workspace_connection_id> --input-json '{"rows":[]}' --execute --confirm --wait --json
503
+ # schedule/recur uses native ops_nango_schedule(_and_wait) instead of a generic destinations payload
504
+ signaliz ops nango schedule "Monitor accounts daily and upsert approved rows to HubSpot" --workspace-connection-id <workspace_connection_id> --provider-config-key hubspot --action-name upsert-contact --input-json '{"source":"signaliz"}' --required-fields email,company --confirm-spend --write-confirmed --wait --json
505
+ signaliz ops execute "Build 50 approved ICP leads and upsert them to HubSpot" \
506
+ --destinations nango \
507
+ --workspace-connection-id <workspace_connection_id> \
508
+ --provider-config-key hubspot \
509
+ --action-name upsert-contact \
510
+ --dry-run
511
+
476
512
  # Execute and inspect Op-level results
513
+ signaliz ops execute "Build 50 approved ICP leads and return reviewed rows" \
514
+ --confirm-spend \
515
+ --wait \
516
+ --limit 50 \
517
+ --json
477
518
  signaliz ops run <op_id>
519
+ signaliz ops run <op_id> --wait --limit 100 --json
520
+ signaliz ops wait <op_id> --limit 100 --json
478
521
  signaliz ops status <op_id>
479
522
  signaliz ops results <op_id> --limit 100 --json
480
523
  signaliz ops results <op_id> --include-failed-runs --json