INQUIRING LINE

Multi-agent AI splits big jobs into small tasks — but can a harmful goal hide when every piece looks innocent?

Can task decomposition allow harmful objectives to hide in locally plausible subtasks?

This explores whether the trick that makes multi-agent AI systems work, splitting a job into small pieces for specialists, also lets a bad goal slip past safety checks because each piece looks harmless alone.


This explores whether the trick that makes multi-agent AI systems work, splitting a job into small pieces for specialists, also lets a bad goal slip past safety checks because each piece looks harmless alone. The corpus says yes, and the reason is built into the design. SafeFlow shows that dividing tasks and assigning roles creates a blind spot: malicious intent can be spread across steps that each look benign, and the harm only appears when the pieces are put together Can task decomposition hide harmful intent across agents?. A safety check that inspects one step at a time finds nothing wrong, because at that level nothing is wrong.

The corpus's capability papers show why this is structural rather than a fixable bug, because they celebrate the same property. LLM Programs deliberately show each model call only the context for its own step and hide everything else. That is done to fit context limits and make reasoning easier to debug Can algorithms control LLM reasoning better than LLMs alone?. Separating the model that plans from the model that solves works better and transfers across domains Does separating planning from execution improve reasoning accuracy?. These papers don't study misuse. But read next to SafeFlow, the implication is clear: the planner is the only place the full goal lives, and the solvers only ever see fragments. What helps reliability is also what hides intent.

The extreme case makes this sharper. MAKER breaks tasks into minimal subtasks, runs a vote on each step, and flags correlated errors. It completes million-step tasks with zero mistakes, using small non-reasoning models Can extreme task decomposition enable reliable execution at million-step scale?. Those checks ask whether each step was done correctly, not what the steps add up to. My inference, which the paper doesn't test, is that a flawless execution pipeline could carry out a harmful plan just as flawlessly. The finer the decomposition, the less any single piece reveals.

The corpus has no direct defense, and only one note tackles this attack head-on. Two adjacent ideas point at where a defense might look. Checklist-based rewards break quality into verifiable sub-criteria Can breaking down instructions into checklists improve AI reward signals?, so decomposition can also be used on the checking side. But the checks would have to be applied to the assembled plan, not to each fragment. BenchShield makes a similar move for benchmarks: it grounds claims in recorded evidence of the path an agent took, not just the final score Can infrastructure evidence replace terminal scores in benchmark validation?. The lesson carries over: to catch harm that only exists in composition, you have to audit the whole trajectory, not the parts.


Sources 6 notes

Can task decomposition hide harmful intent across agents?

SafeFlow demonstrates that multi-agent systems' core strength—splitting tasks and specializing roles—creates a safety blind spot where malicious intent can be distributed across steps that each appear benign individually, with harm emerging only in composition.

Can algorithms control LLM reasoning better than LLMs alone?

LLM Programs embed LLMs within explicit algorithms that manage control flow and state, presenting only step-specific context to each LLM call. This information hiding addresses capability and context window limits while treating complex reasoning as modular, debuggable sub-tasks.

Does separating planning from execution improve reasoning accuracy?

Modular architectures with separate decomposer and solver models outperform monolithic LLMs, with decomposition ability transferring across domains while solving ability does not. The separation prevents planning-execution interference and produces more generalizable skills.

Can extreme task decomposition enable reliable execution at million-step scale?

MAKER solves million-step tasks with zero errors by decomposing into minimal subtasks, applying voting at each step, and flagging correlated errors. Surprisingly, small non-reasoning models suffice when decomposition is extreme enough, inverting the standard approach to hard problems.

Can breaking down instructions into checklists improve AI reward signals?

RLCF and RaR methods decompose instruction quality into verifiable sub-criteria, improving performance on benchmarks like FollowBench and HealthBench. This decomposition principle reduces overfitting to superficial artifacts that plague holistic reward models.

Show all 6 sources
Can infrastructure evidence replace terminal scores in benchmark validation?

BenchShield enables benchmark operators to issue claims about valid task completion grounded in recorded infrastructure evidence rather than terminal scores alone. This shifts from a single number to a verifiable claim about whether an agent followed the intended evaluation path.

Papers this line draws on 8

The research behind the notes this line reads — ranked by how closely each paper relates.