Agently documentation for building AI applications with stable outputs, observable actions, and durable workflows.
Languages: English · 中文
Agently has several event-like surfaces. They are related, but they do different jobs.
| Surface | Owner | Purpose | Read |
|---|---|---|---|
| Observation events | Event Center | Framework-level events such as model requests, Session, Action calls, TriggerFlow lifecycle. RuntimeEvent remains a 4.1.x compatibility name. |
Event Center |
TriggerFlow emit / when |
TriggerFlow execution | Flow-control signals inside one execution | TriggerFlow Events and Streams |
| TriggerFlow runtime stream | TriggerFlow execution | Live data items for UI, SSE, logs, or wrappers | TriggerFlow Events and Streams |
| DevTools | agently-devtools companion package |
Visualize runs, upload observations, run evaluations, expose an interactive wrapper | DevTools |
| Coding-agent guidance | Agently-Skills companion repo |
Give Codex, Claude Code, Cursor, and similar tools current framework guidance | Coding Agents |
emit / when when an event should route work inside the flow.The source-backed observation event shape lives in agently/types/data/event.py, and the event dispatcher lives in agently/core/EventCenter.py. DevTools examples live under examples/devtools/.