docs: Add overlap analysis for non-AI coordinator patterns
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

Detailed comparison showing:
- Existing doc addresses L-015 (premature completion)
- New doc addresses context exhaustion (multi-issue orchestration)
- ~20% overlap (both use non-AI coordinator, mechanical gates)
- 80% complementary (different problems, different solutions)

Recommends merging into comprehensive document (already done).

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-31 14:47:59 -06:00
parent a2f06fe75b
commit 903109ea40
16 changed files with 1212 additions and 3 deletions

View File

@@ -1,11 +1,13 @@
import { Module } from "@nestjs/common";
import { QualityOrchestratorService } from "./quality-orchestrator.service";
import { TokenBudgetModule } from "../token-budget/token-budget.module";
/**
* Quality Orchestrator Module
* Provides quality enforcement for AI agent task completions
*/
@Module({
imports: [TokenBudgetModule],
providers: [QualityOrchestratorService],
exports: [QualityOrchestratorService],
})