@kognai/orchestrator-core 0.1.1 → 0.1.3

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.
@@ -21,5 +21,18 @@
21
21
  * Flow: CEO plans → MiniMax codes → Dual Supervisor review (DeepSeek + Haiku)
22
22
  * → CEO resolves conflicts → CTO analyzes → CMO reports → CEO daily report
23
23
  */
24
- declare function main(): Promise<void>;
24
+ import { callLLM, localQAGate, c, log, routeCall, callAnthropicCached, compressContext, normalizeReview } from './engine-primitives';
25
+ import type { AgentTask, ReviewResult, CTOProposal, CTOReport } from './engine-primitives';
26
+ export { callLLM, localQAGate, c, log, routeCall, callAnthropicCached, compressContext, normalizeReview };
27
+ export type { AgentTask, ReviewResult, CTOProposal, CTOReport };
28
+ import type { SpawnGate, SpawnGateResult, AgentSpawnSpec } from './engine-agents';
29
+ export type { SpawnGate, SpawnGateResult, AgentSpawnSpec };
30
+ export { persistCEODecisions, resolveActiveSprintId, resolveAgentDid, recordAgentScore, assessTaskComplexity } from './engine-helpers';
31
+ export declare function postSprintSmokeTest(): Promise<void>;
32
+ /** TICKET-225: engine config supplied by the consuming template. */
33
+ export interface OrchestratorConfig {
34
+ /** Optional template-carried spawn governance gate (Kognai → SAF). */
35
+ spawnGate?: SpawnGate;
36
+ }
37
+ declare function main(config?: OrchestratorConfig): Promise<void>;
25
38
  export { main as runOrchestrator };