M ManySignal

Guide · ManySignal

Migrating from Legacy SOAR

SOAR migrations fail predictably when teams try to port every existing playbook. Legacy SOARs accumulate hundreds of workflows most of which never fire; the migration is the chance to consolidate. This guide covers workflow inventory, the ManySignal action catalogue mapping, autonomy calibration, and cutover — with real YAML.

MH Marcus Hale — Head of Detection Engineering, ManySignal
13 min read Published Jul 19, 2026 Download PDF
01

Inventory before you translate

Export the full playbook catalogue and rank by (a) fire count last 12 months, (b) TP outcome rate, (c) whether the playbook actually completed vs stopped at a manual step. Anything that fired zero times or never completed is technical debt. Leave it behind.

Group survivors into three buckets: notify-only (Slack/ticket), enrich-only (add IOC context), and act (containment/rollback). Notify-only workflows collapse into a single ManySignal notification action. Enrich-only usually becomes a triage question resolver. Only act-workflows need real translation.

02

Map to the ManySignal action catalogue

Every write action in ManySignal is a typed catalogue entry with schema, reversibility, rollback definition, permission class, and connector requirement. Legacy SOAR steps become one or more catalogue calls.

For every playbook you translate, capture the blast radius: how many entities does the worst-case run touch? That number drives the approval-gated threshold. Anything that could touch more than a handful of entities requires approval by default.

# workflows/identity-takeover-response.yaml
key: identity.takeover_response
mode: deterministic
review_state: approved
nodes:
  - id: evidence
    type: action
    catalog_key: evidence.capture_state
    autonomy: autonomous
  - id: notify
    type: action
    catalog_key: communication.notify_slack
    params: { channel: "#soc-p1" }
  - id: approve
    type: human_prompt
    prompt: "Revoke sessions for {{identity.name}}?"
    timeout: 5m
  - id: revoke
    type: action
    catalog_key: identity.revoke_sessions
    depends_on: approve
    autonomy: approve_gated
03

Calibrate autonomy without breaking trust

Ship every migrated workflow in recommend-only mode first. Run for 30 days. Track TP rate at your target confidence threshold. If precision >95% within the intended blast radius, promote to approve-gated. If precision holds >99% over 60 days and blast radius stays bounded, consider autonomous.

Autonomy is per action class per tenant. A notify_slack action can be autonomous immediately; a revoke_sessions action might take 3 months of shadow to earn autonomy. Publish the criteria so operators know the ladder is real, not arbitrary.

04

Cutover: 30 days shadow, 30 dual-run, sunset

Same pattern as SIEM migration. Shadow mode runs both systems; alerts fire twice; workflows execute only in the legacy SOAR. Dual-run makes ManySignal authoritative for the migrated workflows while legacy handles the rest. Sunset removes legacy after two consecutive months of parity.

Retain read-only access to the legacy SOAR run history for audit, incident replay, and compliance. Six months is the standard retention window.

Key takeaways

  • Do not port every playbook. Inventory + rank + trim first.
  • Every action is a catalogue entry with blast radius; that drives the approval threshold.
  • Autonomy is earned per action class per tenant.
  • 30/30/sunset cutover, same as SIEM migration. Keep legacy read-only for 6 months.

Further reading

Frequently asked questions

What is Migrating from Legacy SOAR in an agentic SOC?

Migrating from Legacy SOAR is part of ManySignal's agentic SOC and MDR platform, where AI agents detect, triage, investigate, and respond to threats with human-governed autonomy.

How does ManySignal handle migrating from legacy soar?

ManySignal grounds migrating from legacy soar in a temporal entity graph and behavioural baselines, so every verdict is backed by auditable evidence rather than opaque scores.

Can ManySignal replace my SOAR or MDR for migrating from legacy soar?

Yes. ManySignal combines detection, triage, investigation, response, and reporting in one platform, and can operate as your MDR or augment an existing SOC team.

How is autonomy governed?

Through an autonomy ladder: recommend-only, approve-gated, and autonomous modes per action class, with dry-run previews, blast-radius limits, and a one-click tenant kill switch.

How fast is time to value?

Declarative connectors and shipped detections typically produce AI agent verdicts on live alerts within days, not quarters — no parsing projects or playbook-building phase.

Is ManySignal available as a managed service?

Yes. Consume ManySignal as MDR with 24/7 coverage and monthly reporting, run it as your in-house agentic SOC, or use it as the platform behind your own MDR practice.

How does ManySignal license the platform?

Pricing scales with protected assets and autonomy tier, not per-GB ingestion or per-alert volume. Starter, Growth, and Enterprise plans are available; MDR providers receive volume discounts for multi-tenant deployments.

Where does our data reside?

By default in AWS us-east-1. Enterprise tenants can pin data to specific AWS regions, deploy self-hosted on their own Kubernetes cluster, or use customer-managed encryption keys (CMK) to retain cryptographic control.

What does the evidence trail contain?

Each verdict stores the full question set, per-question agent answers, confidence weights, source event references, entity graph snapshots, and operator attestation — preserved immutably for the retention period chosen at contract time.

How does ManySignal handle a false-positive alert?

The triage agent auto-closes findings it assesses as false positives with a documented rationale — which rule fired, why the evidence fails to support escalation, and the entity baseline that informed the decision. Auto-closure rates typically reach 85–95% within 90 days as baselines mature.

Continue reading

See the agentic SOC in action

Watch AI agents work a real alert queue — verdicts, evidence, and confidence scores included. In-house SOC or MDR, your call.