Context
AegisFlow explores a harder applied-AI problem than a single assistant response: coordinating multiple role-specific agents in operational workflows where state, safety, and auditability matter.
Case study
A June 2026 project that models operational decision workflows with specialist agents, critic review, deterministic state mutation, and audit trails.
AegisFlow explores a harder applied-AI problem than a single assistant response: coordinating multiple role-specific agents in operational workflows where state, safety, and auditability matter.
Operational decision simulations need role separation, conflict resolution, and traceable state changes. A useful system has to show how a recommendation was proposed, reviewed, resolved, and committed.
I built the FastAPI backend, Next.js dashboard, orchestration and evaluation packages, shared schemas, deterministic state engine, model modes, Docker setup, and initial tests.
The system had to remain usable without live model credentials, keep state transitions deterministic, and represent several domains without claiming real-world operational or clinical validation.
The repo uses a FastAPI backend for session lifecycle and orchestration routing, a Next.js dashboard, shared Pydantic models, an orchestration package, an evaluation package, and a deterministic state engine.
Each simulation cycle runs through context preparation, parallel specialist proposals, critic review, consensus resolution, state mutation, and commit logging. The implementation records execution steps and appends events to the session trail.
The critic layer assigns confidence and safety flags before the resolved command is applied. Without a Gemini key, the system runs sandbox responses rather than pretending live model calls succeeded.
I separated probabilistic proposals from deterministic state mutation, used shared typed schemas across service boundaries, and made sandbox execution an explicit mode rather than a silent fallback.
A rule-based commit layer limits agent autonomy, but it makes simulations reproducible and reviewable. Supporting three domains demonstrates reuse while increasing the testing surface for domain-specific rules.
The repository includes unit coverage for state transitions and confidence scoring, including improved, worsened, and safety-flagged decision paths.
AegisFlow is the strongest current evidence of my positioning: full-stack applied AI work where orchestration, explicit state changes, safety review, and audit trails are treated as product requirements.
The project is a production-oriented simulation, not a validated operational system. Route-level API coverage, stable portfolio screenshots, and clearer live-versus-sandbox comparison remain unfinished.
What I would improve next