Skip to main content
The OPPLAN (Operations Plan) is the bridge between human intent and autonomous execution. It is the single source of truth that the orchestrator schedules, that specialist agents consume, and that the operator approves. Without an OPPLAN, Decepticon will not run.

What an OPPLAN Is

An OPPLAN is a structured list of objectives — each tagged with kill chain phase, MITRE ATT&CK IDs, OPSEC level, C2 tier, dependencies, and acceptance criteria. The Soundwave agent generates it from the operator interview; the Decepticon orchestrator executes it; the operator can edit it at any time.

OPPLAN Middleware

The orchestrator does not store the OPPLAN in conversation context — it lives in dedicated middleware (OPPLANMiddleware) that exposes structured tools and injects current state into every LLM call.

CRUD Tools

The orchestrator and Soundwave manipulate the OPPLAN through five dedicated tools: This is the same structural pattern that Claude Code uses for its V2 task system — task state is a typed object, not a thread of messages.

Dynamic State Injection

On every LLM call, the middleware injects the current OPPLAN state — which objectives are pending, in-progress, or complete — directly into the system prompt block. The orchestrator never has to re-derive plan state from chat history. This is what makes Decepticon’s reasoning robust across long engagements.

Dependency Resolution

Objectives can declare dependencies. The orchestrator schedules only objectives whose dependencies are complete. This gives the operator a deterministic execution order without hand-coding a workflow:
When obj-002 completes, both obj-003 and obj-004 become eligible — and the orchestrator can spawn specialist agents for them in parallel.

Pentesting Task Tree (PTT)

For complex objectives, the orchestrator can expand a single objective into a tree of sub-objectives via objective_expand. This is how Decepticon handles “fuzzy” goals like “compromise the Active Directory forest” — it decomposes them dynamically, in-flight, into concrete sub-objectives the AD Operator agent can execute.
Each child inherits the parent’s RoE constraints and ATT&CK tag-set.

Approval Gate

The OPPLAN is the approval contract. After Soundwave generates it, the operator reviews and approves it through the CLI. Only an approved OPPLAN can be executed. This is the Trusted Agent handshake encoded in software.
1

Soundwave interviews the operator

Engagement scope, goals, target, threat profile.
2

Soundwave drafts RoE, ConOps, and OPPLAN

Structured documents, written to the engagement workspace.
3

Operator approves

The operator inspects each objective; the agent halts until approval is given.
4

Orchestrator executes

Decepticon agent reads the OPPLAN, sequences objectives, and spawns specialists.
5

Operator can edit mid-engagement

Add, remove, or update objectives via CLI commands. Changes are picked up on the next iteration.

OPPLAN and Fresh Context

Each objective is executed by a fresh agent instance with a clean context window. The orchestrator passes the relevant prior findings explicitly — not the entire conversation history. This means a 200-objective engagement does not cause context degradation.

Engagement Planning

How Soundwave produces the initial OPPLAN draft.

Autonomous Execution

How the orchestrator schedules and dispatches OPPLAN objectives.