Glossary·strategy

Strategy agent chain (L1 → L4)

Theia's four-stage strategy generation pipeline. L1 frames the category, L2 measures perception, L3 turns measurement into priorities, L4 ships content. Every agent reads from pre-computed tables — never recomputes from raw snippets.

The four agents

AgentWhat it producesAudience
L1 — Category BriefWhat the market values: pain points, growth levers, audience segmentsBrand strategy, category planning
L2 — Perception ReportHow the brand's products perform: feature sentiment, leaderboards, trajectoriesCMO, product marketing
L3 — Situation AnalysisWhat to do: priorities, gaps, recommended actions per productEcommerce, brand managers
L4 — Content GenerationShip: Amazon listings, brand PDPs, retailer PDPs, social copyContent team, agencies

Each agent reads from the pillar tables built upstream. None of them touch raw text. This is what makes them fast, cheap, and reproducible.

Why a chain, not a single agent

A single "do everything" LLM call on raw snippets would be:

  • Slow — 100K+ snippets per category is too much context
  • Expensive — every output regenerates the same intermediate analysis
  • Inconsistent — same question gives different answers across runs

The chain solves all three:

  • L1 produces a stable category model. Cached.
  • L2 produces a stable perception model on top of L1. Cached.
  • L3 reads both. Cheap.
  • L4 reads L3. Cheap and ship-ready.

Each layer has a single responsibility and a stable output schema. Downstream consumers don't break when upstream agents are tweaked.

What each agent reads and writes

L1 Category Brief reads:

  • rag_snippets (perception)
  • distinctive_keywords_segment (demand)
  • keyword_search_volume (demand)

Writes: structured category brief — pain points, growth levers, segment maps, top properties.

L2 Perception Report reads:

  • sentiment_trajectories (per product × property × period)
  • property_leaderboard (cross-product ranking)
  • L1 output

Writes: per-product perception summary with feature/benefit/use_case sentiment, trajectories, competitive position.

L3 Situation Analysis reads:

  • L2 output
  • brand_gaps (what brand says vs what market says)
  • product_edges (closest competitors per product)

Writes: priority-ordered action plan per product, with evidence, gap classification, and recommended next move.

L4 Content Generation reads:

  • L3 output
  • asin_content (current Amazon listing)
  • L2 perception (claims to emphasise)

Writes: full Amazon listing (title, bullets, A+ content), brand PDP copy, retailer PDP copy, social posts — ship-ready.

Model selection by agent

AgentModelWhy
L1Claude SonnetNeeds reasoning about market dynamics
L2Claude SonnetMulti-product synthesis
L3Claude SonnetCompetitive logic
L4Claude Sonnet for copy, GPT-4o-mini for title verificationSonnet for creativity, mini for rule-checking

Per-run cost: ~$0.50 for L1-L3, ~$2 for L4 across a full ASIN portfolio. The expensive step is the upstream enrichment — by the time strategy agents run, the heavy lift is done.

Why this matters

The strategy chain is the delivery surface of Theia. It's what a CMO actually reads, what a brand manager actually ships from, what a research firm puts in front of a client.

Behind it is the intelligence repository. In front of it is the deck, the listing, the page, the brief. The chain is the bridge.