LISTEN TO THIS ARTICLE
PM-Bench turns prospective memory into an agent evaluation problem: can a system remember to act on a future cue while ordinary work continues? The practical lesson is that reminder reliability needs its own test surface, separate from chat recall and long-context search PM-Bench.
Evidence base: the primary PM-Bench paper, a typed-intention-store follow-up on the same benchmark, TriggerBench's prospective-memory benchmark, and a cognitive-science reference for the Virtual Week paradigm.
Key takeaways:
- Prospective memory is about acting at the right later moment, not retrieving a fact when asked.
- PM-Bench makes the agent keep working through a simulated week while deciding whether a deferred intention is due.
- Typed intention stores may be a better first engineering move than asking a model to hold every future commitment in prose memory.
What This Benchmark Actually Tests
Most memory tests ask whether a model can retrieve something from earlier context. That is retrospective memory. PM-Bench targets a different failure: the user asks for something at request time, the correct action belongs later, and the agent must notice the trigger without being directly prompted at that moment.
The authors model this as a text version of Virtual Week, a cognitive-science task family built around ordinary delayed intentions Virtual Week study. In the agent version, a simulated seven-day week keeps the system busy with ongoing activity while delayed tasks become due PM-Bench. That design matters because many production assistants fail in exactly this shape: they can summarise the plan, but they do not reliably execute the planned action when the cue appears.
PM-Bench is useful because it separates remembering from being reminded.

The benchmark result is a deployment warning
The headline result is modest. PM-Bench compares modern models under multiple agent configurations, and its best method remains short of unattended reliability PM-Bench. That is enough to show a measurable skill, but not enough for workflows where missing a cue can mean a late filing, stale customer follow-up or unreviewed approval.
The production bridge is narrow. PM-Bench is a controlled text benchmark, so it does not prove calendar integrations, permissions, notification delivery or recovery from API failures. The result does not transfer directly to production systems, but it gives buyers a concrete requirement to add to acceptance tests: delayed intentions should be replayed through the full product path, with the surrounding work still running.
The finding also limits a common product shortcut. A longer context window does not automatically mean the system will act at the right future moment. Prospective memory needs cue monitoring, intention state, priority handling and false-alarm control. Treating it as another retrieval problem hides the operational risk.
For teams building assistants, the test question should be simple: can the system carry a future obligation while doing unrelated work, then act only when the right state arrives?
PIS makes the case for typed state
A later paper, Prospective Intention Store, argues that this loop is closer to schema-constrained state tracking than open-ended reasoning. Its authors summarise the published PM-Bench scaffold at 65.1% Set-F1, then report that DeepSeek-Chat with PIS reaches 82.9% Set-F1 on PM-Bench, while Gemma-E2B rises from 4.2% without a store to 66.2% with PIS PIS. They also report 70.1% Set-F1 where retrospective-memory methods stay at most 54.4% PIS.
Those results should not be read as a universal fix. They are benchmark results, not field reliability data. But the architecture lesson is practical: move lifecycle logic into explicit state where possible, and leave the language model to interpret scoped cues and actions.
The strongest design is often boring: a typed intention record, a scheduler or event monitor, a narrow cue matcher, and an audit trail. That is less glamorous than a large free-form memory, but it gives operators something they can inspect.

TriggerBench shows the attention problem
TriggerBench reaches the same problem from another angle. It tests prospective memory across daily-assistant and professional workflow scenarios, including matched retrospective-memory controls and overloaded triggers TriggerBench. The authors report that retrospective memory remains strong up to 100K tokens in their setup, while prospective memory decays as context length grows TriggerBench.
That distinction is the part operators should keep. An assistant may answer a question about a stored instruction and still fail to apply that instruction later. The failure is not necessarily recall. It can be attention allocation: the system does not keep enough spare capacity to notice that a latent commitment has become due.
This connects to earlier Swarm Signal coverage on memory score inflation and missing project facts. Retrospective memory can look adequate while the operational behaviour remains brittle.
How to test this before rollout
PM-Bench points to a concrete acceptance test for agent products. Do not ask only whether the model can repeat an instruction. Ask whether the full system can carry delayed intentions across interruptions, state changes and unrelated work.
Useful checks:
- Store each future obligation as structured state with owner, trigger, due condition, expiry and allowed action.
- Test event-based and time-based cues separately.
- Measure missed actions and false alarms, not only final task success.
- Replay multi-day or multi-session traces where the user changes context before the trigger fires.
- Require an audit line explaining why the system did or did not act.
The buyer question becomes "does it remember?" versus "does it remember to do the thing when the world changes?"
Source trail
- PM-Bench: Evaluating Prospective Memory in LLM Agents -- Liu and Gabriel (2026)
- Making Prospective Memory SLM-Shaped: Typed Intention Stores for Small-Model Agents -- Zhao and Wu (2026)
- TriggerBench: Investigating Prospective Memory for Large Language Models -- Zhang et al. (2026)
- Age and Individual Differences in Prospective Memory During a Virtual Week -- Rose et al. (2010)