Once agent workflows move past demos, failures are rarely model issues. They tend to show up as execution problems during real runs.
Short 2-minute technical demo showing execution control and auditability in practice: https://youtu.be/FNgnESo9RtI
AxonFlow is a self-hosted, source-available (BSL 1.1) control plane that sits inline in the execution path and governs LLM calls, tool calls, retries, approvals, and policy enforcement step by step. It does not replace your orchestrator and can run alongside LangChain, CrewAI, or custom systems.
The problems we focus on are usually discovered only after going to production: - retries that accidentally repeat side effects - partial failures mid-workflow - permissions that differ per step - limited ability to inspect or intervene during execution
This is not aimed at early demos or hobby projects. It’s for teams already operating under real production constraints.
GitHub: https://github.com/getaxonflow/axonflow
Docs: https://docs.getaxonflow.com
I’d value feedback from folks running LLM or agent workflows in production.
HappyPablo•1h ago
saurabhjain1592•1h ago
By deterministic policy enforcement we mean rule-based checks that evaluate to an explicit allow or block decision at execution time. Today that includes a mix of regex-based checks (for example PII patterns), structured detectors, and hard limits or business rules like cost caps, rate limits, and permission constraints. These policies are evaluated inline before model or tool calls, so the outcome is predictable and auditable rather than probabilistic.
On cost tracking: yes, AxonFlow captures per-call metadata including model, tokens, provider, and cost, and attributes it to user, workflow, and tenant. In gateway mode this is per-call audit logging, and in proxy mode it extends across multi-step workflows so you can see cost accumulation per user or execution. We also recently shipped Workflow Control Plane which tracks policy evaluation and cost accumulation across multi-step agent executions, so you get a single audit trail and cost rollup for an entire workflow, not just individual calls. That's been a common pain point we've seen with teams running agents in production.