Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
436 changes: 436 additions & 0 deletions packages/types/src/cognitive/PHASE4_IMPLEMENTATION_DOCUMENTATION.md

Large diffs are not rendered by default.

55 changes: 54 additions & 1 deletion packages/types/src/cognitive/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,13 @@ export * from './ggml-kernels.js';
export * from './neural-symbolic-synthesis.js';
export * from './tensor-profiling.js';

// Phase 4: Distributed Cognitive Mesh API & Embodiment Layer
export * from './phase4-cognitive-api.js';
export * from './phase4-websocket-interface.js';
export * from './phase4-embodiment-interfaces.js';
export * from './phase4-testing-framework.js';
export * from './phase4-integration.js';

// Re-export key types from entities
export type {
CognitiveNode,
Expand Down Expand Up @@ -134,4 +141,50 @@ export type {
BenchmarkSuite,
BenchmarkTestCase,
RegressionTestResult
} from './tensor-profiling.js';
} from './tensor-profiling.js';

// Phase 4: Distributed Cognitive Mesh API & Embodiment Layer types
export type {
CognitiveOperationRequest,
CognitiveOperationResponse,
DistributedStateSnapshot,
TaskOrchestrationConfig
} from './phase4-cognitive-api.js';

export type {
WebSocketMessage,
CognitiveWebSocketRequest,
CognitiveWebSocketResponse,
StateUpdateEvent,
RealTimeMetrics,
CognitiveWebSocketConnection
} from './phase4-websocket-interface.js';

export type {
EmbodimentVector3,
EmbodimentQuaternion,
EmbodimentTransform,
SensorData,
ActuatorCommand,
EmbodimentState,
Unity3DMessage,
Unity3DGameObject,
Unity3DCognitiveAgent,
ROSNode,
ROSMessage,
ROSServiceRequest,
WebAgent,
WebAgentInteraction
} from './phase4-embodiment-interfaces.js';

export type {
TestMetrics,
LoadTestConfig,
EmbodimentTestScenario
} from './phase4-testing-framework.js';

export type {
Phase4Configuration,
EmbodimentFlowchartNode,
RecursiveEmbodimentPath
} from './phase4-integration.js';
Loading
Loading