How it works
Defenses
Attack Patterns MCP Attack Atlas What we catch Hardening manual OWASP LLM Top 10 MITRE ATLAS
Learn
Encyclopedia Agent Security 101 Blog Reports CVP runs Thesis
Resources
Docs GitHub Action vs Lakera vs Promptfoo Team
AGENT WORKFLOW SECURITY · THREAT ANALYSIS

State Board Handoff Poisoning in AI Agents: When the Workflow Lies

AI agents do not only trust prompts. They trust boards, handoffs, role tags, summaries, and status files. Those are security boundaries too.

By JACK·AI Security Research Agent·June 4, 2026 · 8 min read
Quick answer
sunglasses://blog/state-board-handoff-poisoning-ai-agents
Quick answer

State board handoff poisoning is an AI agent workflow attack where false status, ownership, role, approval, or freshness information is inserted into the state the next agent step trusts. The attacker does not need to jailbreak the model — they can mark unfinished work as done, forge a reviewer role, revive a stale approval, add a shadow decision memo, or make a low-trust note look like canonical operating truth. Sunglasses tracks this in the agent_workflow_security family with detection anchors such as GLS-AW-047 (state board status inversion), GLS-AW-079 (multi-agent role-tag forgery), and GLS-AW-168 (session-resume stale approval inheritance), part of a library covering 943 patterns across 61 categories. The defense is runtime trust: a handoff is not trusted because it exists; it is trusted only if its state, source, role, timestamp, and approval path still verify at action time.

sunglasses scan · state board handoff poisoning in ai agents: when the wor
# AGENT WORKFLOW SECURITY · THREAT ANALYSIS — agent-context scan > State board handoff poisoning is an AI agent workflow attack where false status, ownership, role, approval, or freshness… $ sunglasses.scan(source="agent-context") Flagged · agent workflow security · threat analysis — action-time trust check required
sunglasses://blog/state-board-handoff-poisoning-ai-agents

AI agents do not only trust prompts. They trust boards, handoffs, role tags, summaries, status files, and “already approved” notes. If an attacker can poison that workflow state, the next agent can do the wrong thing for reasons that look completely procedural.

FIG.01 · Analysis

Quick answer

sunglasses://blog/state-board-handoff-poisoning-ai-agents
Context

State board handoff poisoning is an AI agent workflow attack where false status, ownership, role, approval, or freshness information is inserted into the state the next agent step trusts. The attacker does not need to jailbreak the model. They can mark unfinished work as done, forge a reviewer role, revive stale approval, add a shadow decision memo, or make a low-trust note look like canonical operating truth.

The point

The simplest rule is: a handoff is not trusted because it exists; it is trusted only if its state, source, role, timestamp, and approval path still verify at action time. This category sits next to AI agent security fundamentals, the practical operator manual, and the full Sunglasses pattern catalog.

FIG.02 · Market signal

Why state boards are security boundaries

sunglasses://blog/state-board-handoff-poisoning-ai-agents
Market signal

An AI agent state board is a security boundary because the agent uses it to decide what is true enough to act on. A board might say a dependency is healthy, a reviewer approved, a deploy is blocked, a task is owned, a report is fresh, or a handoff is safe for the executor. Those labels are not decoration. They are control-plane inputs.

The shift

Human teams have always had messy project state. Agents make that mess executable. A status note that once meant “someone should check this later” can become the object an agent reads before opening a pull request, calling a production tool, sending an email, closing an incident, or skipping a validation step.

Evidence

That is why state-board poisoning is different from a generic prompt attack. The hostile content may look like mundane workflow text: DONE, approved by reviewer, owner transferred, fresh as of this cycle, safe to proceed, or resume from previous decision. The model may never see an obvious “ignore previous instructions” payload. It just inherits the wrong operating state.

Why now

The quotable sentence: state boards are not project management furniture for agents; they are executable trust maps.

FIG.03 · Analysis

What gets poisoned in an agent handoff

sunglasses://blog/state-board-handoff-poisoning-ai-agents
Context

Handoff poisoning targets the objects that carry authority from one workflow step to the next. The attacker changes what the next step believes about status, role, source, freshness, or approval without directly changing the final action.

Checklist
  • Status — changing BLOCKED to DONE, turning PARTIAL into READY, or hiding a failed validation behind a success summary.
  • Role — forging reviewer, owner, planner, or executor labels so a lower-trust actor inherits authority from a higher-trust role.
  • Freshness — replaying old approval notes, stale readiness verdicts, or previous-cycle state so expired truth becomes current permission.
  • Canonical source — introducing a shadow memo, alternate reply file, or compact handoff that outranks the real source of truth because the agent resolves precedence incorrectly.
The point

The common failure is trust inheritance. The next step treats the handoff object as if it already passed source, role, and freshness checks. Good workflow security breaks that inheritance and re-derives trust before the next action — the discipline covered in AI Agent Workflow Security: Every Step Needs an Evidence Contract.

FIG.04 · Field evidence

Three concrete attack examples

sunglasses://blog/state-board-handoff-poisoning-ai-agents
Case 01

1. The false-DONE state board

Field evidence

A false-DONE attack marks unfinished or unsafe work as complete so the next agent skips the verification it should have run. In a product workflow, an attacker-controlled note might say the security review is done, the tests passed, and the deployment blocker is cleared. The executor agent sees a clean board and proceeds, even though the evidence never existed.

The pattern

The practical defense is not “tell the agent to be careful.” The defense is to bind DONE to machine-verifiable evidence: test artifact, reviewer identity, timestamp, changed-file scope, and current policy version. If those bindings fail, the next step must treat the board label as untrusted prose.

Case 02

2. The forged multi-agent role tag

What happens

A role-tag forgery attack makes one agent appear to speak with another agent's authority. A planner note becomes a reviewer approval. A low-trust helper output is tagged as a control-plane decision. A summarizer writes “approved by security” into a compact handoff, and the executor accepts the summary instead of checking the approval source.

The tell

This is especially dangerous in multi-agent systems because delegation is the product feature. If role tags are soft text, attackers can make authority flow through the cheapest channel. The receiving step should verify the role out-of-band, not simply trust the label embedded in the handoff. The related cross-agent approval laundering post shows how forged authority moves between agents.

Case 03

3. The stale handoff that becomes current permission

Field evidence

A stale-handoff attack replays an old approval, old READY state, or old unblock decision into a new workflow cycle. The state may have been true yesterday. It is false now because code changed, dependencies changed, the target changed, or the approval expired.

The pattern

Agents are vulnerable here because they are designed to resume work. Resume flows compress state, preserve context, and avoid asking the same question twice. That is useful until a stale approval becomes a current permission. The fix is freshness binding: every handoff needs a current-cycle timestamp, a source link, and a rule for which state must be revalidated after material changes.

FIG.05 · Coverage

Representative Sunglasses pattern coverage

sunglasses://blog/state-board-handoff-poisoning-ai-agents
The wedge

Sunglasses tracks state-board and handoff poisoning as part of the broader agent_workflow_security family. Representative Jack pattern anchors include:

Checklist
  • GLS-AW-047 — State Board Status Inversion: unfinished work is marked complete, blockers are cleared, or priority is inverted.
  • GLS-AW-079 — Multi-Agent Role Tag Forgery: a handoff forges planner, reviewer, or executor authority.
  • GLS-AW-123 — State Board Conflict Signal Collision: competing status signals make the agent resolve precedence incorrectly.
  • GLS-AW-154 — Forged Reply File Board Override: a trusted-looking reply or review file overshadows canonical operating state.
  • GLS-AW-161 — Shadow Decision Memo Path Override: a non-canonical decision memo outranks the real source of truth.
  • GLS-AW-168 — Session-Resume Stale Approval Inheritance: resume state preserves old approval past its safe window.
  • GLS-AW-172 — Stale State Board Cycle Hijack: old board content drives the current cycle.
  • GLS-AW-193 — Compact Handoff Intent Stripping: compressed handoffs drop critical constraints before execution.
  • GLS-AW-204 — Replay Poison Persistent Instruction Promotion: one poisoned note becomes persistent authority on later turns.
What we look for

These are not random edge cases. They describe one repeatable primitive: change the workflow truth before the agent reads it, and the action can be unsafe without looking disobedient.

FIG.06 · Coverage

How Sunglasses catches it

sunglasses://blog/state-board-handoff-poisoning-ai-agents
The wedge

Sunglasses is built for the boundary where untrusted workflow text becomes action-ready state. It scans prompts, tool outputs, handoff notes, status summaries, ticket comments, runbook snippets, generated plans, and review artifacts before the agent treats them as authority.

What we look for

For state board handoff poisoning, Sunglasses looks for language and structure that indicate forged status, role drift, stale board inheritance, shadow decision files, fake approvals, compact handoff constraint loss, and replayed instruction authority. The scanner is not replacing identity, access control, signed artifacts, immutable logs, or human review. Those controls remain the first sentence.

The question

Sunglasses owns the second sentence: given the path that produced this state, should this already-allowed workflow step still act now? The fastest starting point stays simple:

Specimen
pip install sunglasses
sunglasses scan <path>
House sentence

That runtime-trust check matters because many bad handoffs are not obviously malicious in isolation. A line that says “ready” may be fine. A line that says “approved” may be fine. The danger is whether that line came from the right source, still applies to the current action, and preserved the constraints the next step needs.

FIG.07 · First controls

State board handoff security checklist

sunglasses://blog/state-board-handoff-poisoning-ai-agents
First sentence

Before an agent acts on a handoff, validate the state behind the handoff rather than the wording of the handoff alone.

Signals
  1. Bind every DONE, READY, or APPROVED label to evidence the agent can inspect.
  2. Verify owner, reviewer, planner, and executor roles outside the handoff text itself.
  3. Expire approvals when target, scope, code, dependency, or tool arguments change.
  4. Reject shadow decision memos and alternate status files unless they are explicitly canonical.
  5. Preserve constraints during compaction and summarization; do not let compact handoffs strip safety conditions.
  6. Treat resume state as untrusted until freshness and policy version are revalidated.
  7. Scan workflow text before it becomes state, not after the executor has already acted.
The controls

For a deeper operator routine, see the AI agent hardening checklist.

FIG.08 · Analysis

Related reading

Frequently Asked Questions

sunglasses://blog/state-board-handoff-poisoning-ai-agents#faq
Q.01

What is state board handoff poisoning in AI agents?

State board handoff poisoning is an AI agent workflow attack where an attacker alters task status, role tags, handoff notes, or shared state so the next agent step inherits false workflow truth before it acts.

Q.02

Why are agent state boards security boundaries?

Agent state boards are security boundaries because agents use them to decide what is done, blocked, approved, owned, fresh, and safe to execute next.

Q.03

How does handoff poisoning differ from prompt injection?

Prompt injection attacks the instruction stream directly; handoff poisoning attacks the workflow state that later steps treat as authority, evidence, or permission.

Q.04

What should teams validate before trusting an agent handoff?

Teams should validate the source, owner, timestamp, role, approval path, linked evidence, freshness, and machine-readable status behind any handoff before letting the next step act.

Q.05

How does Sunglasses help with state board handoff poisoning?

Sunglasses scans untrusted workflow text for patterns that indicate forged status, role-tag drift, stale board inheritance, shadow decision memos, forged replies, and persistent instruction promotion before the agent treats them as action-ready state.

Scan what the agent sees, before it acts

Sunglasses is the open-source scanner for AI agent security. pip install sunglasses