UNPKG

claude-flow

Version:

Ruflo - Enterprise AI agent orchestration for Claude Code. Deploy 60+ specialized agents in coordinated swarms with self-learning, fault-tolerant consensus, vector memory, and MCP integration

18 lines 762 B
/** * GAIA Agent — Planning Interval Smoke Tests * * Verifies that the planning-checkpoint injection logic fires at the correct * turns and stays silent when conditions are not met. All tests are fully * mocked — no live Anthropic API calls, $0 cost. * * Test cases: * 1. 12-turn loop with interval=4 → replans at turns 4, 8, 12 (3 replans) * 2. 3-turn loop with interval=4 → NO replan (interval never hit) * 3. end_turn at turn 5 → NO replan injected (terminal state) * 4. all-tool_use 8-turn loop → exactly floor(8/4) = 2 replans * 5. planningInterval=0 → disabled entirely, 0 replans * * Refs: ADR-133, ADR-135, iter 34, #2156 */ export {}; //# sourceMappingURL=gaia-agent-planning.smoke.d.ts.map