Prospective Memory¶
Core Idea¶
Prospective memory is the structural pattern by which an agent or system encodes an intended future action paired with a triggering cue, and later retrieves the intention when the cue is detected, executing the deferred action — without continuous active rehearsal in between. The defining commitments are six. There is an intention, an action to perform later. There is a triggering cue paired with the intention at encoding, which may be time-based (a clock) or event-based (a perceived signal or context). There is a latent storage phase in which the intention persists without active maintenance, freeing working capacity for other tasks. There is a cue-detection process that, while running as ongoing background work, recognizes the trigger when it occurs. There is a retrieval-and-execution event at which the intention returns to active processing and the deferred action is performed. And there is a characteristic set of failure modes: a cue not encoded clearly enough, a cue detected but the intention not retrieved, a cue missed entirely, or retrieval without action, in which the intention is recognized but neglected.
The pattern recurs across substrates as the encode-now / retrieve-on-cue / execute-later loop. In individual cognition, its originating substrate, it is the system that remembers to take pills, mail letters, deliver messages, and keep appointments. In software it is the deferred-execution pattern: cron jobs (time-based), event handlers and listeners (event-based), callbacks, promises and futures, message queues with delay timers, workflow engines with sleep states. In organizations it is the commitment-and-reminder infrastructure: tickler files, follow-up systems, calendars, the practice of "bring this up at next week's meeting." In physical engineering it is the triggered-action pattern: deadman switches, dose dispensers, sprinklers waiting for a temperature trigger. In ecology it is seed dormancy: a seed encodes a developmental program and detects cues — moisture, light, temperature — to germinate. Strip the substrate vocabulary and what remains is a stored intention bound to a triggering cue, a latent maintenance phase, a cue-detection process running in parallel with other work, and a triggered retrieval-and-execution event when the cue fires. The pattern is substrate-independent, though its cognitive-psychology vocabulary requires light translation in non-cognitive substrates such as cron jobs or seed dormancy.
How would you explain it like I'm…
Remember to Remember
When-This-Then-That Memory
Encode Now, Trigger Later
Structural Signature¶
the encoded future intention — the paired triggering cue (time- or event-based) — the latent unrehearsed storage phase — the parallel cue-detection process — the triggered retrieval-and-execution event — the four-point failure taxonomy
The pattern is present when each of the following holds:
- An encoded intention. An action to perform later is stored as a plan.
- A paired triggering cue. At encoding, the intention is bound to a cue — time-based (a clock) or event-based (a perceived signal or context) — that should bring it back to active processing. The cue type sets the cost structure: time-based imposes continuous monitoring, event-based a recognition load at the moment.
- A latent storage phase. The intention persists without active rehearsal, freeing working capacity for other tasks. This is the phase where most failures occur.
- A parallel cue-detection process. A background monitor, running alongside other work, recognizes the trigger when it occurs.
- A retrieval-and-execution event. When the cue fires, the intention returns to active processing and the deferred action is performed.
- A four-point failure taxonomy. The chain can break at encoding (cue not clear), cue-detection (cue missed), retrieval (cue detected but intention not recalled), or execution (intention recalled but neglected) — four structurally distinct breakdowns, each licensing a different intervention.
These compose into an encode-now / retrieve-on-cue / execute-later loop: the dominant reliability move is to externalize cue-detection to a system with independent failure modes, and to tighten cue-action coupling so retrieval is recognition-driven rather than recall-driven.
What It Is Not¶
- Not associative memory.
associative_memoryis a retrieval-by-content architecture for recalling stored information on demand; prospective memory is the deferred- action loop — encode an intention bound to a future cue, hold it latently, and execute when the cue fires. - Not an implementation intention.
implementation_intentionis the binding technique (specific cue to specific action) that strengthens one stage of prospective memory; prospective memory is the whole encode-store-detect-retrieve-execute loop, including the latent phase and the failure taxonomy. - Not priming.
priminglowers the threshold for a response through prior exposure; prospective memory requires explicit encoding of an intention-cue pair and a triggered retrieval, not mere facilitation. - Not foresight.
foresightis anticipating possible futures and keeping options open; prospective memory has already chosen a specific deferred action and waits for its cue. - Not a commitment device. A
commitment_devicebinds future choice against temptation; prospective memory addresses forgetting across a latent phase, ensuring an intended action resurfaces at the right moment. - Common misclassification. Diagnosing every missed deferred action as "forgetting." The chain breaks at four distinct points — encoding, cue-detection, retrieval, execution — and remembering-but-skipping (execution) needs a different fix from never-resurfacing (cue-detection).
Broad Use¶
- Cognitive psychology and neuroscience (origin) — event-based and time-based prospective memory; prefrontal and BA10 involvement; deficits in aging and frontal-lobe lesions; the multiprocess distinction between spontaneous retrieval and active monitoring.
- Software and distributed systems — cron and scheduled jobs (time-based); event handlers, listeners, observers, and pub-sub (event-based); promises, futures, async/await; message queues with delayed delivery; workflow engines; database triggers.
- Organizational practice — calendar reminders, ticketing systems, tickler files, follow-up cadences, action-item tracking, deadlines, bring-forward lists.
- Engineering and physical systems — deadman switches, auto-injectors and dose timers, temperature-triggered sprinklers, current-triggered circuit breakers, smoke-triggered alarms.
- Biology and ecology — seed dormancy and germination cue-detection; hibernation and aestivation triggered by environmental cues; circadian-clock-mediated action schedules.
- Public health and policy — vaccination booster schedules, recall notices, tax-filing reminders, the whole infrastructure of deferred-action public services.
- Education — spaced-repetition schedules implementing encode-now / retrieve-on-schedule as a learning tool; assignment deadlines structuring deferred work.
- Law and contracts — contingent obligations (act on condition X), event-triggered termination clauses, deadline-based rights and obligations.
Clarity¶
Naming prospective memory separates the action of forming the intention from the action of carrying it out, and explicitly addresses the latent phase in between, which is where most failures occur. Many practical failures are not failures of deciding or acting but of latent-phase reliability: the intention was formed clearly and the action would have been performed if recalled, but the cue-detection or retrieval failed. A second clarifying move is the time-based versus event-based distinction: time-based cues require active monitoring of the clock, imposing a continuous attentional cost during the wait, while event-based cues require recognition of a contextual trigger when it appears, imposing a recognition load at the moment but no continuous load — and software faces the identical trade-off in cron job versus event listener. A third is intention-cue coupling strength: loosely coupled pairs (vague cue, weak association) fail at cue-detection, while tightly coupled ones (specific cue, distinct association) succeed, which is exactly why implementation intentions ("when I see X, I will do Y") improve reliability, with equivalents in software's specific event-handler bindings and organizations' named trigger-action playbooks. A fourth is the failure-mode taxonomy itself: encoding failure, cue-detection failure, retrieval failure, and execution failure are four structurally distinct breakdowns, each licensing a different targeted intervention.
Manages Complexity¶
The prospective-memory schema compresses an enormous class of deferred-action problems onto a small operational schema: an intention, a triggering cue (time or event), a latent maintenance phase, a cue-detection process, and a retrieval-and-execution step. Once named, systems that share nothing in surface vocabulary — humans remembering medications, cron jobs, event listeners, calendar reminders, ticketing systems, seed dormancy, deadman switches, contingent contracts, vaccination reminders — collapse onto the same axes, and substrate-specific terms (callback, listener, reminder, dormancy, trigger) become local instantiations of one role. The compression is operationally useful because a single intervention vocabulary applies across all of them: improve cue specificity, externalize cue-detection, add redundant cues, narrow the cue-action coupling, and monitor for missed cues with fallbacks. An analyst holding this schema does not need a separate playbook for missed medication doses, failed cron runs, and dropped action items; the same five-part anatomy and the same intervention menu apply, so a reliability technique proven in one substrate is recognizable and reusable in another rather than rediscovered from scratch.
Abstract Reasoning¶
Treating prospective memory as the unit licenses several substrate-independent moves. The encoding-latency-retrieval-execution decomposition: failure can occur at any of four points, and the required intervention differs by failure mode, making the taxonomy a portable debug protocol for any missed deferred action. The time-based versus event-based trade-off: time-based cues impose a continuous monitoring cost while event-based cues impose a recognition cost at the moment but no continuous load — cron versus event-handler, calendar reminder versus recognition-of-context, the same structural choice everywhere. The externalization argument: storing the intention-cue pair externally — a written reminder, a ticketing system, a cron job — offloads cue-detection from the agent to the environment, which is the primary reliability intervention across substrates, at the cost of attaching reliability to the external system's own reliability. The implementation-intention argument: tightly binding a specific cue to a specific action reduces retrieval failures because the coupling becomes recognition-driven rather than recall-driven, with equivalent gains in named-event listeners, named trigger-action playbooks, and specific sensor-actuator pairings. The monitoring-versus-spontaneous-retrieval split: cue-detection may be active and reliable but costly, or spontaneous and cheap but cue-dependent, a trade-off that ports to polling versus interrupt-driven software and continuous review versus trigger-based escalation. And the context-drift argument: the longer the latency between encoding and firing, the higher the probability that context shifts and the intention becomes irrelevant or misaligned, affecting cognitive prospective memory, long-deferred software jobs, and long-dated contracts alike.
Knowledge Transfer¶
The role mappings are explicit: the intention maps onto the encoded plan for a deferred action; the triggering cue onto the time or event that should bring it back to active processing; the latent storage phase onto the interval of persistence without rehearsal; the cue-detection process onto the parallel background monitor; the retrieval-and-execution event onto the moment the cue fires and the action is performed; and the failure-mode taxonomy onto the four-point breakdown of encoding, cue-detection, retrieval, and execution. With these fixed, both the diagnostic taxonomy and the intervention menu transfer, and the ports are concrete. Gollwitzer's implementation intentions — the cognitive technique of binding "when X, do Y" — map directly onto event-driven software design, carrying the structural reasoning that recognition is more reliable than recall. The software trade-off between scheduled and event-driven tasks is the same one a person faces in choosing between a calendar reminder and a situational trigger. The organizational tickler file and the software cron job are structurally identical: an external system that resurfaces deferred items at a scheduled time. Seed dormancy reveals that latency itself is a designable parameter — some seeds require months of cold, others require fire — which ports to deliberately pacing deferred software jobs and organizational actions. The four-mode failure taxonomy provides a debug protocol for any missed-deferred-action incident across substrates, and externalization recurs everywhere as the dominant reliability move, binding cue-detection to a system that does not share the agent's failure modes. A patient externalizing an eight-hour antibiotic schedule to a reminder app, a labeled pill organizer, and a smart cap that alerts on misses; an operations team running cron jobs with monitoring for failed runs; and a public-health program issuing booster reminders at scale are all doing the same structural work: bind each intention to a specific cue, externalize cue-detection to a system with independent failure modes, add redundancy for the highest-risk firing, and monitor for misses so a fallback can fire.
Examples¶
Formal/abstract¶
Consider an event-driven software system's deferred-execution machinery — the encode-now / retrieve-on-cue / execute-later loop rendered in code, where the prime's structure is explicit and the cognitive vocabulary translates cleanly. The encoded future intention is a callback (or message-queue task) registering an action to run later. The paired triggering cue comes in the prime's two flavors: a cron job binds the action to a time-based cue (run at 02:00 daily), while an event listener binds it to an event-based cue (run when this file arrives, this message is published, this row is inserted). The cue type sets the cost structure exactly as the prime predicts: the cron scheduler must continuously monitor the clock (continuous monitoring load), whereas the event listener imposes no continuous load but a recognition cost at the moment the event fires. The latent unrehearsed storage phase is the interval during which the registered callback sits in a queue or handler table consuming no active computation — freeing the system to do other work, and, as the prime warns, the phase where most failures hide (a dropped queue, a process restart that loses unpersisted timers). The parallel cue-detection process is the scheduler or event loop running in the background, watching for the trigger. The triggered retrieval-and-execution event is the dispatch when the cue fires. The four-point failure taxonomy maps precisely and gives a debug protocol: encoding failure (the job was never registered), cue-detection failure (the event fired but no listener was bound — the missed cue), retrieval failure (the listener fired but the wrong handler ran), and execution failure (the handler ran but errored or no-oped). The dominant reliability move the prime names — externalize cue-detection to a system with independent failure modes — is exactly why production systems run cron with dead-man monitoring: a second system watches for missed runs and fires a fallback.
Mapped back: The callback is the encoded intention, the cron clock or event the triggering cue, the queued-but-idle timer the latent storage phase, the scheduler/event loop the parallel cue-detection process, dispatch the retrieval-and-execution event, and the register/miss/mis-route/error split the four-point failure taxonomy.
Applied/industry¶
Consider a patient managing a timed antibiotic course, alongside the structurally identical case of seed dormancy in ecology — two genuine domains realizing the same deferred-action loop, with the cognitive idiom translating in the biological one. In the medication case the encoded future intention is "take the next dose"; the paired triggering cue is time-based (every eight hours). The latent unrehearsed storage phase is the hours between doses during which the patient is not actively rehearsing the intention — and the prime correctly locates the failure here: doses are missed not because the patient decided not to take them (no execution failure) nor because they couldn't (no encoding failure), but because the cue-detection failed in the latent phase, the intention never resurfacing at the right moment. The prime's interventions follow directly and map to real adherence tools: externalize cue-detection to a reminder app (offloading the monitor to a system with independent failure modes), tighten intention-cue coupling with a labeled pill organizer that makes "is it time?" a recognition rather than a recall task (the implementation-intention move), and add redundancy with a smart cap that alerts on misses so a fallback fires. The four-point taxonomy tells the clinician where to intervene: a patient who forgets entirely needs better cue-detection (reminders), while one who remembers but skips needs an execution-stage intervention (motivation, side-effect management) — structurally distinct fixes. The seed-dormancy parallel maps role-for-role with light translation: a seed encodes a germination program, binds it to event-based environmental cues (moisture, light, post-fire chemistry, a cold period), persists in a genuinely latent unrehearsed phase for months or years, and detects the cue to trigger germination — and the prime's insight that latency itself is a designable parameter is literal here, since some seeds require a fixed cold duration before the cue can fire. A patient externalizing a dosing schedule and an ecologist reading a seed's germination cues do the same structural work: bind each intention to a specific cue and make its detection reliable across the latent phase.
Mapped back: "Take the next dose" (or the germination program) is the encoded intention, the eight-hour clock (or moisture/fire cue) the triggering cue, the inter-dose hours (or dormant months) the latent storage phase, the reminder app (or the seed's cue-sensing) the cue-detection process, and forgetting-versus-skipping (or failing to sense versus failing to sprout) distinct points in the four-part failure taxonomy.
Structural Tensions¶
T1 — Four Failure Points, One Diagnosis (scopal). The chain breaks at four structurally distinct points — encoding, cue-detection, retrieval, execution — each licensing a different intervention. The failure mode is applying a single remedy to all missed deferred actions: adding more reminders (a cue-detection fix) to a patient who detects the cue but deliberately skips (an execution problem), or coaching motivation (an execution fix) for someone who never encoded the cue clearly. Diagnostic: ask where in the chain the break occurred — forgetting entirely is cue-detection, remembering-but-skipping is execution, detecting-but-misrecalling is retrieval, never-registering is encoding — collapsing these into "they forgot" sends the wrong fix to three of the four failure modes.
T2 — Time-Based versus Event-Based Cue (measurement). The cue type sets the cost structure: time-based cues impose continuous monitoring of the clock; event-based cues impose a recognition load at the moment but no continuous cost. The failure mode is choosing the wrong cue type for the load profile — a time-based cue (cron, calendar) for something better triggered by context, paying continuous monitoring for a rare event, or an event-based cue for something that must happen on a schedule regardless of whether any triggering context appears. Diagnostic: ask whether the action must fire at a time (accept continuous monitoring, use time-based) or in response to a situation (accept recognition load, use event-based) — mismatching the cue type to the trigger's nature either wastes monitoring effort or misses a deadline that no context announced.
T3 — Latent Persistence versus Active Rehearsal (temporal). The defining economy is that the intention persists without active rehearsal, freeing working capacity — but that same unrehearsed latency is where most failures hide, because nothing is keeping the intention alive between encoding and firing. The failure mode is trusting latent storage as if it were maintained: assuming an intention parked for hours, months, or a process-restart will resurface intact, when the queue dropped it, the timer was lost, the seed rotted. Diagnostic: ask whether the latent intention is durably stored or merely assumed to persist — the freedom from rehearsal is purchased by relying on the storage substrate, so a system that does not persist its pending timers (or a person with no external store) is one interruption away from silent loss in exactly the phase that carries no active signal.
T4 — Externalized Cue-Detection versus Inherited Dependency (sign/direction). The dominant reliability move is to externalize cue-detection to a system with independent failure modes — but doing so attaches the action's reliability to that external system's reliability. The failure mode is externalizing without accounting for the new dependency: trusting a reminder app, cron scheduler, or tickler file so completely that when it fails (dead battery, missed cron run, lost ticket) the action fails with no backstop, because internal monitoring was abandoned. Diagnostic: ask whether the external cue-detector's failure modes are independent of the agent's and whether a fallback fires when it misses — externalization improves reliability only when the external system fails differently and is itself monitored, otherwise it merely relocates the single point of failure.
T5 — Cue Specificity versus Coverage (scalar). Tightening intention-cue coupling — a specific cue bound to a specific action ("when I see X, I will do Y") — makes retrieval recognition-driven and reliable, but an over-specific cue may never match if the anticipated context fails to appear exactly as encoded. The failure mode runs both ways: a vague cue that fails at detection (loose coupling, missed trigger) or a hyper-specific cue that never fires because the real situation differed slightly from the encoded one. Diagnostic: ask whether the cue is specific enough to be recognized reliably yet general enough to actually occur — implementation intentions gain reliability through specificity, but a cue narrowed past the point where its triggering context reliably appears trades missed-detection for never-triggered, and both leave the action unperformed.
T6 — Long Latency versus Context Drift (temporal). The longer the interval between encoding and firing, the higher the probability that context shifts and the intention becomes irrelevant, misaligned, or actively wrong — affecting deferred software jobs, long-dated contracts, and human intentions alike. The failure mode is firing a stale intention faithfully into a world that has changed: executing a long-deferred action that made sense at encoding but is now harmful, because the cue fired correctly but the intention was never re-validated. Diagnostic: ask whether anything checks the intention's continued relevance between encoding and execution, or whether the system only verifies that the cue fired — a perfectly reliable retrieve-and-execute loop with no staleness check will dutifully perform actions the changed context has rendered obsolete, the deferred-action analogue of a pre-bound rule outliving its world.
Structural–Framed Character¶
Prospective memory is a mixed-structural prime, sitting just on the structural side of the structural–framed spectrum. Its skeleton is an encode-now / retrieve-on-cue / execute-later loop — an intention bound to a triggering cue at encoding, a latent storage phase with no active maintenance, a cue-detection process running as background work, and a triggered retrieval-and-execution event — and that deferred-action pattern recurs in cron jobs and event handlers, message queues with delay timers, deadman switches, and seed dormancy. The cognitive-psychology name is what keeps it in from the bare end.
The diagnostics read structural with a couple of translatable seams. The pattern carries no evaluative weight: a stored-and-triggered intention is neither good nor bad — its failure modes (cue missed, intention not retrieved, retrieval without action) are mechanical, not moral. Its origin is not notably institutional (institutional_origin 0): the encode-bind-detect-fire loop is a generic deferred-execution mechanism, not a construct minted by any institution. And invoking it mostly recognizes a deferred-action structure already present — a cron job firing on a time cue, or a dormant seed germinating on a moisture cue, is the pattern whether or not the cognitive label is applied. Two criteria pull it toward the center. The home vocabulary needs translation: "intention," "remembering to," "retrieval" arrive from cognitive psychology and read awkwardly against a cron job or a seed (vocab_travels and import_vs_recognize each 0.5). And there is a mild human-practice lean (human_practice_bound 0.5): the cleanest cases involve an agent who intends a future action, though the non-cognitive substrates show the structure runs without one. The encode-now/retrieve-on-cue/execute-later core is substrate-free; the cognitive idiom is a thin overlay — exactly the mixed-structural reading the aggregate of 0.3 records.
Substrate Independence¶
Prospective memory is a strongly substrate-independent prime — composite 4 / 5 on the substrate-independence scale. On domain breadth, the encode-now/retrieve-on-cue/execute-later loop recurs across cognitive psychology and neuroscience (its origin — remembering to take pills, mail letters, keep appointments), software and distributed systems (cron jobs as time-based, event handlers and pub-sub as event-based, promises, message queues with delay timers), organizational practice (calendar reminders, tickler files, follow-up cadences), engineering and physical systems (deadman switches, dose timers, temperature-triggered sprinklers), biology and ecology (seed dormancy, hibernation triggered by environmental cues), public health (booster schedules, recall notices), and law and contracts (contingent obligations, event-triggered clauses) — a wide span earning a 5 on breadth. On structural abstraction, the skeleton (an encoded intention, a paired triggering cue, a latent unrehearsed storage phase, a parallel cue-detection process, a triggered retrieval-and-execution event) is medium-neutral and a cron job or a dormant seed instantiates it; but the home vocabulary ("intention," "remembering to," "retrieval") is cognitive and reads awkwardly against a cron job, with a mild human-practice lean since the cleanest cases involve an agent who intends — holding abstraction at 4. On transfer evidence, the ports are concrete — Gollwitzer's implementation intentions map onto event-driven software design, the tickler file and the cron job are structurally identical, seed dormancy shows latency itself is a designable parameter, and the four-mode failure taxonomy provides a debug protocol for any missed-deferred-action incident — a strong 4. The cognitive idiom across abstraction holds the composite at a robust 4.
- Composite substrate independence — 4 / 5
- Domain breadth — 5 / 5
- Structural abstraction — 4 / 5
- Transfer evidence — 4 / 5
Neighborhood in Abstraction Space¶
Prospective Memory sits among the more crowded primes in the catalog (14th percentile for distinctiveness): several abstractions describe nearly the same structure, so a description that fits it will tend to fit its neighbors too — transporting it usually means disambiguating within this family rather than landing on it exactly.
Family — Memory, Records & Persistence (27 primes)
Nearest neighbors
- Implementation Intention — 0.76
- Memory Consolidation — 0.75
- Script — 0.74
- Memoing — 0.73
- Replay — 0.73
Computed from structural-signature embeddings · 2026-06-14
Not to Be Confused With¶
The closest confusion is with associative_memory, the
prime's nearest embedding neighbor, because both are memory
systems and both involve a cue retrieving stored content. The
distinction is in what is stored and when it acts. Associative
memory is a retrieval-by-content architecture: a partial cue
recovers a complete stored pattern on demand, when the system
chooses to query it — it is about recalling information that
already exists. Prospective memory is a deferred-action loop: an
intention to do something later is encoded paired with a future
cue, persists latently with no active querying, and is retrieved-
and-executed only when the cue is detected by a background
process. The difference is between "remember this fact when I ask"
(associative) and "remember to do this thing when the moment
comes" (prospective). The practical consequence is that
prospective memory has failure modes associative memory does not:
the cue may never be detected, or the intention retrieved but the
action neglected, in a latent phase where nothing is actively
recalling. Modeling a deferred-action problem as a retrieval
problem misses that the whole reliability challenge is the
background cue-detection across the unrehearsed interval, not the
content recall itself.
It must also be distinguished from implementation_intention,
with which it is tightly coupled and easily merged. An
implementation intention is the technique of binding a specific
cue to a specific action ("when X, I will Y") to make retrieval
recognition-driven; prospective memory is the whole architecture
the technique serves — the encoding, the latent storage, the
parallel cue-detection, the retrieval-and-execution, and the four-
point failure taxonomy. The implementation intention strengthens
one link (the cue-action coupling, reducing retrieval failures),
but prospective memory can fail at three other points it does not
address: the intention may never be durably encoded, the cue may
be missed entirely, or the action may be recalled and then
skipped. Treating the two as identical reduces prospective memory
to its coupling-strength intervention and loses the latent-phase
reliability problem that is its center of gravity.
A third confusion is with priming, since both involve a
later response being shaped by an earlier event. Priming lowers
the threshold or speeds the availability of a response through
prior exposure, with no explicit intention and no triggered
execution — it is a facilitation, not a deferred plan. Prospective
memory requires an explicitly encoded intention-cue pair and a
discrete retrieval-and-execution event when the cue fires.
Confusing them would treat a vaguely-facilitated tendency as a
reliable deferred action, missing that prospective memory's whole
value is the bound, retrievable, executable intention that priming
never establishes.
For a practitioner these distinctions sort the interventions. An associative-memory frame works on content recall; an implementation-intention frame strengthens cue-action coupling alone; a priming frame relies on facilitation. Prospective memory supplies the full anatomy — encode the intention, externalize cue- detection to a system with independent failure modes, narrow the cue-action coupling, monitor for missed cues with fallbacks, and check the intention's continued relevance before execution — and the four-point failure taxonomy that tells the practitioner which of these to reach for when a deferred action is missed.
Solution Archetypes¶
No catalogued solution archetypes reference this prime yet.