SYNTHESIS NOTE
Topics›Agents Multi Architecture›this note

How does SafeFlow track sensitivity through agent rewrites?

SafeFlow labels sensitive requests and propagates them through agent collaboration graphs, but the excerpt leaves unclear whether the taint tracks at the request level (coarse, survives rewrites) or content level (fine-grained, vulnerable to paraphrase). This distinction determines how well the system catches exfiltration without false alarms.

Synthesis note · 2026-09-23 · sourced from Agents Multi Architecture

The exfiltration example in the excerpt has a rewrite in the middle: one agent retrieves sensitive content, another rewrites it, a third transmits it. Rewriting is the step that defeats string-level tracking, because once the text is paraphrased, what gets sent may share no wording with what was retrieved. SafeFlow's abstract says the taints are attached to "root requests" and propagated "through a dynamic collaboration graph". Read literally, the label follows the delegation edges, not the text.

That leaves two horns. If the taint rides the delegation graph, a rewrite cannot strip it, because it never lived in the text. The cost is coarseness: the taint says "this work descends from a flagged request", not "this text contains sensitive data from source X". Everything downstream of a sensitive root inherits the label, and the workflow-level validator in Where should workflow validation gates be placed for safety? has to separate a benign use of sensitive material from an exfiltration. If instead the taint has to say which content is sensitive, it rides the content, and then it has to survive paraphrase. That is a semantic-similarity problem with the failure profile of the monitors in Can we detect when models hide their reasoning?, where influence "arrives in words that read clean."

The excerpt does not say which horn SafeFlow takes, or whether "structured" means the taint carries content-level fields alongside the request-level label. What would settle it: the taint's schema, a rewrite-heavy test workflow, and the false-positive rate on benign workflows that start from a sensitive root. This is the vault's question, not one the paper poses.

Inquiring lines that read this note 5

This note is a source for these research framings, grouped by the broader line of inquiry each explores. Scan the bold lines of inquiry; follow any specific question forward.

How can workflow-level validation detect semantic corruption that protocol compliance misses?

Related concepts in this collection 5

This note in its neighbourhood — explore the map, then jump to a related concept in the list below.

Concept map
12 direct connections · 88 in 2-hop network ·medium cluster Open in graph ↗

Click a node to walk · click center to open · click Open in graph to see this note in the full knowledge graph

your link semantically near linked from elsewhere

Related papers in this collection 8

Papers most semantically related to this note, ranked by cosine similarity in the embedding space.

Original note title

does a taint on the root request survive an agent's rewrite only by staying coarse — the excerpt does not say how content-level sensitivity is tracked