Spaces:
Sleeping
Sleeping
File size: 2,447 Bytes
7540aea | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | /**
* Bootstrap module β matches original rust/crates/runtime/src/bootstrap.rs exactly.
*
* Provides:
* - BootstrapPhase enum (12 phases)
* - BootstrapPlan with claw_default() and from_phases()
*/
// βββ BootstrapPhase βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
export enum BootstrapPhase {
CliEntry = "CliEntry",
FastPathVersion = "FastPathVersion",
StartupProfiler = "StartupProfiler",
SystemPromptFastPath = "SystemPromptFastPath",
ChromeMcpFastPath = "ChromeMcpFastPath",
DaemonWorkerFastPath = "DaemonWorkerFastPath",
BridgeFastPath = "BridgeFastPath",
DaemonFastPath = "DaemonFastPath",
BackgroundSessionFastPath = "BackgroundSessionFastPath",
TemplateFastPath = "TemplateFastPath",
EnvironmentRunnerFastPath = "EnvironmentRunnerFastPath",
MainRuntime = "MainRuntime",
}
// βββ BootstrapPlan ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
export class BootstrapPlan {
private _phases: BootstrapPhase[];
private constructor(phases: BootstrapPhase[]) {
this._phases = phases;
}
/**
* Matches original BootstrapPlan::claw_default() β the standard 12-phase
* bootstrap sequence used by the claw CLI.
*/
static clawDefault(): BootstrapPlan {
return BootstrapPlan.fromPhases([
BootstrapPhase.CliEntry,
BootstrapPhase.FastPathVersion,
BootstrapPhase.StartupProfiler,
BootstrapPhase.SystemPromptFastPath,
BootstrapPhase.ChromeMcpFastPath,
BootstrapPhase.DaemonWorkerFastPath,
BootstrapPhase.BridgeFastPath,
BootstrapPhase.DaemonFastPath,
BootstrapPhase.BackgroundSessionFastPath,
BootstrapPhase.TemplateFastPath,
BootstrapPhase.EnvironmentRunnerFastPath,
BootstrapPhase.MainRuntime,
]);
}
/**
* Matches original BootstrapPlan::from_phases() β deduplicates phases
* while preserving order.
*/
static fromPhases(phases: BootstrapPhase[]): BootstrapPlan {
const deduped: BootstrapPhase[] = [];
for (const phase of phases) {
if (!deduped.includes(phase)) {
deduped.push(phase);
}
}
return new BootstrapPlan(deduped);
}
phases(): BootstrapPhase[] {
return [...this._phases];
}
}
|