/** * 07-full-showcase.ts — Network-AI Full Feature Showcase * ──────────────────────────────────────────────────────── * Task: "Build a Payment Processing Service" * * Every major Network-AI feature fires during this run: * * ✦ JourneyFSM — enforces INTAKE→DESIGN→IMPLEMENT→REVIEW→DELIVER * (agents blocked if they try to skip states) * ✦ AuthGuardian — implementer tries to access PAYMENTS resource * → BLOCKED → must request permission → grant issued * ✦ SecureTokenManager— signed cryptographic token issued to implementer * → validated before code can be committed * ✦ FederatedBudget — per-agent token ceilings enforced in real time; * one rogue agent gets cut off mid-task * ✦ QualityGateAgent — AI-powered code review gates the implementation; * low-quality output is rejected and loops back * ✦ Debugger agent — post-fix hardening pass to recover residual verifier gaps * ✦ Parallel agents — 3 specialist review agents run simultaneously * ✦ Shared blackboard — all agents coordinate through a single store * ✦ Audit log — every action timestamped, printed at the end * * Run: * npx ts-node examples/07-full-showcase.ts */ import 'dotenv/config'; //# sourceMappingURL=07-full-showcase.d.ts.map