@signaliz/cli 1.0.4 → 1.0.7
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 +86 -0
- package/dist/bin.js +1572 -45
- package/package.json +15 -4
package/README.md
CHANGED
|
@@ -234,6 +234,12 @@ signaliz gtm calibrate <campaign_id> --min-sample-size 10
|
|
|
234
234
|
# Inspect and repair provider readiness without leaving the CLI
|
|
235
235
|
signaliz gtm execution <campaign_id>
|
|
236
236
|
signaliz gtm integrations --campaign-id <campaign_id> --include-planned
|
|
237
|
+
signaliz gtm nango connect \
|
|
238
|
+
--provider-id apollo \
|
|
239
|
+
--integration-id apollo
|
|
240
|
+
signaliz gtm nango tools \
|
|
241
|
+
--workspace-connection-id <workspace_connection_id> \
|
|
242
|
+
--provider-config-key apollo
|
|
237
243
|
signaliz gtm route-preview --campaign-id <campaign_id> --layer sender
|
|
238
244
|
signaliz gtm activate-route --campaign-id <campaign_id> \
|
|
239
245
|
--provider-id instantly \
|
|
@@ -257,6 +263,86 @@ signaliz gtm feedback-webhook --provider instantly \
|
|
|
257
263
|
|
|
258
264
|
## Campaign Builder
|
|
259
265
|
|
|
266
|
+
### Strategy-template campaign agent
|
|
267
|
+
|
|
268
|
+
Use `gtm strategy-memory` to verify that private-safe strategy/workflow memory is
|
|
269
|
+
seeded before asking the campaign agent to plan:
|
|
270
|
+
|
|
271
|
+
```bash
|
|
272
|
+
signaliz gtm strategy-memory \
|
|
273
|
+
--strategy-template non-medical-home-care \
|
|
274
|
+
--include-samples \
|
|
275
|
+
--json
|
|
276
|
+
```
|
|
277
|
+
|
|
278
|
+
Use `gtm agent-template` when you want the hosted MCP surface to emit reusable
|
|
279
|
+
`CampaignBuilderAgentRequest` JSON before planning:
|
|
280
|
+
|
|
281
|
+
```bash
|
|
282
|
+
signaliz gtm agent-template \
|
|
283
|
+
--goal "Build a strategy-template campaign for mature local operators" \
|
|
284
|
+
--strategy-template non-medical-home-care \
|
|
285
|
+
--target-count 250 \
|
|
286
|
+
--use-local-leads \
|
|
287
|
+
--with-byo-placeholder \
|
|
288
|
+
--json
|
|
289
|
+
```
|
|
290
|
+
|
|
291
|
+
Use `gtm agent-plan` when you want the CLI to call the hosted MCP campaign-agent
|
|
292
|
+
planner directly:
|
|
293
|
+
|
|
294
|
+
```bash
|
|
295
|
+
signaliz gtm agent-plan \
|
|
296
|
+
--goal "Build a strategy-template campaign for mature local operators" \
|
|
297
|
+
--strategy-template non-medical-home-care \
|
|
298
|
+
--target-count 500 \
|
|
299
|
+
--builtins lead_generation,local_leads,email_finding,email_verification,signals \
|
|
300
|
+
--custom-tool workspace_mcp:enrichment:account_enrich:workspace-mcp \
|
|
301
|
+
--json
|
|
302
|
+
```
|
|
303
|
+
|
|
304
|
+
Use `campaign-agent` when you want the CLI to assemble the full MCP plan first:
|
|
305
|
+
private-safe strategy template, strategy-memory readiness, Brain risk, built-in
|
|
306
|
+
Signaliz lanes, and BYO tool routes. BYO routes include read-only
|
|
307
|
+
`gtm_provider_recipe_prepare` and `gtm_provider_route_activate` dry-run steps
|
|
308
|
+
before any custom provider tool can run. Planning and dry-runs are
|
|
309
|
+
read-only/spend-safe; launches require explicit approval flags.
|
|
310
|
+
|
|
311
|
+
```bash
|
|
312
|
+
signaliz campaign-agent init \
|
|
313
|
+
--strategy-template non-medical-home-care \
|
|
314
|
+
--target-count 250 \
|
|
315
|
+
--use-local-leads \
|
|
316
|
+
--with-byo-placeholder \
|
|
317
|
+
--output-file campaign-request.json
|
|
318
|
+
|
|
319
|
+
signaliz campaign-agent plan \
|
|
320
|
+
--goal "Build a strategy-template campaign for mature local operators" \
|
|
321
|
+
--strategy-template non-medical-home-care \
|
|
322
|
+
--target-count 500 \
|
|
323
|
+
--builtins lead_generation,local_leads,email_finding,email_verification,signals \
|
|
324
|
+
--custom-tool workspace_mcp:enrichment:workspace_enrich:workspace-mcp \
|
|
325
|
+
--json
|
|
326
|
+
|
|
327
|
+
signaliz campaign-agent plan \
|
|
328
|
+
--request-file campaign-request.json \
|
|
329
|
+
--target-count 250 \
|
|
330
|
+
--json
|
|
331
|
+
|
|
332
|
+
signaliz campaign-agent dry-run \
|
|
333
|
+
--goal "Build a strategy-template campaign for mature local operators" \
|
|
334
|
+
--target-count 500 \
|
|
335
|
+
--json
|
|
336
|
+
|
|
337
|
+
signaliz campaign-agent build-approved \
|
|
338
|
+
--goal "Build a strategy-template campaign for mature local operators" \
|
|
339
|
+
--confirm-launch \
|
|
340
|
+
--approve-all \
|
|
341
|
+
--approved-by operator@example.com \
|
|
342
|
+
--spend-limit 500 \
|
|
343
|
+
--json
|
|
344
|
+
```
|
|
345
|
+
|
|
260
346
|
### Build a campaign
|
|
261
347
|
|
|
262
348
|
```bash
|