From e36d2136ea5b97d38c78003720154ce18332350e Mon Sep 17 00:00:00 2001 From: Gustavo Madeira Santana Date: Sun, 15 Mar 2026 16:46:57 +0000 Subject: [PATCH] Docs: refresh extension host migration status --- .../openclaw-capability-catalog-and-arbitration-spec.md | 2 ++ .../openclaw-extension-contribution-schema-spec.md | 2 ++ .../openclaw-extension-host-implementation-guide.md | 2 ++ .../openclaw-extension-host-lifecycle-and-security-spec.md | 2 ++ .../openclaw-kernel-event-pipeline-spec.md | 1 + .../openclaw-kernel-extension-host-transition-plan.md | 3 +++ 6 files changed, 12 insertions(+) diff --git a/docs/.internal/extension-host-migration/openclaw-capability-catalog-and-arbitration-spec.md b/docs/.internal/extension-host-migration/openclaw-capability-catalog-and-arbitration-spec.md index e5b8ee443ea..47a48ae8ad9 100644 --- a/docs/.internal/extension-host-migration/openclaw-capability-catalog-and-arbitration-spec.md +++ b/docs/.internal/extension-host-migration/openclaw-capability-catalog-and-arbitration-spec.md @@ -49,6 +49,7 @@ What has been implemented: - loader per-candidate orchestration now routes through `src/extension-host/loader-flow.ts` - loader top-level load orchestration now routes through `src/extension-host/loader-orchestrator.ts` - loader preflight and cache-hit setup now routes through `src/extension-host/loader-preflight.ts` +- loader post-preflight pipeline composition now routes through `src/extension-host/loader-pipeline.ts` - loader execution setup composition now routes through `src/extension-host/loader-execution.ts` - loader discovery and manifest bootstrap now routes through `src/extension-host/loader-bootstrap.ts` - loader mutable activation state now routes through `src/extension-host/loader-session.ts` @@ -72,6 +73,7 @@ How it has been implemented: - by extracting candidate iteration, manifest lookup, per-candidate session processing, and finalization handoff into a host-owned loader-run helper before catalog publication work - by converting the compatibility record-state layer into an enforced loader lifecycle state machine before catalog publication work - by extracting test-default application, config normalization, cache-key construction, cache-hit activation, and command-clear setup into a host-owned loader-preflight helper before catalog publication work +- by extracting post-preflight execution setup and session-run composition into a host-owned loader-pipeline helper before catalog publication work - by extracting runtime creation, registry creation, bootstrap setup, module-loader creation, and session creation into a host-owned loader-execution helper before catalog publication work - by moving mutable activation state into a host-owned loader session before catalog publication work - by extracting shared provenance path matching and install-rule evaluation into `src/extension-host/loader-provenance.ts` so activation and finalization policy seams reuse one host-owned implementation diff --git a/docs/.internal/extension-host-migration/openclaw-extension-contribution-schema-spec.md b/docs/.internal/extension-host-migration/openclaw-extension-contribution-schema-spec.md index 69508aa17ac..928d9d1865e 100644 --- a/docs/.internal/extension-host-migration/openclaw-extension-contribution-schema-spec.md +++ b/docs/.internal/extension-host-migration/openclaw-extension-contribution-schema-spec.md @@ -53,6 +53,7 @@ What has been implemented: - loader per-candidate orchestration now routes through `src/extension-host/loader-flow.ts` - loader top-level load orchestration now routes through `src/extension-host/loader-orchestrator.ts` - loader preflight and cache-hit setup now routes through `src/extension-host/loader-preflight.ts` +- loader post-preflight pipeline composition now routes through `src/extension-host/loader-pipeline.ts` - loader execution setup composition now routes through `src/extension-host/loader-execution.ts` - loader discovery and manifest bootstrap now routes through `src/extension-host/loader-bootstrap.ts` - loader mutable activation state now routes through `src/extension-host/loader-session.ts` @@ -76,6 +77,7 @@ How it has been implemented: - by extracting candidate iteration, manifest lookup, per-candidate session processing, and finalization handoff into a host-owned loader-run helper before broader schema-driven lifecycle ownership changes - by turning the compatibility record-state layer into an enforced loader lifecycle state machine before broadening the schema-driven host lifecycle model - by extracting test-default application, config normalization, cache-key construction, cache-hit activation, and command-clear setup into a host-owned loader-preflight helper before broadening the schema-driven host lifecycle model +- by extracting post-preflight execution setup and session-run composition into a host-owned loader-pipeline helper before broadening the schema-driven host lifecycle model - by extracting runtime creation, registry creation, bootstrap setup, module-loader creation, and session creation into a host-owned loader-execution helper before broadening the schema-driven host lifecycle model - by moving mutable activation state into a host-owned loader session before broadening the schema-driven host lifecycle model - by extracting shared provenance path matching and install-rule evaluation into `src/extension-host/loader-provenance.ts` so activation and finalization policy seams reuse one host-owned implementation diff --git a/docs/.internal/extension-host-migration/openclaw-extension-host-implementation-guide.md b/docs/.internal/extension-host-migration/openclaw-extension-host-implementation-guide.md index ceec706c9a6..f90286ace6e 100644 --- a/docs/.internal/extension-host-migration/openclaw-extension-host-implementation-guide.md +++ b/docs/.internal/extension-host-migration/openclaw-extension-host-implementation-guide.md @@ -74,6 +74,7 @@ What has been implemented so far: - loader per-candidate orchestration now routes through `src/extension-host/loader-flow.ts` - loader top-level load orchestration now routes through `src/extension-host/loader-orchestrator.ts` - loader preflight and cache-hit setup now routes through `src/extension-host/loader-preflight.ts` +- loader post-preflight pipeline composition now routes through `src/extension-host/loader-pipeline.ts` - loader execution setup composition now routes through `src/extension-host/loader-execution.ts` - loader discovery and manifest bootstrap now routes through `src/extension-host/loader-bootstrap.ts` - loader mutable activation state now routes through `src/extension-host/loader-session.ts` @@ -119,6 +120,7 @@ How it has been done: - by turning that compatibility `lifecycleState` field into an enforced loader lifecycle state machine with readiness promotion during finalization - by moving the remaining top-level loader orchestration into a host-owned module so `src/plugins/loader.ts` becomes a compatibility facade instead of the real owner - by extracting test-default application, config normalization, cache-key construction, cache-hit activation, and command-clear setup into a host-owned loader-preflight helper before shrinking the remaining orchestrator surface +- by extracting post-preflight execution setup and session-run composition into a host-owned loader-pipeline helper before shrinking the remaining orchestrator surface - by extracting runtime creation, registry creation, bootstrap setup, module-loader creation, and session creation into a host-owned loader-execution helper before shrinking the remaining orchestrator surface - by moving mutable activation state such as seen-id tracking, memory-slot selection, and finalization inputs into a host-owned loader session instead of leaving them in top-level loader variables - by extracting shared provenance path matching and install-rule evaluation into `src/extension-host/loader-provenance.ts` so activation and finalization policy seams reuse one host-owned implementation diff --git a/docs/.internal/extension-host-migration/openclaw-extension-host-lifecycle-and-security-spec.md b/docs/.internal/extension-host-migration/openclaw-extension-host-lifecycle-and-security-spec.md index c8550a26a10..e80b8720329 100644 --- a/docs/.internal/extension-host-migration/openclaw-extension-host-lifecycle-and-security-spec.md +++ b/docs/.internal/extension-host-migration/openclaw-extension-host-lifecycle-and-security-spec.md @@ -51,6 +51,7 @@ What has been implemented: - loader per-candidate orchestration now routes through `src/extension-host/loader-flow.ts` - loader top-level load orchestration now routes through `src/extension-host/loader-orchestrator.ts` - loader preflight and cache-hit setup now routes through `src/extension-host/loader-preflight.ts` +- loader post-preflight pipeline composition now routes through `src/extension-host/loader-pipeline.ts` - loader execution setup composition now routes through `src/extension-host/loader-execution.ts` - loader discovery and manifest bootstrap now routes through `src/extension-host/loader-bootstrap.ts` - loader mutable activation state now routes through `src/extension-host/loader-session.ts` @@ -82,6 +83,7 @@ How it has been implemented: - by composing those seams into one host-owned per-candidate loader orchestrator before moving final lifecycle-state behavior - by moving the remaining top-level loader orchestration into a host-owned module before enforcing the loader lifecycle state machine - by extracting test-default application, config normalization, cache-key construction, cache-hit activation, and command-clear setup into a host-owned loader-preflight helper before shrinking the remaining orchestrator surface +- by extracting post-preflight execution setup and session-run composition into a host-owned loader-pipeline helper before shrinking the remaining orchestrator surface - by extracting runtime creation, registry creation, bootstrap setup, module-loader creation, and session creation into a host-owned loader-execution helper before shrinking the remaining orchestrator surface - by moving record-state transitions first into a compatibility layer and then into an enforced loader lifecycle state machine - by moving cache writes, provenance warnings, final memory-slot warnings, and activation into a host-owned loader finalizer before introducing an explicit lifecycle state machine diff --git a/docs/.internal/extension-host-migration/openclaw-kernel-event-pipeline-spec.md b/docs/.internal/extension-host-migration/openclaw-kernel-event-pipeline-spec.md index 3b1ec174e28..0e6b629bd0e 100644 --- a/docs/.internal/extension-host-migration/openclaw-kernel-event-pipeline-spec.md +++ b/docs/.internal/extension-host-migration/openclaw-kernel-event-pipeline-spec.md @@ -48,6 +48,7 @@ Relevant prerequisite work that has landed: - loader per-candidate orchestration now has a host-owned helper boundary - loader top-level load orchestration now has a host-owned helper boundary - loader preflight and cache-hit setup now has a host-owned helper boundary +- loader post-preflight pipeline composition now has a host-owned helper boundary - loader execution setup composition now has a host-owned helper boundary - loader discovery and manifest bootstrap now has a host-owned helper boundary - loader discovery policy outcomes now have a host-owned helper boundary diff --git a/docs/.internal/extension-host-migration/openclaw-kernel-extension-host-transition-plan.md b/docs/.internal/extension-host-migration/openclaw-kernel-extension-host-transition-plan.md index dcf1564a018..f5a75e663bf 100644 --- a/docs/.internal/extension-host-migration/openclaw-kernel-extension-host-transition-plan.md +++ b/docs/.internal/extension-host-migration/openclaw-kernel-extension-host-transition-plan.md @@ -59,6 +59,7 @@ What has landed: - loader per-candidate orchestration now routes through `src/extension-host/loader-flow.ts` - loader top-level load orchestration now routes through `src/extension-host/loader-orchestrator.ts` - loader preflight and cache-hit setup now routes through `src/extension-host/loader-preflight.ts` +- loader post-preflight pipeline composition now routes through `src/extension-host/loader-pipeline.ts` - loader execution setup composition now routes through `src/extension-host/loader-execution.ts` - loader discovery and manifest bootstrap now routes through `src/extension-host/loader-bootstrap.ts` - loader mutable activation state now routes through `src/extension-host/loader-session.ts` @@ -105,6 +106,7 @@ How it was done: - by turning that compatibility `lifecycleState` field into an enforced loader lifecycle state machine with readiness promotion during finalization - by moving the remaining top-level loader orchestration into a host-owned module so `src/plugins/loader.ts` becomes a compatibility facade instead of the real owner - by extracting test-default application, config normalization, cache-key construction, cache-hit activation, and command-clear setup into a host-owned loader-preflight helper before shrinking the remaining orchestrator surface +- by extracting post-preflight execution setup and session-run composition into a host-owned loader-pipeline helper before shrinking the remaining orchestrator surface - by extracting runtime creation, registry creation, bootstrap setup, module-loader creation, and session creation into a host-owned loader-execution helper before shrinking the remaining orchestrator surface - by moving mutable activation state such as seen-id tracking, memory-slot selection, and finalization inputs into a host-owned loader session instead of leaving them in top-level loader variables - by extracting shared provenance path matching and install-rule evaluation into `src/extension-host/loader-provenance.ts` so activation and finalization policy seams reuse one host-owned implementation @@ -136,6 +138,7 @@ Committed implementation slices so far: - `234a540720` `Plugins: extract loader session runner` - `a98443c39d` `Plugins: extract loader execution setup` - `c9323aa016` `Plugins: extract loader preflight` +- `0df51ae6b4` `Plugins: extract loader pipeline` - `89414ed857` `Docs: track extension host migration internally` - `d8af1eceaf` `Docs: refresh extension host migration status`