Signal Snapshot
multi-agent workflow 自体が、設定・監視・監査できる product surface として立ち上がり始める
目立つのは、multi-agent orchestration が SDK の裏側に隠れた implementation detail ではなく、builder / YAML / observability / evaluation を備えた公開 surface に出てきていることだ。Microsoft Foundry の workflow preview は、graph を visual でも code でも扱い、versioning、variables、Power Fx、built-in evaluators を同じ面で見せている。
9件
公開根拠
workflow surface を裏づける papers と official posts だけを掲載。
20+
調査母集団
2025年12月1日以前に確認できる一次情報 URL のみを候補にした。
6機能
surface 化した要素
builder、YAML、template、variable、observability、evaluator が同じ製品面に並んだ。
What Stood Out
主要シグナル
workflow graph が code artifact だけでなく shared design surface になった
Foundry の preview は visual workflow builder と YAML definition の往復を前提にし、business 側と engineering 側が同じ graph を別の view で扱えるようにした。multi-agent orchestration が実装者の頭の中だけに閉じなくなる。
変数、schema、expression が orchestration を review 可能にした
local variables、JSON schema output、Power Fx expressions、immutable versioning が出てきたことで、workflow は「prompt をつないだもの」ではなく、出力 contract と branch logic を持つ artifact になった。これが governance と review の前提になる。
observability と evaluators が graph 単位の運用品質を問うようになった
granular tracing、built-in evaluators、custom evaluation logic、scheduled evaluation まで workflow surface に入ったことで、論点は「動くか」から「各 node と全体 flow をどう継続監視するか」へ移った。multi-agent は novelty より operations の勝負になっている。
Use Cases
現実味が高いユースケース
onboarding と case management
- Foundry post は onboarding を例に、複数 step と human-in-the-loop を持つ flow を visual / YAML で扱う価値を示した。
- 情報収集、担当振り分け、確認、実行を graph として残せるのがポイントだった。
financial approvals と IT service operations
- financial approvals や IT service operations は、specialist agent と reviewer を分ける必要がある典型例として挙がる。
- multi-agent workflow が product surface になると、承認経路や rollback path を仕様として持ちやすくなる。
Concrete Scenarios
一次情報に現れていた具体シナリオ
employee onboarding は multi-agent を業務フローとして見せる好例だった
Foundry workflows post は onboarding を visual builder の代表例として扱っている。たとえば candidate / employee 情報の確認、必要書類の回収、manager approval、アカウント作成、最終通知といった step を graph に落とすと、specialist と reviewer の責務が可視化される。
financial approvals は variables と schema が効く領域だった
workflow が variables、JSON schema output、Power Fx expressions を持つと、金額、部門、例外条件、承認結果を後段 node に安全に受け渡しやすい。これは multi-agent orchestration を chat 的な曖昧さから business process の artifact へ引き上げる。
IT service operations では trace と evaluator が運用品質を左右する
IT service operations のような flow では、node ごとの input / output、variable update、branch path、tool call を追える granular tracing が重要になる。Foundry post が workflow 全体の observability と evaluators を強調したのは、この種の運用を想定しているからだ。
Operating Implications
設計・評価・運用で先に決めるべきこと
観測点
multi-agent を増やすこと自体より、workflow graph をどれだけ review・version・evaluate できるかが実運用の分かれ目になっている。
- supervisor、specialist、reviewer の role を graph 上で明示し、権限差を残す。
- variables と JSON schema を使って、node 間の handoff を自然言語の暗黙知にしない。
- approval chain、rollback path、timeout handling を workflow 定義の中へ入れる。
- observability は single agent trace だけでなく、end-to-end flow を見られるかで評価する。
Key Takeaway
結論
multi-agent workflow は、「高度な実装テクニック」から離れ、review、version、evaluation を伴う product surface として扱う段階に入り始めている。