C1 · Task Decomposition
Task DecompositionДекомпозиция задачи
Agent receives a task and breaks it into subtasks. Each entity-agent (Store, Clinic, Customer) can decompose a request into a set of executable actions.Агент получает задачу и нарезает её на подзадачи. Каждый entity-агент (Store, Clinic, Customer) способен декомпозировать запрос в набор исполнимых действий.
✅ Can (POC)Можем (POC)
Anthropic SDK · LangChain · CrewAI
C2 · Agent Catalog + Assignment
Agent CatalogКаталог агентов
Agent queries the agent catalog, selects executors and assigns subtasks. Recursive: the executor can also delegate down (Store → Enterprise pattern).Агент обращается к каталогу агентов, выбирает исполнителей и назначает подзадачи. Рекурсивно: исполнитель тоже может делегировать вниз (Store → Enterprise pattern).
⚠️ Partially (flat, not recursive)Частично (flat, не рекурсивно)
Google ADK · LangGraph
C3 · Dynamic Orchestration
Dynamic OrchestrationДинамическая оркестрация
Agent creates workflows dynamically: sequential, parallel, conditional. True parallelization with dependencies. Google ADK is stronger here (Sequential/Loop/Parallel Agents).Агент создаёт workflow динамически: sequential, parallel, conditional. True параллелизация с dependencies. Google ADK сильнее здесь (Sequential/Loop/Parallel Agents).
⚠️ Partially (sequential ok)Частично (sequential ок)
Google ADK (Vertex AI)
C4 · Dynamic Skill Creation
Dynamic Skill CreationСоздание навыков на лету
If no agent exists in the catalog — the agent asks the LLM to generate a new skill in real time and adds it to the catalog. Self-expanding capability library.Если в каталоге нет агента — агент запрашивает LLM сгенерировать новый skill в реальном времени и добавляет его в каталог. Self-expanding capability library.
🚫 Not in POC (MVP+)Не в POC (MVP+)
Claude Code · экспериментально
C5 · Recipe / External Guardrail
Recipe / External GuardrailВнешний рецепт / Guardrail
Each agent is given an external "recipe" — a preferred workflow for typical tasks from a domain expert. The agent can deviate, but the recipe constrains hallucinations.Каждому агенту задаётся внешний «рецепт» — предпочтительный workflow для типичных задач от domain expert. Агент может отклониться, но рецепт ограничивает галлюцинации.
✅ Можем (POC)
System prompt + CLAUDE.md
C6 · Human-in-the-Loop as Skill
Human-in-the-Loop as SkillЧеловек как агент
The human is also an agent in the system. Each employee has a personal agent-representative. Tasks requiring a human are assigned to them as a skill. HITL is a first-class citizen.Человек — это тоже агент в системе. У каждого сотрудника есть персональный агент-представитель. Задачи, требующие человека, assignируются ему как skill. HITL — первый класс системы.
✅ Можем (POC)
LangGraph · Anthropic interrupt
🏆 LangGraph · Core Engine
Core OrchestratorОсновной оркестратор
Deep recursive loops, centralized thread-safe state, depth-limiting + token-budget constraints and HITL interrupt pattern. Solves Context Rot: parent agent partitions payload, spawns child agents with bounded chunks.Deep recursive loops, centralized thread-safe state, depth-limiting + token-budget constraints и HITL interrupt pattern. Решает Context Rot: parent agent партиционирует payload, спаунит child agents с bounded chunks.
Google ADK · Parallel Patterns
Parallel WorkflowsПараллельные workflow
Sequential/Loop/Parallel Agents natively. Dynamic Orchestration C3. Strongest for parallel workflow patterns (Vertex AI).Sequential/Loop/Parallel Agents нативно. Dynamic Orchestration C3. Сильнейший для parallel workflow patterns (Vertex AI).
Anthropic SDK · High-Stakes
High-Stakes AgentsКритические агенты
Orchestrator Agent (Tier A), Safety Agent. claude-3-7-sonnet for complex reasoning. Extended thinking for architectural decisions.Orchestrator Agent (Tier A), Safety Agent. claude-3-7-sonnet для complex reasoning. Extended thinking для архитектурных решений.
Key Principle · Игорь · 15 MayКлючевой принцип · Игорь · 15 мая
Recursive Agent Orchestration — agents can sub-outsource tasks to other agents (recursive supply chain). This is the design principle for the entire orchestration architecture. Framework evaluation must account for support of this pattern.агенты могут суб-аутсорсить задачи другим агентам (рекурсивная supply chain). Это design principle для всей оркестрационной архитектуры. Текущий framework evaluation должен учитывать поддержку этого паттерна.
On-device note: Gemma 4 (Google, open-source) — candidate for edge/mobile agent deployment in future. In POC: remote inference (GCP/cloud).On-device note: Gemma 4 (Google, open-source) — кандидат для edge/mobile деплоя агентов в будущем. В POC: remote inference (GCP/cloud).