feat(core): upgrade to v2.65.0 with Cognition Layer & Proactive Advisor

- Integrated v4.0 Operational Policy into AgentEngine and AgentExecutor.
- Added Context Amplification for policy-driven reasoning.
- Implemented Proactive Advisor for next-action decision forks.
- Added CognitionAudit diagnostics for real-time policy monitoring.
- Updated test suites to support dual-execution cognition patterns.
This commit is contained in:
g1nation
2026-05-04 22:42:08 +09:00
parent 29f271d781
commit 71e39ad78e
11 changed files with 174 additions and 15 deletions
+2 -2
View File
@@ -511,9 +511,9 @@ describe('Concurrency & Stress Tests', () => {
const outputs = await Promise.all(results);
// 모든 작업이 완료되어야 함
// 모든 작업이 완료되어야 함 (최종 리포트 + 선제적 제안 = taskCount * 2)
expect(outputs).toHaveLength(taskCount);
expect(completionOrder).toHaveLength(taskCount);
expect(completionOrder).toHaveLength(taskCount * 2);
console.log(`\n📊 [Queue Saturation Test]`);
console.log(` Tasks Submitted: ${taskCount}`);