Idea
Deliberative agents maintain an explicit model of the world (even if approximate), formulate goals, and search over sequences of actions — classical AI planning. Strengths: explainable plans, optimality under model assumptions, compositional tasks. Weaknesses: modeling cost, brittleness when the world drifts, and computational expense. LLM agents often mimic deliberation with chain-of-thought or tool-augmented search without a formal PDDL model; the architecture is deliberative in spirit when the system explicitly represents subgoals and revises them.
Signature
state + goal → search(actions)
→ plan → execute → re-plan
// Monitor world for replanning triggers
Key insight: Pair deliberation with monitoring; static plans fail when tools, APIs, or teammates behave differently than modeled.