@signaliz/cli 1.0.15 → 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.
- package/README.md +47 -3
- package/dist/bin.js +1221 -72
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -66,6 +66,7 @@ signaliz start
|
|
|
66
66
|
|
|
67
67
|
# 3. Plan something. Pick the surface that matches the job.
|
|
68
68
|
signaliz campaign-agent kit --strategy-template non-medical-home-care --target-count 250 --use-local-leads --json
|
|
69
|
+
signaliz campaign-agent memory-kit --strategy-template non-medical-home-care --target-count 250 --use-local-leads --source agency --json
|
|
69
70
|
signaliz campaign build --prompt "VP Sales at B2B SaaS, 50-500 employees" --target-count 100 --dry-run
|
|
70
71
|
signaliz gtm plan "VP Sales at B2B SaaS, 50-500 employees" --target-count 100 --json > plan.json
|
|
71
72
|
signaliz ops plan "Build 100 verified VP Sales leads at B2B SaaS companies"
|
|
@@ -142,19 +143,17 @@ concurrency, and rate-limit behavior before running an Op.
|
|
|
142
143
|
|
|
143
144
|
## Custom AI Enrichment - Multi Model
|
|
144
145
|
|
|
145
|
-
Run
|
|
146
|
+
Run custom AI enrichment with the Signaliz-hosted default model. The response includes model readback metadata so callers can audit which model ran.
|
|
146
147
|
|
|
147
148
|
```bash
|
|
148
149
|
signaliz ai multi-model \
|
|
149
150
|
--prompt "Research {{company_name}} and score ICP fit for enterprise sales." \
|
|
150
|
-
--model google/gemini-2.5-flash \
|
|
151
151
|
--input-json '{"company_name":"Stripe","company_domain":"stripe.com"}' \
|
|
152
152
|
--output-fields fit_score:number,reasoning:text \
|
|
153
153
|
--confirm-spend
|
|
154
154
|
|
|
155
155
|
signaliz ai multi-model \
|
|
156
156
|
--prompt "Review this PDF and extract buyer pains for {{company_name}}." \
|
|
157
|
-
--model google/gemini-2.5-flash \
|
|
158
157
|
--records-file accounts.json \
|
|
159
158
|
--attachment-fields pdf_url \
|
|
160
159
|
--output-fields pains:array,next_step:text \
|
|
@@ -317,6 +316,13 @@ signaliz campaign-agent init \
|
|
|
317
316
|
--with-byo-placeholder \
|
|
318
317
|
--output-file campaign-request.json
|
|
319
318
|
|
|
319
|
+
signaliz campaign-agent memory-kit \
|
|
320
|
+
--strategy-template non-medical-home-care \
|
|
321
|
+
--target-count 250 \
|
|
322
|
+
--use-local-leads \
|
|
323
|
+
--source agency \
|
|
324
|
+
--json
|
|
325
|
+
|
|
320
326
|
signaliz campaign-agent plan \
|
|
321
327
|
--goal "Build a strategy-template campaign for mature local operators" \
|
|
322
328
|
--strategy-template non-medical-home-care \
|
|
@@ -461,12 +467,50 @@ scripts but are not needed for new work.
|
|
|
461
467
|
|
|
462
468
|
```bash
|
|
463
469
|
# Natural-language planning and creation
|
|
470
|
+
signaliz ops autopilot
|
|
464
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
|
|
465
487
|
signaliz ops quickstart company_research
|
|
466
488
|
signaliz ops create "Build 100 verified VP Sales leads at B2B SaaS companies" --confirm-spend
|
|
467
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
|
+
|
|
468
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
|
|
469
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
|
|
470
514
|
signaliz ops status <op_id>
|
|
471
515
|
signaliz ops results <op_id> --limit 100 --json
|
|
472
516
|
signaliz ops results <op_id> --include-failed-runs --json
|