Papers › Is Per-Agent Policy Composition Safe? Rethinking Successor-Feature Transfer in...

Is Per-Agent Policy Composition Safe? Rethinking Successor-Feature Transfer in Cooperative Multi-Agent Reinforcement Learning

12 Aug 2026arXiv:2608.11658added by Syntology

Zijian Zhao, Sen Li

Title, abstract, authors and date from arXiv's metadata (CC0); this paper is not in the Papers with Code archive (frozen 2025-07-28).

Many reinforcement learning systems, from fleet management to traffic signal control, must serve an objective that changes dynamically after deployment, and retraining a policy for each new objective is prohibitively expensive. For a single agent, this problem is well understood: successor features with generalized policy improvement, together with their universal extension, recombine a library of learned policies into a policy for any new objective, with a guarantee that the result is never worse than any policy in the library. However, multi-agent transfer has received far less attention, and the common practice of letting each agent recombine its own library independently inherits the recipe but not the guarantee. We prove that this independent composition can produce joint behavior strictly worse than every policy in the library, because recombining teammates changes the environment each agent faces and invalidates the values it relies on, a failure with no single-agent counterpart. We further show that the only unconditionally safe fixed rule is synchronized composition, which moves the whole team to one jointly trained policy but cannot serve objectives that assign different goals to different agents. To attain safety and flexibility at once, we propose MA-USFA, a hierarchical method with two layers: a lower layer of universal successor feature approximators that predicts each agent's successor features while conditioned on its teammates' objectives, and an upper composer that selects, across agents, which library entry each agent should follow and supplies the cross-agent correction a per-agent value cannot represent. Trained once over the distribution of objectives, it is applied at deployment with no per-task adaptation.

PaperPDFCode Syntology ran

In Syntology Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2608.11658")

Code

Syntology Ran 12 of 15 code samples harvested from 1 repository linked to this paper; 3 have no recorded run. Of those that ran: 5 ran · honoured contract; 1 ran · our draft was wrong; 1 ran · fixture could not drive it; 5 ran with no contract checked.

By repository: found in paper text by Syntology: 15 samples from 1 repository, 12 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

RS2002/MA-USFA found in paper text by Syntology report

Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

15 samples harvested; 12 ran; 5 honoured the contract we drafted; 3 have no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

5ran · honoured contract
1ran · our draft was wrong
1ran · fixture could not drive it
5ran
3unverified

Licence: 0 of the 15 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from RS2002/MA-USFA. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

GATLayer RS2002/MA-USFA/tsc/agent.py found in paper text by Syntology ran · metamorphic tier: invariant MIT (permissive) · 4a1bb946049ee916 · report
NeighborComposer RS2002/MA-USFA/tsc/agent.py found in paper text by Syntology ran MIT (permissive) · 3ce3bfc24e185c85 · report
SFQNet RS2002/MA-USFA/tsc/agent.py found in paper text by Syntology ran · metamorphic tier: invariant MIT (permissive) · 4a682b39c5f69bdb · report
_letter_code_to_int RS2002/MA-USFA/tsc/agent.py found in paper text by Syntology ran · honoured contract fingerprinted MIT (permissive) · 50674a6011650f20 · report
build_coupling_adjacency RS2002/MA-USFA/tsc/agent.py found in paper text by Syntology ran MIT (permissive) · 8afd30c4658aa07d · report
build_grid_adjacency RS2002/MA-USFA/tsc/agent.py found in paper text by Syntology ran · honoured contract MIT (permissive) · 866f08badb690ffc · report
describe_support RS2002/MA-USFA/tsc/agent.py found in paper text by Syntology ran · our draft was wrong fingerprinted MIT (permissive) · f2910b29b96ce200 · report
infer_topology_adjacency RS2002/MA-USFA/tsc/agent.py found in paper text by Syntology ran MIT (permissive) · 3c8af447ff59c187 · report
make_source_library RS2002/MA-USFA/tsc/agent.py found in paper text by Syntology ran · honoured contract fingerprinted MIT (permissive) · cd42aa615faae74e · report
parse_grid_coords RS2002/MA-USFA/tsc/agent.py found in paper text by Syntology ran · honoured contract MIT (permissive) · 6dc89f8bf2cdc7ed · report
sample_task RS2002/MA-USFA/tsc/agent.py found in paper text by Syntology ran · fixture could not drive it MIT (permissive) · d759627c94c1f822 · report
try_parse_grid_coords RS2002/MA-USFA/tsc/agent.py found in paper text by Syntology ran · honoured contract MIT (permissive) · 6223f75f7c69faf0 · report
ReplayBuffer RS2002/MA-USFA/tsc/agent.py found in paper text by Syntology unverified MIT (permissive) · cfc56b7bea4330e3 · report
SFAgent RS2002/MA-USFA/tsc/agent.py found in paper text by Syntology unverified MIT (permissive) · fe2bdec92d13fe20 · report
SFReplayBuffer RS2002/MA-USFA/tsc/agent.py found in paper text by Syntology unverified MIT (permissive) · 20761f03847f7456 · report

Results from the paper

The Papers with Code archive ends with its 2025-07-28 snapshot. This paper's arXiv identifier, 2608.11658, was issued in August 2026, after that date, so the archive has no leaderboard rows for it.

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections