@signaliz/cli 1.0.16 → 1.0.17

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 +39 -3
  2. package/dist/bin.js +1127 -72
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -143,19 +143,17 @@ concurrency, and rate-limit behavior before running an Op.
143
143
 
144
144
  ## Custom AI Enrichment - Multi Model
145
145
 
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.
146
+ Run custom AI enrichment with the Signaliz-hosted default model. The response includes model readback metadata so callers can audit which model ran.
147
147
 
148
148
  ```bash
149
149
  signaliz ai multi-model \
150
150
  --prompt "Research {{company_name}} and score ICP fit for enterprise sales." \
151
- --model google/gemini-2.5-flash \
152
151
  --input-json '{"company_name":"Stripe","company_domain":"stripe.com"}' \
153
152
  --output-fields fit_score:number,reasoning:text \
154
153
  --confirm-spend
155
154
 
156
155
  signaliz ai multi-model \
157
156
  --prompt "Review this PDF and extract buyer pains for {{company_name}}." \
158
- --model google/gemini-2.5-flash \
159
157
  --records-file accounts.json \
160
158
  --attachment-fields pdf_url \
161
159
  --output-fields pains:array,next_step:text \
@@ -469,12 +467,50 @@ scripts but are not needed for new work.
469
467
 
470
468
  ```bash
471
469
  # Natural-language planning and creation
470
+ signaliz ops autopilot
472
471
  signaliz ops plan "Monitor these accounts daily and alert Slack on funding signals"
472
+ # Human plan output includes run-now, schedule, approval, status, results, and Nango dry-run gates.
473
+ signaliz ops create "Monitor strategic accounts and alert Slack on funding or CRM updates" \
474
+ --cadence daily \
475
+ --timezone America/Phoenix \
476
+ --wake-on-events company_funded,crm.updated \
477
+ --activate \
478
+ --confirm-spend
479
+ signaliz ops schedule "Monitor strategic accounts and alert Slack on funding or CRM updates" \
480
+ --timezone America/Phoenix \
481
+ --wake-on-events company_funded,crm.updated \
482
+ --destinations slack \
483
+ --confirm-spend \
484
+ --wait \
485
+ --limit 100 \
486
+ --json
473
487
  signaliz ops quickstart company_research
474
488
  signaliz ops create "Build 100 verified VP Sales leads at B2B SaaS companies" --confirm-spend
475
489
 
490
+ # Bring any customer-owned API into Ops through Nango
491
+ signaliz ops nango search hubspot --intent ops --action-name upsert-contact --required-fields email,company --json
492
+ signaliz ops nango tools --workspace-connection-id <workspace_connection_id> --json
493
+ signaliz ops nango call <action_name> --workspace-connection-id <workspace_connection_id> --input-json '{"rows":[]}' --dry-run --json
494
+ # --wait uses the native nango_mcp_tool_call_and_wait tool for a single execute-and-result packet
495
+ signaliz ops nango call <action_name> --workspace-connection-id <workspace_connection_id> --input-json '{"rows":[]}' --execute --confirm --wait --json
496
+ # schedule/recur uses native ops_nango_schedule(_and_wait) instead of a generic destinations payload
497
+ 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
498
+ signaliz ops execute "Build 50 approved ICP leads and upsert them to HubSpot" \
499
+ --destinations nango \
500
+ --workspace-connection-id <workspace_connection_id> \
501
+ --provider-config-key hubspot \
502
+ --action-name upsert-contact \
503
+ --dry-run
504
+
476
505
  # Execute and inspect Op-level results
506
+ signaliz ops execute "Build 50 approved ICP leads and return reviewed rows" \
507
+ --confirm-spend \
508
+ --wait \
509
+ --limit 50 \
510
+ --json
477
511
  signaliz ops run <op_id>
512
+ signaliz ops run <op_id> --wait --limit 100 --json
513
+ signaliz ops wait <op_id> --limit 100 --json
478
514
  signaliz ops status <op_id>
479
515
  signaliz ops results <op_id> --limit 100 --json
480
516
  signaliz ops results <op_id> --include-failed-runs --json