@holoscript/framework 6.0.3 → 6.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1 -2
- package/ROADMAP.md +68 -66
- package/dist/{InvisibleWallet-BB6tFvRA.d.cts → InvisibleWallet-EFiuaLn3.d.cts} +1 -1
- package/dist/{OrchestratorAgent-BvWgf9uw.d.cts → OrchestratorAgent-CrLDGNL6.d.cts} +1 -1
- package/dist/agents/index.cjs +11 -10
- package/dist/agents/index.d.cts +4 -16
- package/dist/ai/index.cjs +2 -2
- package/dist/behavior.cjs +10 -0
- package/dist/economy/index.cjs +4 -4
- package/dist/economy/index.d.cts +2 -2
- package/dist/index.cjs +33 -11
- package/dist/index.d.cts +3 -3
- package/dist/swarm/index.cjs +3 -0
- package/package.json +14 -9
- package/src/__tests__/bounty-marketplace.test.ts +53 -21
- package/src/__tests__/delegation.test.ts +1 -4
- package/src/__tests__/done-log-audit.test.ts +38 -46
- package/src/__tests__/framework.test.ts +172 -53
- package/src/__tests__/goal-synthesizer.test.ts +9 -6
- package/src/__tests__/presence.test.ts +1 -1
- package/src/__tests__/protocol-agent.test.ts +12 -11
- package/src/__tests__/revenue-splitter.test.ts +22 -15
- package/src/__tests__/scenario-driven-todo.test.ts +55 -35
- package/src/__tests__/self-improve.test.ts +28 -9
- package/src/__tests__/service-lifecycle.test.ts +9 -3
- package/src/__tests__/skill-router.test.ts +3 -3
- package/src/agents/CulturalMemory.ts +6 -6
- package/src/agents/DelegationTraceHooks.ts +560 -0
- package/src/agents/FederatedRegistryAdapter.ts +1 -1
- package/src/agents/NormEngine.ts +3 -8
- package/src/agents/OrchestratorAgent.ts +1 -1
- package/src/agents/TaskDelegationService.ts +5 -9
- package/src/agents/__tests__/AgentWalletRegistry.test.ts +5 -4
- package/src/agents/__tests__/CrossRealityHandoff.test.ts +9 -3
- package/src/agents/__tests__/DelegationTraceHooks.test.ts +390 -0
- package/src/agents/__tests__/TaskDelegationService.test.ts +4 -2
- package/src/agents/spatial-comms/Layer1RealTime.ts +36 -19
- package/src/agents/spatial-comms/Layer2A2A.ts +1 -3
- package/src/agents/spatial-comms/Layer3MCP.ts +13 -4
- package/src/agents/spatial-comms/ProtocolTypes.ts +5 -2
- package/src/agents/spatial-comms/examples/multi-agent-world-creation.ts +2 -2
- package/src/ai/HoloScriptGenerator.ts +2 -2
- package/src/ai/__tests__/PerceptionSystem.prod.test.ts +1 -1
- package/src/ai/__tests__/PerceptionSystem.test.ts +14 -14
- package/src/ai/__tests__/SteeringBehaviors.prod.test.ts +1 -1
- package/src/ai/index.ts +5 -1
- package/src/board/audit.ts +17 -6
- package/src/board/board-ops.ts +45 -15
- package/src/board/board-types.ts +94 -20
- package/src/delegation.ts +5 -3
- package/src/distributed-claimer.ts +13 -2
- package/src/economy/BountyManager.ts +40 -18
- package/src/economy/KnowledgeMarketplace.ts +27 -8
- package/src/economy/PaymentWebhookService.ts +0 -1
- package/src/economy/RevenueSplitter.ts +2 -4
- package/src/economy/UnifiedBudgetOptimizer.ts +8 -9
- package/src/economy/_core-stubs.ts +1 -1
- package/src/economy/x402-facilitator.ts +17 -8
- package/src/index.ts +16 -12
- package/src/knowledge/__tests__/knowledge-consolidator.test.ts +138 -89
- package/src/knowledge/__tests__/knowledge-store-vector.test.ts +59 -16
- package/src/knowledge/brain.ts +7 -7
- package/src/knowledge/consolidation.ts +16 -16
- package/src/knowledge/knowledge-consolidator.ts +60 -30
- package/src/knowledge/knowledge-store.ts +83 -45
- package/src/learning/ProceduralCompiler.ts +6 -1
- package/src/learning/learning/MemoryConsolidator.ts +102 -0
- package/src/learning/learning/MemoryScorer.ts +69 -0
- package/src/learning/learning/ProceduralCompiler.ts +45 -0
- package/src/learning/learning/SemanticClusterer.ts +66 -0
- package/src/llm/llm-adapter.ts +24 -10
- package/src/mesh/index.ts +37 -17
- package/src/protocol/goal-synthesizer.ts +24 -34
- package/src/protocol/implementations.ts +91 -22
- package/src/protocol/micro-phase-decomposer.ts +25 -17
- package/src/protocol/micro-step-decomposer.test.ts +104 -39
- package/src/protocol-agent.test.ts +17 -7
- package/src/protocol-agent.ts +45 -42
- package/src/self-improve/absorb-scanner.ts +9 -6
- package/src/self-improve/evolution-engine.ts +36 -18
- package/src/self-improve/framework-absorber.ts +21 -16
- package/src/self-improve/index.ts +2 -10
- package/src/self-improve/prompt-optimizer.ts +31 -19
- package/src/self-improve/test-generator.ts +16 -12
- package/src/skill-router.ts +7 -6
- package/src/swarm/messaging/GossipProtocol.ts +1 -1
- package/src/swarm/messaging/__tests__/BroadcastChannel.prod.test.ts +31 -9
- package/src/swarm/messaging/__tests__/GossipProtocol.prod.test.ts +21 -7
- package/src/swarm/messaging/__tests__/SwarmEventBus.prod.test.ts +24 -8
- package/src/swarm/messaging/__tests__/SwarmEventBus.test.ts +6 -2
- package/src/team.ts +277 -122
- package/src/training/scripts/generate-spatial-dataset.ts +1 -1
- package/src/training/training/LRScheduler.ts +377 -0
- package/src/training/training/QualityScoringPipeline.ts +139 -0
- package/src/training/training/SoftDedup.ts +461 -0
- package/src/training/training/SparsityMonitor.ts +685 -0
- package/src/training/training/SparsityMonitorTypes.ts +209 -0
- package/src/training/training/SpatialTrainingDataGenerator.ts +1526 -0
- package/src/training/training/SpatialTrainingDataTypes.ts +216 -0
- package/src/training/training/TrainingPipelineConfig.ts +215 -0
- package/src/training/training/__tests__/CorpusValidation.test.ts +87 -0
- package/src/training/training/__tests__/LRScheduler.test.ts +592 -0
- package/src/training/training/__tests__/SoftDedup.test.ts +415 -0
- package/src/training/training/__tests__/SparsityMonitor.test.ts +1623 -0
- package/src/training/training/__tests__/SpatialCorpusValidation.test.ts +72 -0
- package/src/training/training/__tests__/SpatialTrainingDataGenerator.test.ts +1244 -0
- package/src/training/training/__tests__/TrainingMonkeyIntegration.test.ts +897 -0
- package/src/training/training/__tests__/TrainingPipelineConfig.test.ts +202 -0
- package/src/training/training/__tests__/schema.test.ts +72 -0
- package/src/training/training/__tests__/training-constants.test.ts +106 -0
- package/src/training/training/__tests__/trait-mappings.test.ts +81 -0
- package/src/training/training/constants.ts +94 -0
- package/src/training/training/index.ts +17 -0
- package/src/training/training/schema.ts +147 -0
- package/src/training/training/scripts/generate-novel-use-cases-dataset.ts +272 -0
- package/src/training/training/scripts/generate-spatial-dataset.ts +521 -0
- package/src/training/training/trainingmonkey/TrainingMonkeyIntegration.ts +477 -0
- package/src/training/training/trainingmonkey/TrainingMonkeyTypes.ts +230 -0
- package/src/training/training/trainingmonkey/index.ts +26 -0
- package/src/training/training/trait-mappings.ts +157 -0
- package/src/types.ts +2 -7
- package/ALL-test-results.json +0 -1
- package/LICENSE +0 -21
- package/dist/AgentManifest-CB4xM-Ma.d.ts +0 -704
- package/dist/BehaviorTree-BrBFECv5.d.ts +0 -103
- package/dist/InvisibleWallet-rtRrBOA8.d.ts +0 -1732
- package/dist/OrchestratorAgent-Q_CbVTmO.d.ts +0 -798
- package/dist/agents/index.d.ts +0 -1788
- package/dist/agents/index.js +0 -4695
- package/dist/ai/index.d.ts +0 -1753
- package/dist/ai/index.js +0 -5244
- package/dist/behavior.d.ts +0 -130
- package/dist/behavior.js +0 -407
- package/dist/economy/index.d.ts +0 -747
- package/dist/economy/index.js +0 -3617
- package/dist/implementations-D9T3un9D.d.ts +0 -236
- package/dist/index.d.ts +0 -1729
- package/dist/index.js +0 -24277
- package/dist/learning/index.d.ts +0 -104
- package/dist/learning/index.js +0 -189
- package/dist/negotiation/index.d.ts +0 -610
- package/dist/negotiation/index.js +0 -931
- package/dist/skills/index.d.ts +0 -289
- package/dist/skills/index.js +0 -1079
- package/dist/swarm/index.d.ts +0 -2433
- package/dist/swarm/index.js +0 -5221
- package/dist/training/index.d.ts +0 -1734
- package/dist/training/index.js +0 -2687
- package/extract-failures.js +0 -10
- package/src/training/training/data/novel-use-cases.jsonl +0 -153
- package/src/training/training/data/spatial-reasoning-10k.jsonl +0 -9354
- package/src/types/core-stubs.d.ts +0 -113
- package/test-output.txt +0 -0
- package/test-result.json +0 -1
- package/tsc-errors.txt +0 -4
- package/tsc_output.txt +0 -0
- package/typescript-errors-2.txt +0 -0
- package/typescript-errors.txt +0 -22
- package/vitest-log-utf8.txt +0 -268
- package/vitest-log.txt +0 -0
|
@@ -1,113 +0,0 @@
|
|
|
1
|
-
declare module '@holoscript/core' {
|
|
2
|
-
export type NormEnforcement = 'hard' | 'soft' | 'advisory';
|
|
3
|
-
export type NormScope = 'agent' | 'zone' | 'world' | 'session';
|
|
4
|
-
export type NormCategory =
|
|
5
|
-
| 'cooperation'
|
|
6
|
-
| 'communication'
|
|
7
|
-
| 'territory'
|
|
8
|
-
| 'exchange'
|
|
9
|
-
| 'economy'
|
|
10
|
-
| 'authority'
|
|
11
|
-
| 'safety'
|
|
12
|
-
| 'ritual'
|
|
13
|
-
| 'identity';
|
|
14
|
-
|
|
15
|
-
export interface CulturalNorm {
|
|
16
|
-
id: string;
|
|
17
|
-
name: string;
|
|
18
|
-
description: string;
|
|
19
|
-
category: NormCategory;
|
|
20
|
-
enforcement: NormEnforcement;
|
|
21
|
-
scope: NormScope;
|
|
22
|
-
activationThreshold: number;
|
|
23
|
-
strength: 'weak' | 'moderate' | 'strong';
|
|
24
|
-
requiredEffects?: string[];
|
|
25
|
-
forbiddenEffects?: string[];
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
export const BUILTIN_NORMS: CulturalNorm[];
|
|
29
|
-
export function criticalMassForChange(norm: CulturalNorm, populationSize: number): number;
|
|
30
|
-
export const XR_PLATFORM_CAPABILITIES: Record<string, string[]>;
|
|
31
|
-
|
|
32
|
-
export interface HSPlusNode {
|
|
33
|
-
id: string;
|
|
34
|
-
type: string;
|
|
35
|
-
properties: Record<string, any>;
|
|
36
|
-
__creditState?: any;
|
|
37
|
-
}
|
|
38
|
-
export interface TraitContext {
|
|
39
|
-
emit(event: string, payload: any): void;
|
|
40
|
-
blackboard: Record<string, any>;
|
|
41
|
-
}
|
|
42
|
-
export interface TraitEvent {
|
|
43
|
-
type: string;
|
|
44
|
-
payload: any;
|
|
45
|
-
}
|
|
46
|
-
export type TraitHandler<T = any> = any;
|
|
47
|
-
|
|
48
|
-
// Swarm extensions
|
|
49
|
-
export interface ICollectiveIntelligenceService {
|
|
50
|
-
createSession(topic: string, goal: string, initiator: string): any;
|
|
51
|
-
}
|
|
52
|
-
export interface IHiveContribution {
|
|
53
|
-
id: string;
|
|
54
|
-
agentId: string;
|
|
55
|
-
content: string;
|
|
56
|
-
type: 'idea' | 'critique' | 'consensus' | 'solution';
|
|
57
|
-
confidence: number;
|
|
58
|
-
timestamp: number;
|
|
59
|
-
references?: string[];
|
|
60
|
-
}
|
|
61
|
-
export interface IHiveSession {
|
|
62
|
-
id: string;
|
|
63
|
-
topic: string;
|
|
64
|
-
goal: string;
|
|
65
|
-
initiator: string;
|
|
66
|
-
status: 'active' | 'resolved' | 'closed';
|
|
67
|
-
participants: string[];
|
|
68
|
-
contributions: IHiveContribution[];
|
|
69
|
-
resolution?: string;
|
|
70
|
-
}
|
|
71
|
-
export interface ILeaderElectionService {
|
|
72
|
-
holdElection(candidates: string[]): string;
|
|
73
|
-
}
|
|
74
|
-
export interface ILeaderElection {
|
|
75
|
-
startElection(): Promise<string>;
|
|
76
|
-
getLeader(): string | null;
|
|
77
|
-
}
|
|
78
|
-
export interface ISwarmCoordinator {
|
|
79
|
-
// Empty interface for now since SwarmCoordinator class implements its own methods
|
|
80
|
-
}
|
|
81
|
-
export interface ISwarmConfig {
|
|
82
|
-
populationSize?: number;
|
|
83
|
-
maxIterations?: number;
|
|
84
|
-
convergenceThreshold?: number;
|
|
85
|
-
algorithm?: string;
|
|
86
|
-
adaptiveSizing?: boolean;
|
|
87
|
-
velocityWeight?: number;
|
|
88
|
-
cognitiveWeight?: number;
|
|
89
|
-
socialWeight?: number;
|
|
90
|
-
}
|
|
91
|
-
export interface ISwarmResult {
|
|
92
|
-
bestSolution: any;
|
|
93
|
-
bestFitness: number;
|
|
94
|
-
iterations: number;
|
|
95
|
-
improvementPercent: number;
|
|
96
|
-
converged: boolean;
|
|
97
|
-
}
|
|
98
|
-
export interface IMessageBroker {
|
|
99
|
-
publish(topic: string, message: any): void;
|
|
100
|
-
subscribe(topic: string, handler: (message: any) => void): void;
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
export class HoloScriptPlusParser {
|
|
104
|
-
constructor(options?: any);
|
|
105
|
-
parse(source: string): any;
|
|
106
|
-
}
|
|
107
|
-
export interface HSPlusCompileResult {
|
|
108
|
-
success: boolean;
|
|
109
|
-
errors?: any[];
|
|
110
|
-
ast?: any;
|
|
111
|
-
exports?: any;
|
|
112
|
-
}
|
|
113
|
-
}
|
package/test-output.txt
DELETED
|
Binary file
|
package/test-result.json
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"numTotalTestSuites":9,"numPassedTestSuites":6,"numFailedTestSuites":3,"numPendingTestSuites":0,"numTotalTests":17,"numPassedTests":16,"numFailedTests":1,"numPendingTests":0,"numTodoTests":0,"snapshot":{"added":0,"failure":false,"filesAdded":0,"filesRemoved":0,"filesRemovedList":[],"filesUnmatched":0,"filesUpdated":0,"matched":0,"total":0,"unchecked":0,"uncheckedKeysByFile":[],"unmatched":0,"updated":0,"didUpdate":false},"startTime":1775361548300,"success":false,"testResults":[{"assertionResults":[{"ancestorTitles":["Performance Benchmarks","Layer 1: Real-Time Performance"],"fullName":"Performance Benchmarks Layer 1: Real-Time Performance should encode position sync in <0.5ms","status":"passed","title":"should encode position sync in <0.5ms","duration":8.551300000000083,"failureMessages":[],"meta":{}},{"ancestorTitles":["Performance Benchmarks","Layer 1: Real-Time Performance"],"fullName":"Performance Benchmarks Layer 1: Real-Time Performance should decode position sync in <0.5ms","status":"passed","title":"should decode position sync in <0.5ms","duration":4.490000000000009,"failureMessages":[],"meta":{}},{"ancestorTitles":["Performance Benchmarks","Layer 1: Real-Time Performance"],"fullName":"Performance Benchmarks Layer 1: Real-Time Performance should maintain message rate of 90 msg/s","status":"passed","title":"should maintain message rate of 90 msg/s","duration":1017.0662,"failureMessages":[],"meta":{}},{"ancestorTitles":["Performance Benchmarks","Layer 1: Real-Time Performance"],"fullName":"Performance Benchmarks Layer 1: Real-Time Performance should keep binary message size under 512 bytes","status":"passed","title":"should keep binary message size under 512 bytes","duration":0.47870000000011714,"failureMessages":[],"meta":{}},{"ancestorTitles":["Performance Benchmarks","Frame Budget Tracker"],"fullName":"Performance Benchmarks Frame Budget Tracker should maintain 90fps with 11.1ms frame times","status":"passed","title":"should maintain 90fps with 11.1ms frame times","duration":0.8992000000000644,"failureMessages":[],"meta":{}},{"ancestorTitles":["Performance Benchmarks","Frame Budget Tracker"],"fullName":"Performance Benchmarks Frame Budget Tracker should degrade to medium quality at 12.5ms","status":"passed","title":"should degrade to medium quality at 12.5ms","duration":0.32809999999994943,"failureMessages":[],"meta":{}},{"ancestorTitles":["Performance Benchmarks","Frame Budget Tracker"],"fullName":"Performance Benchmarks Frame Budget Tracker should degrade to low quality at 14ms","status":"passed","title":"should degrade to low quality at 14ms","duration":0.2358000000001539,"failureMessages":[],"meta":{}},{"ancestorTitles":["Performance Benchmarks","Frame Budget Tracker"],"fullName":"Performance Benchmarks Frame Budget Tracker should degrade to minimal quality at 16ms","status":"passed","title":"should degrade to minimal quality at 16ms","duration":0.26739999999995234,"failureMessages":[],"meta":{}},{"ancestorTitles":["Performance Benchmarks","Frame Budget Tracker"],"fullName":"Performance Benchmarks Frame Budget Tracker should recover quality when frame times improve","status":"passed","title":"should recover quality when frame times improve","duration":0.3382000000001426,"failureMessages":[],"meta":{}},{"ancestorTitles":["Performance Benchmarks","Frame Budget Tracker"],"fullName":"Performance Benchmarks Frame Budget Tracker should track budget remaining accurately","status":"passed","title":"should track budget remaining accurately","duration":0.1993999999999687,"failureMessages":[],"meta":{}},{"ancestorTitles":["Performance Benchmarks","Multi-Agent Performance"],"fullName":"Performance Benchmarks Multi-Agent Performance should maintain 90fps with 5 agents","status":"passed","title":"should maintain 90fps with 5 agents","duration":1.0174999999999272,"failureMessages":[],"meta":{}},{"ancestorTitles":["Performance Benchmarks","Multi-Agent Performance"],"fullName":"Performance Benchmarks Multi-Agent Performance should maintain 90fps with 10 agents","status":"passed","title":"should maintain 90fps with 10 agents","duration":0.6838000000000193,"failureMessages":[],"meta":{}},{"ancestorTitles":["Performance Benchmarks","Bandwidth Usage"],"fullName":"Performance Benchmarks Bandwidth Usage should use <10 KB/s per agent at 90fps","status":"passed","title":"should use <10 KB/s per agent at 90fps","duration":0.36159999999995307,"failureMessages":[],"meta":{}},{"ancestorTitles":["Performance Benchmarks","Bandwidth Usage"],"fullName":"Performance Benchmarks Bandwidth Usage should use <50 KB/s total with 5 agents","status":"passed","title":"should use <50 KB/s total with 5 agents","duration":0.39629999999988286,"failureMessages":[],"meta":{}},{"ancestorTitles":["Performance Benchmarks","Latency Tests"],"fullName":"Performance Benchmarks Latency Tests should complete round-trip in <2ms","status":"passed","title":"should complete round-trip in <2ms","duration":1560.2852999999998,"failureMessages":[],"meta":{}},{"ancestorTitles":["Performance Benchmarks","Memory Usage"],"fullName":"Performance Benchmarks Memory Usage should not leak memory over time","status":"failed","title":"should not leak memory over time","duration":5016.5497000000005,"failureMessages":["Error: STACK_TRACE_ERROR\n at task (file:///C:/Users/josep/Documents/GitHub/HoloScript/node_modules/.pnpm/@vitest+runner@3.2.4/node_modules/@vitest/runner/dist/chunk-hooks.js:638:27)\n at Object.<anonymous> (file:///C:/Users/josep/Documents/GitHub/HoloScript/node_modules/.pnpm/@vitest+runner@3.2.4/node_modules/@vitest/runner/dist/chunk-hooks.js:662:16)\n at Object.<anonymous> (file:///C:/Users/josep/Documents/GitHub/HoloScript/node_modules/.pnpm/@vitest+runner@3.2.4/node_modules/@vitest/runner/dist/chunk-hooks.js:458:28)\n at chain (file:///C:/Users/josep/Documents/GitHub/HoloScript/node_modules/.pnpm/@vitest+runner@3.2.4/node_modules/@vitest/runner/dist/chunk-hooks.js:369:14)\n at C:\\Users\\josep\\Documents\\GitHub\\HoloScript\\packages\\framework\\src\\agents\\spatial-comms\\__tests__\\performance-benchmark.test.ts:394:5\n at file:///C:/Users/josep/Documents/GitHub/HoloScript/node_modules/.pnpm/@vitest+runner@3.2.4/node_modules/@vitest/runner/dist/chunk-hooks.js:734:40\n at runWithSuite (file:///C:/Users/josep/Documents/GitHub/HoloScript/node_modules/.pnpm/@vitest+runner@3.2.4/node_modules/@vitest/runner/dist/chunk-hooks.js:1849:8)\n at Object.collect (file:///C:/Users/josep/Documents/GitHub/HoloScript/node_modules/.pnpm/@vitest+runner@3.2.4/node_modules/@vitest/runner/dist/chunk-hooks.js:734:10)\n at Object.collect (file:///C:/Users/josep/Documents/GitHub/HoloScript/node_modules/.pnpm/@vitest+runner@3.2.4/node_modules/@vitest/runner/dist/chunk-hooks.js:738:54)\n at processTicksAndRejections (node:internal/process/task_queues:105:5)\n at Object.collect (file:///C:/Users/josep/Documents/GitHub/HoloScript/node_modules/.pnpm/@vitest+runner@3.2.4/node_modules/@vitest/runner/dist/chunk-hooks.js:738:46)\n at collectTests (file:///C:/Users/josep/Documents/GitHub/HoloScript/node_modules/.pnpm/@vitest+runner@3.2.4/node_modules/@vitest/runner/dist/chunk-hooks.js:1179:25)\n at startTests (file:///C:/Users/josep/Documents/GitHub/HoloScript/node_modules/.pnpm/@vitest+runner@3.2.4/node_modules/@vitest/runner/dist/chunk-hooks.js:1817:17)\n at file:///C:/Users/josep/Documents/GitHub/HoloScript/node_modules/.pnpm/vitest@3.2.4_@types+node@24.10.13/node_modules/vitest/dist/chunks/runBaseTests.9Ij9_de-.js:117:26\n at withEnv (file:///C:/Users/josep/Documents/GitHub/HoloScript/node_modules/.pnpm/vitest@3.2.4_@types+node@24.10.13/node_modules/vitest/dist/chunks/runBaseTests.9Ij9_de-.js:84:3)"],"meta":{}},{"ancestorTitles":["Performance Summary"],"fullName":"Performance Summary should print performance summary","status":"passed","title":"should print performance summary","duration":0.3923999999988155,"failureMessages":[],"meta":{}}],"startTime":1775361549002,"endTime":1775361556615.3923,"status":"failed","message":"","name":"C:/Users/josep/Documents/GitHub/HoloScript/packages/framework/src/agents/spatial-comms/__tests__/performance-benchmark.test.ts"}]}
|
package/tsc-errors.txt
DELETED
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
npm warn Unknown project config "shamefully-hoist". This will stop working in the next major version of npm.
|
|
2
|
-
npm warn Unknown project config "strict-peer-dependencies". This will stop working in the next major version of npm.
|
|
3
|
-
src/agents/__tests__/TaskDelegationService.test.ts(176,14): error TS2532: Object is possibly 'undefined'.
|
|
4
|
-
src/agents/__tests__/TaskDelegationService.test.ts(176,33): error TS2493: Tuple type '[]' of length '0' has no element at index '0'.
|
package/tsc_output.txt
DELETED
|
File without changes
|
package/typescript-errors-2.txt
DELETED
|
Binary file
|
package/typescript-errors.txt
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
npm warn Unknown project config "shamefully-hoist". This will stop working in the next major version of npm.
|
|
2
|
-
npm warn Unknown project config "strict-peer-dependencies". This will stop working in the next major version of npm.
|
|
3
|
-
src/agents/__tests__/AgentManifest.test.ts(55,42): error TS2322: Type '"autonomous"' is not assignable to type 'AgentCategory'.
|
|
4
|
-
src/agents/__tests__/CapabilityMatcher.prod.test.ts(100,13): error TS2341: Property 'sortMatches' is private and only accessible within class 'CapabilityMatcher'.
|
|
5
|
-
src/agents/__tests__/CapabilityMatcher.prod.test.ts(112,13): error TS2341: Property 'sortMatches' is private and only accessible within class 'CapabilityMatcher'.
|
|
6
|
-
src/agents/__tests__/NormEngine.test.ts(8,10): error TS2614: Module '"@holoscript/core"' has no exported member 'BUILTIN_NORMS'. Did you mean to use 'import BUILTIN_NORMS from "@holoscript/core"' instead?
|
|
7
|
-
src/agents/__tests__/NormEngine.test.ts(8,25): error TS2614: Module '"@holoscript/core"' has no exported member 'criticalMassForChange'. Did you mean to use 'import criticalMassForChange from "@holoscript/core"' instead?
|
|
8
|
-
src/agents/__tests__/NormEngine.test.ts(31,27): error TS2345: Argument of type 'import("C:/Users/josep/Documents/GitHub/HoloScript/packages/core/dist/index").CulturalNorm' is not assignable to parameter of type 'import("C:/Users/josep/Documents/GitHub/HoloScript/packages/framework/src/agents/NormEngine").CulturalNorm'.
|
|
9
|
-
Type 'CulturalNorm' is missing the following properties from type 'CulturalNorm': id, scope, enforcement
|
|
10
|
-
src/agents/__tests__/NormEngine.test.ts(111,9): error TS2322: Type '"hard"' is not assignable to type 'NormEnforcement'.
|
|
11
|
-
src/agents/__tests__/NormEngine.test.ts(130,9): error TS2322: Type '"hard"' is not assignable to type 'NormEnforcement'.
|
|
12
|
-
src/agents/__tests__/NormEngine.test.ts(148,9): error TS2322: Type '"safety"' is not assignable to type 'NormCategory | undefined'.
|
|
13
|
-
src/agents/__tests__/NormEngine.test.ts(150,9): error TS2322: Type '"soft"' is not assignable to type 'NormEnforcement'.
|
|
14
|
-
src/agents/__tests__/NormEngine.test.ts(166,9): error TS2322: Type '"cooperation"' is not assignable to type 'NormCategory | undefined'.
|
|
15
|
-
src/agents/__tests__/NormEngine.test.ts(168,9): error TS2322: Type '"soft"' is not assignable to type 'NormEnforcement'.
|
|
16
|
-
src/agents/__tests__/NormEngine.test.ts(186,9): error TS2322: Type '"authority"' is not assignable to type 'NormCategory | undefined'.
|
|
17
|
-
src/agents/__tests__/NormEngine.test.ts(188,9): error TS2322: Type '"hard"' is not assignable to type 'NormEnforcement'.
|
|
18
|
-
src/agents/__tests__/NormEngine.test.ts(189,9): error TS2322: Type '"world"' is not assignable to type 'NormScope'.
|
|
19
|
-
src/agents/__tests__/NormEngine.test.ts(217,9): error TS2322: Type '"hard"' is not assignable to type 'NormEnforcement'.
|
|
20
|
-
src/agents/__tests__/NormEngine.test.ts(263,44): error TS7006: Parameter 'n' implicitly has an 'any' type.
|
|
21
|
-
src/agents/__tests__/NormEngine.test.ts(268,46): error TS7006: Parameter 'n' implicitly has an 'any' type.
|
|
22
|
-
src/agents/__tests__/NormEngine.test.ts(273,43): error TS7006: Parameter 'n' implicitly has an 'any' type.
|
package/vitest-log-utf8.txt
DELETED
|
@@ -1,268 +0,0 @@
|
|
|
1
|
-
node.exe : npm warn Unknown
|
|
2
|
-
project config
|
|
3
|
-
"shamefully-hoist". This will
|
|
4
|
-
stop working in the next major
|
|
5
|
-
version of npm.
|
|
6
|
-
At line:1 char:1
|
|
7
|
-
+ & "C:\Program
|
|
8
|
-
Files\nodejs/node.exe"
|
|
9
|
-
"C:\Users\josep\AppData\Roaming\
|
|
10
|
-
...
|
|
11
|
-
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
12
|
-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
13
|
-
~~~
|
|
14
|
-
+ CategoryInfo : Not
|
|
15
|
-
Specified: (npm warn Unknow..
|
|
16
|
-
.version of npm.:String) [],
|
|
17
|
-
RemoteException
|
|
18
|
-
+ FullyQualifiedErrorId : Nat
|
|
19
|
-
iveCommandError
|
|
20
|
-
|
|
21
|
-
npm warn Unknown project config
|
|
22
|
-
"strict-peer-dependencies". This
|
|
23
|
-
will stop working in the next
|
|
24
|
-
major version of npm.
|
|
25
|
-
|
|
26
|
-
[1m[46m RUN [49m[22m [36mv4.1.0 [39m[90mC:/Users/josep/Documents/GitHub/HoloScript/packages/framework[39m
|
|
27
|
-
|
|
28
|
-
[32mΓ£ô[39m src/agents/__tests__/CapabilityMatcher.prod.test.ts [2m([22m[2m11 tests[22m[2m)[22m[32m 23[2mms[22m[39m
|
|
29
|
-
[32mΓ£ô[39m src/ai/__tests__/TrainingDataGenerator.prod.test.ts [2m([22m[2m35 tests[22m[2m)[22m[32m 33[2mms[22m[39m
|
|
30
|
-
[32mΓ£ô[39m src/agents/__tests__/SkillWorkflowEngine.test.ts [2m([22m[2m17 tests[22m[2m)[22m[32m 68[2mms[22m[39m
|
|
31
|
-
[32mΓ£ô[39m src/swarm/messaging/__tests__/GossipProtocol.test.ts [2m([22m[2m33 tests[22m[2m)[22m[32m 70[2mms[22m[39m
|
|
32
|
-
[32mΓ£ô[39m src/swarm/__tests__/LeaderElection.prod.test.ts [2m([22m[2m15 tests[22m[2m)[22m[32m 177[2mms[22m[39m
|
|
33
|
-
[32mΓ£ô[39m src/swarm/__tests__/SwarmMembership.test.ts [2m([22m[2m23 tests[22m[2m)[22m[32m 35[2mms[22m[39m
|
|
34
|
-
[32mΓ£ô[39m src/swarm/__tests__/SwarmMembership.prod.test.ts [2m([22m[2m36 tests[22m[2m)[22m[32m 55[2mms[22m[39m
|
|
35
|
-
[32mΓ£ô[39m src/__tests__/goal-synthesizer.test.ts [2m([22m[2m19 tests[22m[2m)[22m[33m 335[2mms[22m[39m
|
|
36
|
-
[33m[2mΓ£ô[22m[39m falls back to heuristic when LLM call fails [33m 311[2mms[22m[39m
|
|
37
|
-
[32mΓ£ô[39m src/swarm/__tests__/SwarmCoordinator.test.ts [2m([22m[2m18 tests[22m[2m)[22m[32m 43[2mms[22m[39m
|
|
38
|
-
[32mΓ£ô[39m src/protocol-agent.test.ts [2m([22m[2m21 tests[22m[2m)[22m[32m 50[2mms[22m[39m
|
|
39
|
-
[32mΓ£ô[39m src/agents/__tests__/AgentModule.test.ts [2m([22m[2m62 tests[22m[2m)[22m[32m 61[2mms[22m[39m
|
|
40
|
-
[32mΓ£ô[39m src/agents/__tests__/TaskDelegationService.test.ts [2m([22m[2m14 tests[22m[2m)[22m[33m 4160[2mms[22m[39m
|
|
41
|
-
[33m[2mΓ£ô[22m[39m retries on failure with exponential backoff [33m 3069[2mms[22m[39m
|
|
42
|
-
[33m[2mΓ£ô[22m[39m fails after exhausting retries [33m 1012[2mms[22m[39m
|
|
43
|
-
[32mΓ£ô[39m src/ai/__tests__/TrainingDataGenerator.test.ts [2m([22m[2m26 tests[22m[2m)[22m[32m 44[2mms[22m[39m
|
|
44
|
-
[32mΓ£ô[39m src/ai/__tests__/GoalPlanner.test.ts [2m([22m[2m12 tests[22m[2m)[22m[32m 34[2mms[22m[39m
|
|
45
|
-
[32mΓ£ô[39m src/ai/__tests__/GoalPlannerDepth.prod.test.ts [2m([22m[2m21 tests[22m[2m)[22m[32m 36[2mms[22m[39m
|
|
46
|
-
[32mΓ£ô[39m src/swarm/__tests__/SwarmCoordinator.prod.test.ts [2m([22m[2m25 tests[22m[2m)[22m[32m 38[2mms[22m[39m
|
|
47
|
-
[32mΓ£ô[39m src/ai/__tests__/GoalPlanner.prod.test.ts [2m([22m[2m13 tests[22m[2m)[22m[32m 34[2mms[22m[39m
|
|
48
|
-
[32mΓ£ô[39m src/swarm/messaging/__tests__/GossipProtocol.prod.test.ts [2m([22m[2m49 tests[22m[2m)[22m[32m 35[2mms[22m[39m
|
|
49
|
-
[32mΓ£ô[39m src/swarm/messaging/__tests__/SwarmEventBus.prod.test.ts [2m([22m[2m26 tests[22m[2m)[22m[32m 24[2mms[22m[39m
|
|
50
|
-
[32mΓ£ô[39m src/protocol/micro-phase-decomposer.test.ts [2m([22m[2m18 tests[22m[2m)[22m[32m 19[2mms[22m[39m
|
|
51
|
-
[90mstdout[2m | src/agents/spatial-comms/__tests__/performance-benchmark.test.ts[2m > [22m[2mPerformance Benchmarks[2m > [22m[2mLayer 1: Real-Time Performance[2m > [22m[2mshould encode position sync in <0.5ms
|
|
52
|
-
[22m[39m Encoding: 0.0068ms per message
|
|
53
|
-
|
|
54
|
-
[90mstdout[2m | src/agents/spatial-comms/__tests__/performance-benchmark.test.ts[2m > [22m[2mPerformance Benchmarks[2m > [22m[2mLayer 1: Real-Time Performance[2m > [22m[2mshould decode position sync in <0.5ms
|
|
55
|
-
[22m[39m Decoding: 0.0036ms per message
|
|
56
|
-
|
|
57
|
-
[32mΓ£ô[39m src/ai/__tests__/AIOutputValidator.prod.test.ts [2m([22m[2m33 tests[22m[2m)[22m[32m 43[2mms[22m[39m
|
|
58
|
-
[90mstdout[2m | src/agents/spatial-comms/__tests__/performance-benchmark.test.ts[2m > [22m[2mPerformance Benchmarks[2m > [22m[2mLayer 1: Real-Time Performance[2m > [22m[2mshould maintain message rate of 90 msg/s
|
|
59
|
-
[22m[39m Sent 65 messages in 1000ms
|
|
60
|
-
|
|
61
|
-
[32mΓ£ô[39m src/swarm/__tests__/SwarmManager.test.ts [2m([22m[2m26 tests[22m[2m)[22m[32m 42[2mms[22m[39m
|
|
62
|
-
[90mstdout[2m | src/agents/spatial-comms/__tests__/performance-benchmark.test.ts[2m > [22m[2mPerformance Benchmarks[2m > [22m[2mLayer 1: Real-Time Performance[2m > [22m[2mshould keep binary message size under 512 bytes
|
|
63
|
-
[22m[39m Message size: 93 bytes
|
|
64
|
-
|
|
65
|
-
[90mstdout[2m | src/agents/spatial-comms/__tests__/performance-benchmark.test.ts[2m > [22m[2mPerformance Benchmarks[2m > [22m[2mMulti-Agent Performance[2m > [22m[2mshould maintain 90fps with 5 agents
|
|
66
|
-
[22m[39m Skipping: UDP port conflict in test environment
|
|
67
|
-
|
|
68
|
-
[90mstdout[2m | src/agents/spatial-comms/__tests__/performance-benchmark.test.ts[2m > [22m[2mPerformance Benchmarks[2m > [22m[2mMulti-Agent Performance[2m > [22m[2mshould maintain 90fps with 10 agents
|
|
69
|
-
[22m[39m Skipping: UDP port conflict in test environment
|
|
70
|
-
|
|
71
|
-
[90mstdout[2m | src/agents/spatial-comms/__tests__/performance-benchmark.test.ts[2m > [22m[2mPerformance Benchmarks[2m > [22m[2mBandwidth Usage[2m > [22m[2mshould use <10 KB/s per agent at 90fps
|
|
72
|
-
[22m[39m Message size: 62 bytes
|
|
73
|
-
Bandwidth: 5.45 KB/s
|
|
74
|
-
|
|
75
|
-
[90mstdout[2m | src/agents/spatial-comms/__tests__/performance-benchmark.test.ts[2m > [22m[2mPerformance Benchmarks[2m > [22m[2mBandwidth Usage[2m > [22m[2mshould use <50 KB/s total with 5 agents
|
|
76
|
-
[22m[39m Total bandwidth: 26.37 KB/s
|
|
77
|
-
|
|
78
|
-
[90mstdout[2m | src/agents/spatial-comms/__tests__/performance-benchmark.test.ts[2m > [22m[2mPerformance Benchmarks[2m > [22m[2mLatency Tests[2m > [22m[2mshould complete round-trip in <2ms
|
|
79
|
-
[22m[39m No latency samples collected (loopback mode)
|
|
80
|
-
|
|
81
|
-
[90mstdout[2m | src/agents/spatial-comms/__tests__/performance-benchmark.test.ts[2m > [22m[2mPerformance Summary[2m > [22m[2mshould print performance summary
|
|
82
|
-
[22m[39m
|
|
83
|
-
================================================================================
|
|
84
|
-
PERFORMANCE SUMMARY
|
|
85
|
-
================================================================================
|
|
86
|
-
Target: 90fps sustained performance with multi-agent coordination
|
|
87
|
-
|
|
88
|
-
Layer 1 (Real-Time):
|
|
89
|
-
Γ£ô Encoding: <0.5ms per message
|
|
90
|
-
Γ£ô Decoding: <0.5ms per message
|
|
91
|
-
Γ£ô Message rate: 90 msg/s
|
|
92
|
-
Γ£ô Message size: <100 bytes
|
|
93
|
-
Γ£ô Latency: <1ms
|
|
94
|
-
|
|
95
|
-
Frame Budget:
|
|
96
|
-
Γ£ô Graceful degradation at 4 quality levels
|
|
97
|
-
Γ£ô Automatic quality adjustment
|
|
98
|
-
Γ£ô Budget tracking and recovery
|
|
99
|
-
|
|
100
|
-
Multi-Agent:
|
|
101
|
-
Γ£ô 5 agents: 85+ FPS
|
|
102
|
-
Γ£ô 10 agents: 80+ FPS
|
|
103
|
-
Γ£ô Bandwidth: <50 KB/s total
|
|
104
|
-
|
|
105
|
-
Memory:
|
|
106
|
-
Γ£ô No memory leaks over 1000 frames
|
|
107
|
-
Γ£ô Growth: <10MB for 1000 frames
|
|
108
|
-
================================================================================
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
[32mΓ£ô[39m src/agents/spatial-comms/__tests__/performance-benchmark.test.ts [2m([22m[2m17 tests[22m[2m | [22m[33m1 skipped[39m[2m)[22m[33m 2586[2mms[22m[39m
|
|
112
|
-
[33m[2mΓ£ô[22m[39m should maintain message rate of 90 msg/s [33m 1018[2mms[22m[39m
|
|
113
|
-
[33m[2mΓ£ô[22m[39m should complete round-trip in <2ms [33m 1542[2mms[22m[39m
|
|
114
|
-
[32mΓ£ô[39m src/swarm/messaging/__tests__/BroadcastChannel.test.ts [2m([22m[2m28 tests[22m[2m)[22m[32m 28[2mms[22m[39m
|
|
115
|
-
[32mΓ£ô[39m src/swarm/analytics/__tests__/SwarmInspector.prod.test.ts [2m([22m[2m49 tests[22m[2m)[22m[32m 29[2mms[22m[39m
|
|
116
|
-
[32mΓ£ô[39m src/swarm/analytics/__tests__/SwarmMetrics.test.ts [2m([22m[2m24 tests[22m[2m)[22m[32m 38[2mms[22m[39m
|
|
117
|
-
[32mΓ£ô[39m src/swarm/analytics/__tests__/SwarmInspector.test.ts [2m([22m[2m33 tests[22m[2m)[22m[32m 43[2mms[22m[39m
|
|
118
|
-
[32mΓ£ô[39m src/swarm/messaging/__tests__/SwarmEventBus.test.ts [2m([22m[2m17 tests[22m[2m)[22m[32m 26[2mms[22m[39m
|
|
119
|
-
[32mΓ£ô[39m src/swarm/__tests__/ACOEngine.test.ts [2m([22m[2m10 tests[22m[2m)[22m[32m 23[2mms[22m[39m
|
|
120
|
-
[32mΓ£ô[39m src/ai/__tests__/adapters.test.ts [2m([22m[2m29 tests[22m[2m)[22m[32m 26[2mms[22m[39m
|
|
121
|
-
[32mΓ£ô[39m src/__tests__/presence.test.ts [2m([22m[2m13 tests[22m[2m)[22m[32m 25[2mms[22m[39m
|
|
122
|
-
[32mΓ£ô[39m src/ai/__tests__/AICopilot.prod.test.ts [2m([22m[2m35 tests[22m[2m)[22m[32m 32[2mms[22m[39m
|
|
123
|
-
[32mΓ£ô[39m src/__tests__/bounty-marketplace.test.ts [2m([22m[2m36 tests[22m[2m)[22m[32m 30[2mms[22m[39m
|
|
124
|
-
[32mΓ£ô[39m src/__tests__/done-log-audit.test.ts [2m([22m[2m30 tests[22m[2m)[22m[32m 107[2mms[22m[39m
|
|
125
|
-
[32mΓ£ô[39m src/swarm/__tests__/CollectiveIntelligence.prod.test.ts [2m([22m[2m43 tests[22m[2m)[22m[32m 21[2mms[22m[39m
|
|
126
|
-
[32mΓ£ô[39m src/__tests__/protocol-agent.test.ts [2m([22m[2m12 tests[22m[2m)[22m[32m 24[2mms[22m[39m
|
|
127
|
-
[32mΓ£ô[39m src/swarm/__tests__/SwarmManager.prod.test.ts [2m([22m[2m41 tests[22m[2m)[22m[32m 31[2mms[22m[39m
|
|
128
|
-
[32mΓ£ô[39m src/swarm/__tests__/LeaderElection.test.ts [2m([22m[2m13 tests[22m[2m)[22m[32m 26[2mms[22m[39m
|
|
129
|
-
[32mΓ£ô[39m src/swarm/__tests__/CollectiveIntelligence.test.ts [2m([22m[2m29 tests[22m[2m)[22m[32m 29[2mms[22m[39m
|
|
130
|
-
[32mΓ£ô[39m src/agents/__tests__/AuthenticatedCRDT.test.ts [2m([22m[2m49 tests[22m[2m)[22m[32m 27[2mms[22m[39m
|
|
131
|
-
[32mΓ£ô[39m src/swarm/__tests__/PSOEngine.test.ts [2m([22m[2m11 tests[22m[2m)[22m[32m 25[2mms[22m[39m
|
|
132
|
-
[32mΓ£ô[39m src/swarm/__tests__/ContributionSynthesizer.prod.test.ts [2m([22m[2m35 tests[22m[2m)[22m[32m 25[2mms[22m[39m
|
|
133
|
-
[32mΓ£ô[39m src/knowledge/__tests__/knowledge-consolidator.test.ts [2m([22m[2m29 tests[22m[2m)[22m[32m 26[2mms[22m[39m
|
|
134
|
-
[32mΓ£ô[39m src/swarm/spatial/__tests__/Vector3.prod.test.ts [2m([22m[2m53 tests[22m[2m)[22m[32m 21[2mms[22m[39m
|
|
135
|
-
[32mΓ£ô[39m src/swarm/messaging/__tests__/BroadcastChannel.prod.test.ts [2m([22m[2m50 tests[22m[2m)[22m[32m 28[2mms[22m[39m
|
|
136
|
-
[32mΓ£ô[39m src/knowledge/__tests__/knowledge-store-vector.test.ts [2m([22m[2m15 tests[22m[2m)[22m[32m 21[2mms[22m[39m
|
|
137
|
-
[32mΓ£ô[39m src/ai/__tests__/Blackboard.prod.test.ts [2m([22m[2m41 tests[22m[2m)[22m[32m 15[2mms[22m[39m
|
|
138
|
-
[32mΓ£ô[39m src/swarm/spatial/__tests__/ZoneClaiming.test.ts [2m([22m[2m36 tests[22m[2m)[22m[32m 17[2mms[22m[39m
|
|
139
|
-
[32mΓ£ô[39m src/swarm/analytics/__tests__/SwarmMetrics.prod.test.ts [2m([22m[2m34 tests[22m[2m)[22m[32m 22[2mms[22m[39m
|
|
140
|
-
[32mΓ£ô[39m src/agents/__tests__/AgentTypes.test.ts [2m([22m[2m32 tests[22m[2m)[22m[32m 27[2mms[22m[39m
|
|
141
|
-
[32mΓ£ô[39m src/swarm/__tests__/ACOEngine.prod.test.ts [2m([22m[2m23 tests[22m[2m)[22m[32m 26[2mms[22m[39m
|
|
142
|
-
[32mΓ£ô[39m src/ai/__tests__/AIOutputValidator.test.ts [2m([22m[2m22 tests[22m[2m)[22m[32m 27[2mms[22m[39m
|
|
143
|
-
[32mΓ£ô[39m src/swarm/spatial/__tests__/ZoneClaiming.prod.test.ts [2m([22m[2m38 tests[22m[2m)[22m[32m 27[2mms[22m[39m
|
|
144
|
-
[32mΓ£ô[39m src/swarm/__tests__/QuorumPolicy.prod.test.ts [2m([22m[2m46 tests[22m[2m)[22m[32m 23[2mms[22m[39m
|
|
145
|
-
[32mΓ£ô[39m src/ai/__tests__/adapters.prod.test.ts [2m([22m[2m41 tests[22m[2m)[22m[32m 23[2mms[22m[39m
|
|
146
|
-
[32mΓ£ô[39m src/ai/__tests__/BTNodes.prod.test.ts [2m([22m[2m41 tests[22m[2m)[22m[32m 28[2mms[22m[39m
|
|
147
|
-
[32mΓ£ô[39m src/__tests__/self-improve.test.ts [2m([22m[2m17 tests[22m[2m)[22m[32m 32[2mms[22m[39m
|
|
148
|
-
[32mΓ£ô[39m src/swarm/spatial/__tests__/FormationController.test.ts [2m([22m[2m30 tests[22m[2m)[22m[32m 32[2mms[22m[39m
|
|
149
|
-
[32mΓ£ô[39m src/swarm/spatial/__tests__/FormationController.prod.test.ts [2m([22m[2m38 tests[22m[2m)[22m[32m 32[2mms[22m[39m
|
|
150
|
-
[32mΓ£ô[39m src/__tests__/framework.test.ts [2m([22m[2m70 tests[22m[2m)[22m[32m 67[2mms[22m[39m
|
|
151
|
-
[32mΓ£ô[39m src/ai/__tests__/PromptTemplates.prod.test.ts [2m([22m[2m35 tests[22m[2m)[22m[32m 21[2mms[22m[39m
|
|
152
|
-
[32mΓ£ô[39m src/agents/__tests__/OrchestratorAgent.test.ts [2m([22m[2m9 tests[22m[2m)[22m[32m 22[2mms[22m[39m
|
|
153
|
-
[32mΓ£ô[39m src/agents/__tests__/FederatedRegistryAdapter.test.ts [2m([22m[2m18 tests[22m[2m)[22m[32m 27[2mms[22m[39m
|
|
154
|
-
[32mΓ£ô[39m src/swarm/__tests__/PSOEngine.prod.test.ts [2m([22m[2m21 tests[22m[2m)[22m[32m 24[2mms[22m[39m
|
|
155
|
-
[32mΓ£ô[39m src/swarm/spatial/__tests__/FlockingBehavior.prod.test.ts [2m([22m[2m38 tests[22m[2m)[22m[32m 25[2mms[22m[39m
|
|
156
|
-
[32mΓ£ô[39m src/ai/__tests__/BTNodes.test.ts [2m([22m[2m22 tests[22m[2m)[22m[32m 19[2mms[22m[39m
|
|
157
|
-
[32mΓ£ô[39m src/ai/__tests__/AIAdapter.prod.test.ts [2m([22m[2m23 tests[22m[2m)[22m[32m 21[2mms[22m[39m
|
|
158
|
-
[32mΓ£ô[39m src/__tests__/service-lifecycle.test.ts [2m([22m[2m17 tests[22m[2m)[22m[32m 20[2mms[22m[39m
|
|
159
|
-
[32mΓ£ô[39m src/ai/__tests__/Blackboard.test.ts [2m([22m[2m21 tests[22m[2m)[22m[32m 20[2mms[22m[39m
|
|
160
|
-
[32mΓ£ô[39m src/swarm/__tests__/QuorumPolicy.test.ts [2m([22m[2m25 tests[22m[2m)[22m[32m 18[2mms[22m[39m
|
|
161
|
-
[32mΓ£ô[39m src/ai/__tests__/HoloScriptGenerator.test.ts [2m([22m[2m14 tests[22m[2m)[22m[32m 22[2mms[22m[39m
|
|
162
|
-
[32mΓ£ô[39m src/swarm/spatial/__tests__/FlockingBehavior.test.ts [2m([22m[2m30 tests[22m[2m)[22m[32m 21[2mms[22m[39m
|
|
163
|
-
[32mΓ£ô[39m src/swarm/__tests__/VotingRound.test.ts [2m([22m[2m21 tests[22m[2m)[22m[32m 17[2mms[22m[39m
|
|
164
|
-
[32mΓ£ô[39m src/agents/__tests__/CrossRealityHandoff.test.ts [2m([22m[2m27 tests[22m[2m)[22m[32m 31[2mms[22m[39m
|
|
165
|
-
[32mΓ£ô[39m src/agents/__tests__/CulturalMemory.test.ts [2m([22m[2m17 tests[22m[2m)[22m[32m 24[2mms[22m[39m
|
|
166
|
-
[32mΓ£ô[39m src/swarm/__tests__/ContributionSynthesizer.test.ts [2m([22m[2m17 tests[22m[2m)[22m[32m 19[2mms[22m[39m
|
|
167
|
-
[32mΓ£ô[39m src/swarm/__tests__/VotingRound.prod.test.ts [2m([22m[2m26 tests[22m[2m)[22m[32m 21[2mms[22m[39m
|
|
168
|
-
[32mΓ£ô[39m src/ai/__tests__/GenerationAnalytics.prod.test.ts [2m([22m[2m13 tests[22m[2m)[22m[32m 12[2mms[22m[39m
|
|
169
|
-
[32mΓ£ô[39m src/agents/__tests__/AgentManifest.test.ts [2m([22m[2m20 tests[22m[2m)[22m[32m 16[2mms[22m[39m
|
|
170
|
-
[32mΓ£ô[39m src/ai/__tests__/BehaviorTree.test.ts [2m([22m[2m19 tests[22m[2m)[22m[32m 15[2mms[22m[39m
|
|
171
|
-
[32mΓ£ô[39m src/ai/__tests__/BehaviorTree.prod.test.ts [2m([22m[2m29 tests[22m[2m)[22m[32m 15[2mms[22m[39m
|
|
172
|
-
[32mΓ£ô[39m src/ai/__tests__/AICopilot.test.ts [2m([22m[2m21 tests[22m[2m)[22m[32m 24[2mms[22m[39m
|
|
173
|
-
[32mΓ£ô[39m src/ai/__tests__/AIAdapter.test.ts [2m([22m[2m14 tests[22m[2m)[22m[32m 15[2mms[22m[39m
|
|
174
|
-
[32mΓ£ô[39m src/ai/__tests__/InfluenceMap.prod.test.ts [2m([22m[2m15 tests[22m[2m)[22m[32m 14[2mms[22m[39m
|
|
175
|
-
[32mΓ£ô[39m src/ai/__tests__/StateMachine.test.ts [2m([22m[2m15 tests[22m[2m)[22m[32m 15[2mms[22m[39m
|
|
176
|
-
[32mΓ£ô[39m src/agents/__tests__/AgentWalletRegistry.test.ts [2m([22m[2m15 tests[22m[2m)[22m[32m 19[2mms[22m[39m
|
|
177
|
-
[32mΓ£ô[39m src/agents/__tests__/NormEngine.test.ts [2m([22m[2m22 tests[22m[2m)[22m[32m 20[2mms[22m[39m
|
|
178
|
-
[32mΓ£ô[39m src/ai/__tests__/StateMachine.prod.test.ts [2m([22m[2m17 tests[22m[2m)[22m[32m 11[2mms[22m[39m
|
|
179
|
-
[32mΓ£ô[39m src/agents/__tests__/AgentRegistry.prod.test.ts [2m([22m[2m12 tests[22m[2m)[22m[32m 16[2mms[22m[39m
|
|
180
|
-
[32mΓ£ô[39m src/ai/__tests__/GenerationCache.test.ts [2m([22m[2m16 tests[22m[2m)[22m[32m 15[2mms[22m[39m
|
|
181
|
-
[32mΓ£ô[39m src/ai/__tests__/UtilityAI.test.ts [2m([22m[2m13 tests[22m[2m)[22m[32m 15[2mms[22m[39m
|
|
182
|
-
[32mΓ£ô[39m src/ai/__tests__/GenerationAnalytics.test.ts [2m([22m[2m15 tests[22m[2m)[22m[32m 20[2mms[22m[39m
|
|
183
|
-
[32mΓ£ô[39m src/swarm/spatial/__tests__/Vector3.test.ts [2m([22m[2m28 tests[22m[2m)[22m[32m 18[2mms[22m[39m
|
|
184
|
-
[32mΓ£ô[39m src/agents/__tests__/CapabilityMatcher.test.ts [2m([22m[2m23 tests[22m[2m)[22m[32m 17[2mms[22m[39m
|
|
185
|
-
[32mΓ£ô[39m src/ai/__tests__/GenerationCache.prod.test.ts [2m([22m[2m12 tests[22m[2m)[22m[32m 14[2mms[22m[39m
|
|
186
|
-
[32mΓ£ô[39m src/ai/__tests__/NavMesh.test.ts [2m([22m[2m14 tests[22m[2m)[22m[32m 16[2mms[22m[39m
|
|
187
|
-
[32mΓ£ô[39m src/__tests__/delegation.test.ts [2m([22m[2m10 tests[22m[2m)[22m[32m 18[2mms[22m[39m
|
|
188
|
-
[32mΓ£ô[39m src/ai/__tests__/NavMesh.prod.test.ts [2m([22m[2m12 tests[22m[2m)[22m[32m 14[2mms[22m[39m
|
|
189
|
-
[32mΓ£ô[39m src/ai/__tests__/SteeringBehavior.prod.test.ts [2m([22m[2m26 tests[22m[2m)[22m[32m 14[2mms[22m[39m
|
|
190
|
-
[32mΓ£ô[39m src/agents/__tests__/AgentRegistry.test.ts [2m([22m[2m13 tests[22m[2m)[22m[32m 15[2mms[22m[39m
|
|
191
|
-
[31mΓ¥»[39m src/__tests__/scenario-driven-todo.test.ts [2m([22m[2m8 tests[22m[2m | [22m[31m1 failed[39m[2m)[22m[32m 23[2mms[22m[39m
|
|
192
|
-
[32mΓ£ô[39m Scenario 1: High Network Latency/Timeout generates DevOps/Performance todos[32m 5[2mms[22m[39m
|
|
193
|
-
[32mΓ£ô[39m Scenario 2: Team switches to "Testing" mode after major logic refactoring[32m 1[2mms[22m[39m
|
|
194
|
-
[31m [31m×[31m Scenario 3: Architecture re-evaluates service bounds based off system-mandated source[39m[32m 12[2mms[22m[39m
|
|
195
|
-
[32mΓ£ô[39m Scenario 4: Security agent triages code injection vulnerability knowledge[32m 1[2mms[22m[39m
|
|
196
|
-
[32mΓ£ô[39m Scenario 5: Goal Synthesizer todos are successfully converted and pushed to the Team board[32m 1[2mms[22m[39m
|
|
197
|
-
[32mΓ£ô[39m Scenario 6: Research agent identifies knowledge gaps and proposes surveying[32m 0[2mms[22m[39m
|
|
198
|
-
[32mΓ£ô[39m Scenario 7: Coding agent reacts to legacy deprecation gotchas with targeted refactoring tasks[32m 0[2mms[22m[39m
|
|
199
|
-
[32mΓ£ô[39m Scenario 8: Reviewer agent generates task based on heuristic fallback[32m 0[2mms[22m[39m
|
|
200
|
-
[32mΓ£ô[39m src/__tests__/distributed-claimer.test.ts [2m([22m[2m12 tests[22m[2m)[22m[32m 13[2mms[22m[39m
|
|
201
|
-
[32mΓ£ô[39m src/agents/__tests__/AgentManifest.prod.test.ts [2m([22m[2m14 tests[22m[2m)[22m[32m 12[2mms[22m[39m
|
|
202
|
-
[32mΓ£ô[39m src/ai/__tests__/PromptTemplates.test.ts [2m([22m[2m18 tests[22m[2m)[22m[32m 16[2mms[22m[39m
|
|
203
|
-
[32mΓ£ô[39m src/__tests__/revenue-splitter.test.ts [2m([22m[2m12 tests[22m[2m)[22m[32m 15[2mms[22m[39m
|
|
204
|
-
[32mΓ£ô[39m src/ai/__tests__/BehaviorSelector.prod.test.ts [2m([22m[2m12 tests[22m[2m)[22m[32m 13[2mms[22m[39m
|
|
205
|
-
[32mΓ£ô[39m src/ai/__tests__/UtilityAI.prod.test.ts [2m([22m[2m11 tests[22m[2m)[22m[32m 14[2mms[22m[39m
|
|
206
|
-
[32mΓ£ô[39m src/ai/__tests__/BehaviorSelector.test.ts [2m([22m[2m13 tests[22m[2m)[22m[32m 14[2mms[22m[39m
|
|
207
|
-
[32mΓ£ô[39m src/ai/__tests__/SteeringBehavior.test.ts [2m([22m[2m16 tests[22m[2m)[22m[32m 16[2mms[22m[39m
|
|
208
|
-
[32mΓ£ô[39m src/ai/__tests__/InfluenceMap.test.ts [2m([22m[2m15 tests[22m[2m)[22m[32m 19[2mms[22m[39m
|
|
209
|
-
[32mΓ£ô[39m src/ai/__tests__/SteeringBehaviors.test.ts [2m([22m[2m13 tests[22m[2m)[22m[32m 15[2mms[22m[39m
|
|
210
|
-
[32mΓ£ô[39m src/ai/__tests__/PerceptionSystem.prod.test.ts [2m([22m[2m11 tests[22m[2m)[22m[32m 13[2mms[22m[39m
|
|
211
|
-
[32mΓ£ô[39m src/ai/__tests__/SteeringBehaviors.prod.test.ts [2m([22m[2m13 tests[22m[2m)[22m[32m 13[2mms[22m[39m
|
|
212
|
-
[32mΓ£ô[39m src/ai/__tests__/PerceptionSystem.test.ts [2m([22m[2m13 tests[22m[2m)[22m[32m 13[2mms[22m[39m
|
|
213
|
-
[32mΓ£ô[39m src/__tests__/skill-router.test.ts [2m([22m[2m9 tests[22m[2m)[22m[32m 14[2mms[22m[39m
|
|
214
|
-
[32mΓ£ô[39m src/ai/__tests__/SemanticSearch.test.ts [2m([22m[2m1 test[22m[2m)[22m[32m 4[2mms[22m[39m
|
|
215
|
-
|
|
216
|
-
[31m⎯⎯⎯⎯⎯⎯⎯[39m[1
|
|
217
|
-
m[41m Failed Tests 1 [49m[22m[
|
|
218
|
-
31m⎯⎯⎯⎯⎯⎯⎯[39m
|
|
219
|
-
|
|
220
|
-
[41m[1m FAIL [22m[49m src/__te
|
|
221
|
-
sts__/scenario-driven-todo.test.ts
|
|
222
|
-
[2m > [22mScenario-Driven Todo
|
|
223
|
-
Generation[2m > [22mScenario 3:
|
|
224
|
-
Architecture re-evaluates service
|
|
225
|
-
bounds based off system-mandated
|
|
226
|
-
source
|
|
227
|
-
[31m[1mAssertionError[22m:
|
|
228
|
-
expected false to be truthy[39m
|
|
229
|
-
|
|
230
|
-
[32m- Expected[39m
|
|
231
|
-
[31m+ Received[39m
|
|
232
|
-
|
|
233
|
-
[32m- true[39m
|
|
234
|
-
[31m+ false[39m
|
|
235
|
-
|
|
236
|
-
[36m [2mΓ¥»[22m src/__tests__/s
|
|
237
|
-
cenario-driven-todo.test.ts:[2m88
|
|
238
|
-
:162[22m[39m
|
|
239
|
-
[90m 86|[39m // The
|
|
240
|
-
description should match an
|
|
241
|
-
architecture domain or generic …
|
|
242
|
-
[90m 87|[39m
|
|
243
|
-
[35mconst[39m archDomains
|
|
244
|
-
[33m=[39m [33mDOMAIN_GOALS[39m
|
|
245
|
-
[[32m'architecture'[39m][33m;[
|
|
246
|
-
39m
|
|
247
|
-
[90m 88|[39m expect(arch
|
|
248
|
-
Domains.includes(architectGoal.des
|
|
249
|
-
cription) || architec…
|
|
250
|
-
[90m |[39m
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
[31m^[39m
|
|
256
|
-
[90m 89|[39m })[33m;[39m
|
|
257
|
-
[90m 90|[39m
|
|
258
|
-
|
|
259
|
-
[31m[2mΓÄ»ΓÄ»ΓÄ»ΓÄ»ΓÄ»ΓÄ»ΓÄ»ΓÄ»Γ
|
|
260
|
-
Ä»ΓÄ»ΓÄ»ΓÄ»ΓÄ»ΓÄ»ΓÄ»ΓÄ»ΓÄ»ΓÄ»ΓÄ»ΓÄ
|
|
261
|
-
»ΓÄ»ΓÄ»ΓÄ»ΓÄ»[1/1]ΓÄ»[22m[39m
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
[2m Test Files [22m [1m[31m1 failed[39m[22m[2m | [22m[1m[32m115 passed[39m[22m[90m (116)[39m
|
|
265
|
-
[2m Tests [22m [1m[31m1 failed[39m[22m[2m | [22m[1m[32m2727 passed[39m[22m[2m | [22m[33m1 skipped[39m[90m (2729)[39m
|
|
266
|
-
[2m Start at [22m 19:15:50
|
|
267
|
-
[2m Duration [22m 102.03s[2m (transform 492.33s, setup 0ms, import 763.91s, tests 10.12s, environment 17ms)[22m
|
|
268
|
-
|
package/vitest-log.txt
DELETED
|
Binary file
|