Archetype Quick-Select Card

Appendices · Appendix E


"The archetype is the pre-commitment. The spec is the application of the pre-commitment. The agent is the execution of the spec."


Use this card to quickly identify which archetype applies to your system. For full definitions, see The Five Archetypes.


The Five Canonical Intent Archetypes

ArchetypeCore FunctionAgency LevelRisk PostureOversight Model
AdvisorSurfaces information, options, and recommendations — never actsMinimalLowHuman decides and acts
ExecutorCarries out well-defined tasks autonomously within strict boundsHighMediumPre-approved scope; exception escalation
GuardianEnforces rules, validates integrity, and prevents constraint violationsLow (veto only)LowAlerts; humans resolve
SynthesizerAggregates, distills, or composes from multiple sourcesModerateMediumHuman reviews outputs above threshold
OrchestratorCoordinates multiple agents or services toward a compound goalHighHighActive oversight; escalation paths required

Quick-Select Decision Tree

Does your system make any consequential decisions autonomously?
├── NO → Advisor
└── YES
    └── Is its primary job to ENFORCE or PREVENT?
        ├── YES → Guardian
        └── NO
            └── Does it coordinate MULTIPLE agents or services?
                ├── YES → Orchestrator
                └── NO
                    └── Does it primarily AGGREGATE / COMPOSE information?
                        ├── YES → Synthesizer
                        └── NO → Executor

Dimension Summary

Agency

How much discretion does the system exercise?

ArchetypeAgency
AdvisorNone — surfaces options only
GuardianVeto only — can block, not initiate
SynthesizerModerate — decides how to combine, not what to act on
ExecutorHigh — acts within pre-defined scope autonomously
OrchestratorHigh — delegates to sub-agents, manages compound state

Reversibility Sensitivity

How critical is reversibility to the design?

ArchetypeReversibility Concern
AdvisorNot applicable — no actions taken
GuardianHigh — enforcement actions may be irreversible
SynthesizerMedium — outputs may be distributed
ExecutorHigh — tasks may modify state
OrchestratorCritical — coordinates multiple state-changing steps

Minimum Oversight Requirements

ArchetypeMinimum Oversight
AdvisorNone required for output; human must act
GuardianMonitoring + alert routing to human resolver
SynthesizerHuman review above defined confidence/scope threshold
ExecutorPre-approved scope + exception escalation path
OrchestratorActive human oversight at key coordination points

Common Mistakes

Using Executor when Guardian is needed If the system's primary job is to prevent bad things rather than do good things, it is a Guardian. Executors act; Guardians veto.

Using Orchestrator for a simple automation sequence If there is no agent-to-agent coordination or compound state management, an Executor is simpler and safer. Orchestrators are for genuinely multi-agent, multi-step compound goals.

Forgetting that systems can composite archetypes A real system often instantiates multiple archetypes in different layers. A customer support system might be an Advisor at the user interface, an Executor for ticket creation, and a Guardian for PII handling. See Archetype Composition.


For full archetype specifications, see Pick an Archetype and the per-archetype deep-dives in frame/archetypes/.