@abot-ai/runtime 1.0.0 → 1.2.0
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/README.md +23 -6
- package/dist/scripts/add-runtime-model.js +4 -0
- package/dist/scripts/configure-long-term-memory.d.ts +6 -0
- package/dist/scripts/configure-long-term-memory.js +139 -0
- package/dist/scripts/init-runtime.js +11 -1
- package/dist/scripts/runtime-setup-files.d.ts +1 -0
- package/dist/scripts/runtime-setup-files.js +4 -0
- package/dist/src/capabilities/normal-invocation/contracts.d.ts +1 -0
- package/dist/src/capabilities/normal-invocation/validator.d.ts +5 -0
- package/dist/src/capabilities/normal-invocation/validator.js +35 -2
- package/dist/src/capabilities/tool-definition-validator/definition-fields.d.ts +7 -0
- package/dist/src/capabilities/tool-definition-validator/definition-fields.js +156 -0
- package/dist/src/capabilities/tool-definition-validator/definition-parser.d.ts +2 -0
- package/dist/src/capabilities/tool-definition-validator/definition-parser.js +76 -0
- package/dist/src/capabilities/tool-definition-validator/definition-shape.d.ts +7 -0
- package/dist/src/capabilities/tool-definition-validator/definition-shape.js +34 -0
- package/dist/src/capabilities/tool-definition-validator/event-presentation.d.ts +2 -0
- package/dist/src/capabilities/tool-definition-validator/event-presentation.js +97 -0
- package/dist/src/capabilities/tool-definition-validator/module-registry.d.ts +3 -0
- package/dist/src/capabilities/tool-definition-validator/module-registry.js +99 -0
- package/dist/src/capabilities/tool-definition-validator/payload-channel-spec.d.ts +2 -0
- package/dist/src/capabilities/tool-definition-validator/payload-channel-spec.js +190 -0
- package/dist/src/capabilities/tool-definition-validator/payload-channel-stage.d.ts +11 -0
- package/dist/src/capabilities/tool-definition-validator/payload-channel-stage.js +155 -0
- package/dist/src/capabilities/tool-definition-validator/payload-stage-conditions.d.ts +24 -0
- package/dist/src/capabilities/tool-definition-validator/payload-stage-conditions.js +193 -0
- package/dist/src/capabilities/tool-definition-validator.d.ts +2 -4
- package/dist/src/capabilities/tool-definition-validator.js +2 -776
- package/dist/src/capabilities/tool-types.d.ts +1 -1
- package/dist/src/cli/abot.js +11 -2
- package/dist/src/model-gateway/client/embeddings.d.ts +3 -0
- package/dist/src/model-gateway/client/embeddings.js +48 -0
- package/dist/src/model-gateway/client.d.ts +3 -1
- package/dist/src/model-gateway/client.js +5 -0
- package/dist/src/model-gateway/embeddings/constants.d.ts +1 -0
- package/dist/src/model-gateway/embeddings/constants.js +1 -0
- package/dist/src/model-gateway/embeddings/discovery.d.ts +10 -0
- package/dist/src/model-gateway/embeddings/discovery.js +39 -0
- package/dist/src/model-gateway/embeddings/execution.d.ts +16 -0
- package/dist/src/model-gateway/embeddings/execution.js +64 -0
- package/dist/src/model-gateway/embeddings/fingerprint.d.ts +3 -0
- package/dist/src/model-gateway/embeddings/fingerprint.js +36 -0
- package/dist/src/model-gateway/embeddings/profile.d.ts +11 -0
- package/dist/src/model-gateway/embeddings/profile.js +37 -0
- package/dist/src/model-gateway/embeddings/server-handler.d.ts +3 -0
- package/dist/src/model-gateway/embeddings/server-handler.js +89 -0
- package/dist/src/model-gateway/embeddings/validation.d.ts +7 -0
- package/dist/src/model-gateway/embeddings/validation.js +69 -0
- package/dist/src/model-gateway/index.d.ts +5 -3
- package/dist/src/model-gateway/index.js +3 -1
- package/dist/src/model-gateway/providers/contracts.d.ts +27 -1
- package/dist/src/model-gateway/providers/ollama/adapter.js +4 -0
- package/dist/src/model-gateway/providers/ollama/base-url.d.ts +1 -0
- package/dist/src/model-gateway/providers/ollama/base-url.js +4 -0
- package/dist/src/model-gateway/providers/ollama/embedding-models.d.ts +2 -0
- package/dist/src/model-gateway/providers/ollama/embedding-models.js +31 -0
- package/dist/src/model-gateway/providers/ollama/embeddings.d.ts +2 -0
- package/dist/src/model-gateway/providers/ollama/embeddings.js +43 -0
- package/dist/src/model-gateway/providers/ollama/generation-options.d.ts +1 -3
- package/dist/src/model-gateway/providers/ollama/generation-options.js +1 -5
- package/dist/src/model-gateway/providers/ollama/payload.js +0 -8
- package/dist/src/model-gateway/providers/ollama/request-diagnostics.js +2 -1
- package/dist/src/model-gateway/providers/openai/adapter.js +2 -0
- package/dist/src/model-gateway/providers/openai/embeddings.d.ts +2 -0
- package/dist/src/model-gateway/providers/openai/embeddings.js +87 -0
- package/dist/src/model-gateway/providers/openai/payload.js +5 -8
- package/dist/src/model-gateway/server/contracts.d.ts +5 -3
- package/dist/src/model-gateway/server/create-server.js +9 -0
- package/dist/src/model-gateway/server/errors.js +34 -0
- package/dist/src/model-gateway/server/index.d.ts +2 -0
- package/dist/src/model-gateway/server/index.js +2 -0
- package/dist/src/model-gateway/server/provider-fetch.d.ts +5 -3
- package/dist/src/model-gateway/server/provider-fetch.js +3 -1
- package/dist/src/model-gateway/server/request-body.d.ts +1 -1
- package/dist/src/model-gateway/server/request-body.js +1 -0
- package/dist/src/model-gateway/types.d.ts +39 -0
- package/dist/src/plugin-contract/manifest.d.ts +1 -0
- package/dist/src/plugin-sdk/index.d.ts +2 -0
- package/dist/src/plugin-sdk/index.js +2 -0
- package/dist/src/plugin-sdk/tool-availability-brief.d.ts +9 -0
- package/dist/src/plugin-sdk/tool-availability-brief.js +48 -0
- package/dist/src/plugin-sdk/tool-availability-overview.d.ts +9 -0
- package/dist/src/plugin-sdk/tool-availability-overview.js +62 -0
- package/dist/src/runtime/adapters/index.d.ts +4 -0
- package/dist/src/runtime/adapters/index.js +4 -0
- package/dist/src/runtime/adapters/long-term-memory/file-lock/acquisition.d.ts +2 -0
- package/dist/src/runtime/adapters/long-term-memory/file-lock/acquisition.js +77 -0
- package/dist/src/runtime/adapters/long-term-memory/file-lock/cleanup.d.ts +4 -0
- package/dist/src/runtime/adapters/long-term-memory/file-lock/cleanup.js +52 -0
- package/dist/src/runtime/adapters/long-term-memory/file-lock/contracts.d.ts +31 -0
- package/dist/src/runtime/adapters/long-term-memory/file-lock/contracts.js +17 -0
- package/dist/src/runtime/adapters/long-term-memory/file-lock/install.d.ts +1 -0
- package/dist/src/runtime/adapters/long-term-memory/file-lock/install.js +36 -0
- package/dist/src/runtime/adapters/long-term-memory/file-lock/owner-record.d.ts +2 -0
- package/dist/src/runtime/adapters/long-term-memory/file-lock/owner-record.js +114 -0
- package/dist/src/runtime/adapters/long-term-memory/file-lock/snapshot.d.ts +2 -0
- package/dist/src/runtime/adapters/long-term-memory/file-lock/snapshot.js +103 -0
- package/dist/src/runtime/adapters/long-term-memory/file-lock.d.ts +2 -0
- package/dist/src/runtime/adapters/long-term-memory/file-lock.js +10 -0
- package/dist/src/runtime/adapters/long-term-memory/file-repository.d.ts +2 -0
- package/dist/src/runtime/adapters/long-term-memory/file-repository.js +57 -0
- package/dist/src/runtime/adapters/long-term-memory/in-memory-repository.d.ts +2 -0
- package/dist/src/runtime/adapters/long-term-memory/in-memory-repository.js +21 -0
- package/dist/src/runtime/adapters/long-term-memory/onboarding-config-repository.d.ts +5 -0
- package/dist/src/runtime/adapters/long-term-memory/onboarding-config-repository.js +60 -0
- package/dist/src/runtime/adapters/long-term-memory/onboarding-service.d.ts +8 -0
- package/dist/src/runtime/adapters/long-term-memory/onboarding-service.js +34 -0
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/execution/run.d.ts +7 -1
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/execution/run.js +54 -25
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/executor.js +18 -4
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/payload/lifecycle.d.ts +6 -1
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/payload/lifecycle.js +25 -12
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/shared/action-fingerprint.d.ts +22 -0
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/shared/action-fingerprint.js +65 -0
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/shared/contracts.d.ts +44 -0
- package/dist/src/runtime/adapters/registered-tool-normal-invocations.d.ts +1 -1
- package/dist/src/runtime/adapters/registered-tool-payload-plan.d.ts +0 -9
- package/dist/src/runtime/adapters/registered-tool-payload-plan.js +0 -67
- package/dist/src/runtime/adapters/registered-tool-payload-related-artifacts.d.ts +13 -0
- package/dist/src/runtime/adapters/registered-tool-payload-related-artifacts.js +84 -0
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/catalog.js +18 -4
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/execution.js +221 -87
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/failure-outcome-fingerprint.d.ts +7 -0
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/failure-outcome-fingerprint.js +84 -0
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/payload-lifecycle.d.ts +6 -4
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/payload-lifecycle.js +18 -2
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/payload-observability.d.ts +35 -0
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/payload-observability.js +32 -0
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/payload-rejection.d.ts +3 -3
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/payload-rejection.js +13 -8
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/payload-stages.d.ts +6 -4
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/payload-stages.js +13 -3
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/result-observer.js +12 -4
- package/dist/src/runtime/capabilities/request-bound-tool-registry.js +1 -24
- package/dist/src/runtime/capabilities/tool-availability.d.ts +6 -0
- package/dist/src/runtime/capabilities/tool-availability.js +28 -0
- package/dist/src/runtime/composition.d.ts +3 -0
- package/dist/src/runtime/composition.js +5 -2
- package/dist/src/runtime/config/builders.js +34 -1
- package/dist/src/runtime/config/effective-model-config-validation.js +9 -0
- package/dist/src/runtime/config/embedding-profiles.d.ts +5 -0
- package/dist/src/runtime/config/embedding-profiles.js +66 -0
- package/dist/src/runtime/config/fields.js +22 -0
- package/dist/src/runtime/config/long-term-memory.d.ts +9 -0
- package/dist/src/runtime/config/long-term-memory.js +71 -0
- package/dist/src/runtime/config/runner/config-normalization.d.ts +16 -0
- package/dist/src/runtime/config/runner/config-normalization.js +109 -0
- package/dist/src/runtime/config/runner/loader.d.ts +1 -1
- package/dist/src/runtime/config/runner/loader.js +2 -69
- package/dist/src/runtime/config/runner/model-policy.js +3 -0
- package/dist/src/runtime/config/runner/schema-version.d.ts +14 -0
- package/dist/src/runtime/config/runner/schema-version.js +35 -0
- package/dist/src/runtime/config/runner/versioned-config.d.ts +2 -0
- package/dist/src/runtime/config/runner/versioned-config.js +51 -0
- package/dist/src/runtime/config/schema.js +36 -0
- package/dist/src/runtime/config/types.d.ts +1 -0
- package/dist/src/runtime/config/validation/environment-config-validation.d.ts +1 -0
- package/dist/src/runtime/config/validation/environment-config-validation.js +41 -0
- package/dist/src/runtime/config/validation/model-invocation-config-validation.d.ts +2 -0
- package/dist/src/runtime/config/validation/model-invocation-config-validation.js +64 -0
- package/dist/src/runtime/config/validation/model-invocation-override-validation.d.ts +2 -0
- package/dist/src/runtime/config/validation/model-invocation-override-validation.js +72 -0
- package/dist/src/runtime/config/validation/model-profile-validation.d.ts +4 -0
- package/dist/src/runtime/config/validation/model-profile-validation.js +87 -0
- package/dist/src/runtime/config/validation/model-registry-validation.d.ts +2 -0
- package/dist/src/runtime/config/validation/model-registry-validation.js +118 -0
- package/dist/src/runtime/config/validation/path-config-validation.d.ts +1 -0
- package/dist/src/runtime/config/validation/path-config-validation.js +7 -0
- package/dist/src/runtime/config/validation/runtime-config-field-validation.d.ts +12 -0
- package/dist/src/runtime/config/validation/runtime-config-field-validation.js +158 -0
- package/dist/src/runtime/config/validation/runtime-config-validation-contract.d.ts +9 -0
- package/dist/src/runtime/config/validation/runtime-config-validation-contract.js +13 -0
- package/dist/src/runtime/config/validation/runtime-root-section-validation.d.ts +6 -0
- package/dist/src/runtime/config/validation/runtime-root-section-validation.js +82 -0
- package/dist/src/runtime/config/validation/web-ui-config-validation.d.ts +3 -0
- package/dist/src/runtime/config/validation/web-ui-config-validation.js +26 -0
- package/dist/src/runtime/config/validation.d.ts +4 -15
- package/dist/src/runtime/config/validation.js +27 -499
- package/dist/src/runtime/config.js +3 -0
- package/dist/src/runtime/context/accepted-capability-action.d.ts +11 -0
- package/dist/src/runtime/context/accepted-capability-action.js +29 -0
- package/dist/src/runtime/context/capability-brief.d.ts +25 -0
- package/dist/src/runtime/context/capability-brief.js +106 -0
- package/dist/src/runtime/context/model-step-compaction.js +6 -0
- package/dist/src/runtime/context/operation-supervision-evidence.d.ts +37 -0
- package/dist/src/runtime/context/operation-supervision-evidence.js +90 -0
- package/dist/src/runtime/context/request-tool-results-message-binding.d.ts +6 -0
- package/dist/src/runtime/context/request-tool-results-message-binding.js +30 -0
- package/dist/src/runtime/context/request-tool-results-scope.d.ts +3 -0
- package/dist/src/runtime/context/request-tool-results-scope.js +8 -0
- package/dist/src/runtime/context/request-tool-results.d.ts +11 -4
- package/dist/src/runtime/context/request-tool-results.js +60 -40
- package/dist/src/runtime/default-adapters.d.ts +3 -0
- package/dist/src/runtime/default-adapters.js +64 -3
- package/dist/src/runtime/index.d.ts +1 -0
- package/dist/src/runtime/index.js +1 -0
- package/dist/src/runtime/lifecycle/request-finalizer.d.ts +3 -0
- package/dist/src/runtime/lifecycle/request-finalizer.js +8 -0
- package/dist/src/runtime/long-term-memory/background-save-queue.d.ts +17 -0
- package/dist/src/runtime/long-term-memory/background-save-queue.js +66 -0
- package/dist/src/runtime/long-term-memory/candidate-persistence.d.ts +16 -0
- package/dist/src/runtime/long-term-memory/candidate-persistence.js +109 -0
- package/dist/src/runtime/long-term-memory/candidate-preparation.d.ts +8 -0
- package/dist/src/runtime/long-term-memory/candidate-preparation.js +36 -0
- package/dist/src/runtime/long-term-memory/candidate-processing.d.ts +9 -0
- package/dist/src/runtime/long-term-memory/candidate-processing.js +79 -0
- package/dist/src/runtime/long-term-memory/contracts.d.ts +108 -0
- package/dist/src/runtime/long-term-memory/contracts.js +1 -0
- package/dist/src/runtime/long-term-memory/diagnostics.d.ts +9 -0
- package/dist/src/runtime/long-term-memory/diagnostics.js +42 -0
- package/dist/src/runtime/long-term-memory/embedding-batches.d.ts +13 -0
- package/dist/src/runtime/long-term-memory/embedding-batches.js +87 -0
- package/dist/src/runtime/long-term-memory/events.d.ts +13 -0
- package/dist/src/runtime/long-term-memory/events.js +15 -0
- package/dist/src/runtime/long-term-memory/finalization.d.ts +8 -0
- package/dist/src/runtime/long-term-memory/finalization.js +24 -0
- package/dist/src/runtime/long-term-memory/index.d.ts +6 -0
- package/dist/src/runtime/long-term-memory/index.js +6 -0
- package/dist/src/runtime/long-term-memory/management/contracts.d.ts +54 -0
- package/dist/src/runtime/long-term-memory/management/contracts.js +1 -0
- package/dist/src/runtime/long-term-memory/management/errors.d.ts +10 -0
- package/dist/src/runtime/long-term-memory/management/errors.js +13 -0
- package/dist/src/runtime/long-term-memory/management/mutations.d.ts +17 -0
- package/dist/src/runtime/long-term-memory/management/mutations.js +178 -0
- package/dist/src/runtime/long-term-memory/management/queries.d.ts +8 -0
- package/dist/src/runtime/long-term-memory/management/queries.js +46 -0
- package/dist/src/runtime/long-term-memory/management/search.d.ts +7 -0
- package/dist/src/runtime/long-term-memory/management/search.js +18 -0
- package/dist/src/runtime/long-term-memory/management/service.d.ts +13 -0
- package/dist/src/runtime/long-term-memory/management/service.js +61 -0
- package/dist/src/runtime/long-term-memory/management/validation.d.ts +24 -0
- package/dist/src/runtime/long-term-memory/management/validation.js +77 -0
- package/dist/src/runtime/long-term-memory/onboarding/configuration.d.ts +14 -0
- package/dist/src/runtime/long-term-memory/onboarding/configuration.js +92 -0
- package/dist/src/runtime/long-term-memory/onboarding/contracts.d.ts +52 -0
- package/dist/src/runtime/long-term-memory/onboarding/contracts.js +1 -0
- package/dist/src/runtime/long-term-memory/onboarding/service.d.ts +21 -0
- package/dist/src/runtime/long-term-memory/onboarding/service.js +88 -0
- package/dist/src/runtime/long-term-memory/policies/normalization.d.ts +10 -0
- package/dist/src/runtime/long-term-memory/policies/normalization.js +45 -0
- package/dist/src/runtime/long-term-memory/policies/reconciliation.d.ts +20 -0
- package/dist/src/runtime/long-term-memory/policies/reconciliation.js +21 -0
- package/dist/src/runtime/long-term-memory/policies/scoring.d.ts +13 -0
- package/dist/src/runtime/long-term-memory/policies/scoring.js +55 -0
- package/dist/src/runtime/long-term-memory/policies/sensitive-data.d.ts +5 -0
- package/dist/src/runtime/long-term-memory/policies/sensitive-data.js +12 -0
- package/dist/src/runtime/long-term-memory/projection.d.ts +4 -0
- package/dist/src/runtime/long-term-memory/projection.js +39 -0
- package/dist/src/runtime/long-term-memory/ranked-search.d.ts +11 -0
- package/dist/src/runtime/long-term-memory/ranked-search.js +111 -0
- package/dist/src/runtime/long-term-memory/repository-state.d.ts +4 -0
- package/dist/src/runtime/long-term-memory/repository-state.js +131 -0
- package/dist/src/runtime/long-term-memory/response-context.d.ts +5 -0
- package/dist/src/runtime/long-term-memory/response-context.js +21 -0
- package/dist/src/runtime/long-term-memory/retrieval.d.ts +8 -0
- package/dist/src/runtime/long-term-memory/retrieval.js +73 -0
- package/dist/src/runtime/long-term-memory/service.d.ts +10 -0
- package/dist/src/runtime/long-term-memory/service.js +83 -0
- package/dist/src/runtime/orchestration/capability-adapters/index.d.ts +2 -0
- package/dist/src/runtime/orchestration/capability-adapters/index.js +2 -0
- package/dist/src/runtime/orchestration/final-response/authoring-contract.d.ts +10 -0
- package/dist/src/runtime/orchestration/final-response/authoring-contract.js +94 -0
- package/dist/src/runtime/orchestration/final-response/finalization.d.ts +1 -0
- package/dist/src/runtime/orchestration/final-response/finalization.js +1 -0
- package/dist/src/runtime/orchestration/final-response/format.d.ts +2 -0
- package/dist/src/runtime/orchestration/final-response/format.js +49 -0
- package/dist/src/runtime/orchestration/final-response/invoke.d.ts +16 -0
- package/dist/src/runtime/orchestration/final-response/invoke.js +24 -0
- package/dist/src/runtime/orchestration/role-calls/activation-budget.d.ts +14 -0
- package/dist/src/runtime/orchestration/role-calls/activation-budget.js +52 -0
- package/dist/src/runtime/orchestration/role-calls/candidate-validation.js +162 -1
- package/dist/src/runtime/orchestration/role-calls/capability-selection-reconsideration.js +1 -8
- package/dist/src/runtime/orchestration/role-calls/capability-selection-supervision-issuance.d.ts +17 -0
- package/dist/src/runtime/orchestration/role-calls/capability-selection-supervision-issuance.js +155 -0
- package/dist/src/runtime/orchestration/role-calls/capability-selection-supervision.d.ts +78 -0
- package/dist/src/runtime/orchestration/role-calls/capability-selection-supervision.js +339 -0
- package/dist/src/runtime/orchestration/role-calls/child-return.d.ts +4 -0
- package/dist/src/runtime/orchestration/role-calls/child-return.js +25 -5
- package/dist/src/runtime/orchestration/role-calls/command-decoder.js +43 -13
- package/dist/src/runtime/orchestration/role-calls/command-dispatch/active-capability-caller.d.ts +6 -0
- package/dist/src/runtime/orchestration/role-calls/command-dispatch/active-capability-caller.js +15 -0
- package/dist/src/runtime/orchestration/role-calls/command-dispatch/call-frame-state.d.ts +3 -0
- package/dist/src/runtime/orchestration/role-calls/command-dispatch/call-frame-state.js +6 -0
- package/dist/src/runtime/orchestration/role-calls/command-dispatch/call-scope-transitions.d.ts +3 -0
- package/dist/src/runtime/orchestration/role-calls/command-dispatch/call-scope-transitions.js +86 -0
- package/dist/src/runtime/orchestration/role-calls/command-dispatch/capability-batch-transitions.d.ts +3 -0
- package/dist/src/runtime/orchestration/role-calls/command-dispatch/capability-batch-transitions.js +172 -0
- package/dist/src/runtime/orchestration/role-calls/command-dispatch/capability-execution-state.d.ts +9 -0
- package/dist/src/runtime/orchestration/role-calls/command-dispatch/capability-execution-state.js +28 -0
- package/dist/src/runtime/orchestration/role-calls/command-dispatch/capability-execution-transitions.d.ts +3 -0
- package/dist/src/runtime/orchestration/role-calls/command-dispatch/capability-execution-transitions.js +117 -0
- package/dist/src/runtime/orchestration/role-calls/command-dispatch/capability-invocation.d.ts +4 -0
- package/dist/src/runtime/orchestration/role-calls/command-dispatch/capability-invocation.js +16 -0
- package/dist/src/runtime/orchestration/role-calls/command-dispatch/capability-selection-transition.d.ts +2 -0
- package/dist/src/runtime/orchestration/role-calls/command-dispatch/capability-selection-transition.js +114 -0
- package/dist/src/runtime/orchestration/role-calls/command-dispatch/capability-settlement.d.ts +6 -0
- package/dist/src/runtime/orchestration/role-calls/command-dispatch/capability-settlement.js +54 -0
- package/dist/src/runtime/orchestration/role-calls/command-dispatch/child-transitions.d.ts +3 -0
- package/dist/src/runtime/orchestration/role-calls/command-dispatch/child-transitions.js +221 -0
- package/dist/src/runtime/orchestration/role-calls/command-dispatch/operation-supervision-intervention.d.ts +13 -0
- package/dist/src/runtime/orchestration/role-calls/command-dispatch/operation-supervision-intervention.js +25 -0
- package/dist/src/runtime/orchestration/role-calls/command-dispatch/root-transitions.d.ts +3 -0
- package/dist/src/runtime/orchestration/role-calls/command-dispatch/root-transitions.js +70 -0
- package/dist/src/runtime/orchestration/role-calls/command-dispatch.d.ts +2 -2
- package/dist/src/runtime/orchestration/role-calls/command-dispatch.js +8 -582
- package/dist/src/runtime/orchestration/role-calls/contracts.d.ts +48 -5
- package/dist/src/runtime/orchestration/role-calls/contracts.js +4 -4
- package/dist/src/runtime/orchestration/role-calls/dependency-results.d.ts +1 -1
- package/dist/src/runtime/orchestration/role-calls/dependency-results.js +1 -0
- package/dist/src/runtime/orchestration/role-calls/diagnostics.d.ts +4 -0
- package/dist/src/runtime/orchestration/role-calls/diagnostics.js +152 -1
- package/dist/src/runtime/orchestration/role-calls/index.d.ts +11 -1
- package/dist/src/runtime/orchestration/role-calls/index.js +11 -1
- package/dist/src/runtime/orchestration/role-calls/ledger.d.ts +3 -1
- package/dist/src/runtime/orchestration/role-calls/ledger.js +139 -8
- package/dist/src/runtime/orchestration/role-calls/operation-supervision-issuance.d.ts +11 -0
- package/dist/src/runtime/orchestration/role-calls/operation-supervision-issuance.js +66 -0
- package/dist/src/runtime/orchestration/role-calls/operation-supervision-projection.d.ts +16 -0
- package/dist/src/runtime/orchestration/role-calls/operation-supervision-projection.js +52 -0
- package/dist/src/runtime/orchestration/role-calls/operation-supervision-state-validation.d.ts +3 -0
- package/dist/src/runtime/orchestration/role-calls/operation-supervision-state-validation.js +151 -0
- package/dist/src/runtime/orchestration/role-calls/operation-supervision.d.ts +112 -0
- package/dist/src/runtime/orchestration/role-calls/operation-supervision.js +197 -0
- package/dist/src/runtime/orchestration/role-calls/reconsideration-cause.d.ts +26 -0
- package/dist/src/runtime/orchestration/role-calls/reconsideration-cause.js +127 -0
- package/dist/src/runtime/orchestration/role-calls/reducer-primitives.d.ts +1 -2
- package/dist/src/runtime/orchestration/role-calls/reducer-primitives.js +2 -12
- package/dist/src/runtime/orchestration/role-calls/reducer.d.ts +1 -1
- package/dist/src/runtime/orchestration/role-calls/reducer.js +20 -3
- package/dist/src/runtime/orchestration/role-calls/result-receipt.d.ts +49 -0
- package/dist/src/runtime/orchestration/role-calls/result-receipt.js +188 -0
- package/dist/src/runtime/orchestration/role-calls/return-result-receipt.d.ts +19 -0
- package/dist/src/runtime/orchestration/role-calls/return-result-receipt.js +52 -0
- package/dist/src/runtime/orchestration/role-calls/transactions.js +63 -5
- package/dist/src/runtime/orchestration/role-calls/work-result-lineage.d.ts +34 -0
- package/dist/src/runtime/orchestration/role-calls/work-result-lineage.js +185 -0
- package/dist/src/runtime/orchestration/role-calls/work-result-receipt.d.ts +36 -0
- package/dist/src/runtime/orchestration/role-calls/work-result-receipt.js +187 -0
- package/dist/src/runtime/orchestration/role-executors/activation/capability-continuation.d.ts +15 -0
- package/dist/src/runtime/orchestration/role-executors/activation/capability-continuation.js +73 -0
- package/dist/src/runtime/orchestration/role-executors/activation/loop.d.ts +0 -1
- package/dist/src/runtime/orchestration/role-executors/activation/loop.js +16 -54
- package/dist/src/runtime/orchestration/role-executors/activation/result-normalization.js +20 -3
- package/dist/src/runtime/orchestration/role-executors/activation/state-validation.d.ts +13 -1
- package/dist/src/runtime/orchestration/role-executors/activation/state-validation.js +137 -1
- package/dist/src/runtime/orchestration/role-executors/child-invocation/transaction.js +1 -0
- package/dist/src/runtime/orchestration/role-executors/contracts.d.ts +8 -3
- package/dist/src/runtime/orchestration/role-executors/diagnostics.d.ts +2 -0
- package/dist/src/runtime/orchestration/role-executors/diagnostics.js +1 -6
- package/dist/src/runtime/orchestration/worker-capabilities/assignment-provenance.d.ts +36 -0
- package/dist/src/runtime/orchestration/worker-capabilities/assignment-provenance.js +171 -0
- package/dist/src/runtime/orchestration/worker-capabilities/batch-selection.d.ts +10 -0
- package/dist/src/runtime/orchestration/worker-capabilities/batch-selection.js +8 -0
- package/dist/src/runtime/orchestration/worker-capabilities/binding/adapter-catalog.d.ts +14 -0
- package/dist/src/runtime/orchestration/worker-capabilities/binding/adapter-catalog.js +76 -0
- package/dist/src/runtime/orchestration/worker-capabilities/binding/adapter-normalization.d.ts +10 -0
- package/dist/src/runtime/orchestration/worker-capabilities/binding/adapter-normalization.js +160 -0
- package/dist/src/runtime/orchestration/worker-capabilities/binding/binding-rejection.d.ts +2 -0
- package/dist/src/runtime/orchestration/worker-capabilities/binding/binding-rejection.js +8 -0
- package/dist/src/runtime/orchestration/worker-capabilities/binding/bound-capability-session.d.ts +24 -0
- package/dist/src/runtime/orchestration/worker-capabilities/binding/bound-capability-session.js +100 -0
- package/dist/src/runtime/orchestration/worker-capabilities/binding/call-authority.d.ts +29 -0
- package/dist/src/runtime/orchestration/worker-capabilities/binding/call-authority.js +193 -0
- package/dist/src/runtime/orchestration/worker-capabilities/binding/create-binding.d.ts +11 -0
- package/dist/src/runtime/orchestration/worker-capabilities/binding/create-binding.js +109 -0
- package/dist/src/runtime/orchestration/worker-capabilities/binding/dependency-results.d.ts +2 -0
- package/dist/src/runtime/orchestration/worker-capabilities/binding/dependency-results.js +34 -0
- package/dist/src/runtime/orchestration/worker-capabilities/binding/invocation-preparation.d.ts +21 -0
- package/dist/src/runtime/orchestration/worker-capabilities/binding/invocation-preparation.js +167 -0
- package/dist/src/runtime/orchestration/worker-capabilities/binding.d.ts +1 -13
- package/dist/src/runtime/orchestration/worker-capabilities/binding.js +1 -625
- package/dist/src/runtime/orchestration/worker-capabilities/contracts.d.ts +89 -15
- package/dist/src/runtime/orchestration/worker-capabilities/contracts.js +3 -1
- package/dist/src/runtime/orchestration/worker-capabilities/controls.d.ts +7 -0
- package/dist/src/runtime/orchestration/worker-capabilities/controls.js +50 -0
- package/dist/src/runtime/orchestration/worker-capabilities/error-fingerprint.d.ts +5 -0
- package/dist/src/runtime/orchestration/worker-capabilities/error-fingerprint.js +119 -0
- package/dist/src/runtime/orchestration/worker-capabilities/errors.d.ts +6 -0
- package/dist/src/runtime/orchestration/worker-capabilities/errors.js +11 -0
- package/dist/src/runtime/orchestration/worker-capabilities/execution/adapter-exact-result.d.ts +7 -0
- package/dist/src/runtime/orchestration/worker-capabilities/execution/adapter-exact-result.js +35 -0
- package/dist/src/runtime/orchestration/worker-capabilities/execution/adapter-execution.d.ts +9 -0
- package/dist/src/runtime/orchestration/worker-capabilities/execution/adapter-execution.js +28 -0
- package/dist/src/runtime/orchestration/worker-capabilities/execution/adapter-result-normalization.d.ts +18 -0
- package/dist/src/runtime/orchestration/worker-capabilities/execution/adapter-result-normalization.js +197 -0
- package/dist/src/runtime/orchestration/worker-capabilities/execution/adapter-result-references.d.ts +2 -0
- package/dist/src/runtime/orchestration/worker-capabilities/execution/adapter-result-references.js +44 -0
- package/dist/src/runtime/orchestration/worker-capabilities/execution/context-projection.d.ts +12 -0
- package/dist/src/runtime/orchestration/worker-capabilities/execution/context-projection.js +51 -0
- package/dist/src/runtime/orchestration/worker-capabilities/execution/invocation-preparation.d.ts +26 -0
- package/dist/src/runtime/orchestration/worker-capabilities/execution/invocation-preparation.js +114 -0
- package/dist/src/runtime/orchestration/worker-capabilities/execution/ledger-transaction.d.ts +20 -0
- package/dist/src/runtime/orchestration/worker-capabilities/execution/ledger-transaction.js +142 -0
- package/dist/src/runtime/orchestration/worker-capabilities/execution.d.ts +10 -14
- package/dist/src/runtime/orchestration/worker-capabilities/execution.js +107 -357
- package/dist/src/runtime/orchestration/worker-capabilities/index.d.ts +5 -0
- package/dist/src/runtime/orchestration/worker-capabilities/index.js +5 -0
- package/dist/src/runtime/orchestration/worker-capabilities/outcome-fingerprint.d.ts +8 -0
- package/dist/src/runtime/orchestration/worker-capabilities/outcome-fingerprint.js +21 -0
- package/dist/src/runtime/orchestration/worker-capabilities/payload-assignment-validation.d.ts +3 -0
- package/dist/src/runtime/orchestration/worker-capabilities/payload-assignment-validation.js +30 -0
- package/dist/src/runtime/orchestration/worker-capabilities/payload-author.js +23 -12
- package/dist/src/runtime/orchestration/worker-capabilities/payload-contracts.d.ts +20 -7
- package/dist/src/runtime/orchestration/worker-capabilities/payload-contracts.js +2 -0
- package/dist/src/runtime/orchestration/worker-capabilities/payload-instructions.js +4 -4
- package/dist/src/runtime/orchestration/worker-capabilities/payload-source-provenance.d.ts +14 -0
- package/dist/src/runtime/orchestration/worker-capabilities/payload-source-provenance.js +132 -0
- package/dist/src/runtime/orchestration/worker-capabilities/preparation-fingerprint.d.ts +23 -0
- package/dist/src/runtime/orchestration/worker-capabilities/preparation-fingerprint.js +109 -0
- package/dist/src/runtime/plugins/manifest-projection.js +3 -0
- package/dist/src/runtime/plugins/manifest-validator.js +20 -0
- package/dist/src/runtime/ports.d.ts +10 -1
- package/dist/src/runtime/request/capability-brief.d.ts +5 -0
- package/dist/src/runtime/request/capability-brief.js +24 -0
- package/dist/src/runtime/request/contracts.d.ts +7 -0
- package/dist/src/runtime/request/dependencies.d.ts +1 -0
- package/dist/src/runtime/request/dependencies.js +10 -1
- package/dist/src/runtime/request/execution-agent-root-execution.js +5 -4
- package/dist/src/runtime/request/execution-facets.d.ts +2 -1
- package/dist/src/runtime/request/execution-facets.js +6 -0
- package/dist/src/runtime/request/execution-scope-surfaces.js +6 -0
- package/dist/src/runtime/request/execution-scope.d.ts +5 -3
- package/dist/src/runtime/request/handler.js +4 -1
- package/dist/src/runtime/request/result.d.ts +2 -0
- package/dist/src/runtime/request/role-executor-composition.js +1 -1
- package/dist/src/runtime/request/root-contract.d.ts +4 -2
- package/dist/src/runtime/request/root-execution-kernel.js +100 -31
- package/dist/src/runtime/request/supervisor-root-execution.js +4 -2
- package/dist/src/runtime/request/worker-capability-composition.d.ts +2 -1
- package/dist/src/runtime/request/worker-capability-composition.js +6 -1
- package/dist/src/runtime/request/worker-capability-payload-prompts.js +1 -1
- package/dist/src/runtime/request/worker-capability-payload.js +11 -8
- package/dist/src/runtime/steps/execution-agent/capability-invocation-contract.d.ts +24 -0
- package/dist/src/runtime/steps/execution-agent/capability-invocation-contract.js +52 -0
- package/dist/src/runtime/steps/execution-agent/contracts.d.ts +5 -2
- package/dist/src/runtime/steps/execution-agent/format.js +19 -6
- package/dist/src/runtime/steps/execution-agent/input.js +8 -12
- package/dist/src/runtime/steps/execution-agent/parser.js +25 -19
- package/dist/src/runtime/steps/execution-agent/prompt.js +6 -4
- package/dist/src/runtime/steps/execution-agent/reconsideration-context.d.ts +3 -0
- package/dist/src/runtime/steps/execution-agent/reconsideration-context.js +76 -0
- package/dist/src/runtime/steps/execution-agent/refinement-prompt.js +4 -4
- package/dist/src/runtime/steps/execution-agent/refinement-reconsideration.d.ts +3 -0
- package/dist/src/runtime/steps/execution-agent/refinement-reconsideration.js +25 -0
- package/dist/src/runtime/steps/execution-agent/refinement.d.ts +4 -7
- package/dist/src/runtime/steps/execution-agent/refinement.js +24 -35
- package/dist/src/runtime/steps/execution-agent/response-input.d.ts +2 -0
- package/dist/src/runtime/steps/execution-agent/response-input.js +22 -6
- package/dist/src/runtime/steps/execution-agent/response-prompt.d.ts +1 -1
- package/dist/src/runtime/steps/execution-agent/response-prompt.js +8 -3
- package/dist/src/runtime/steps/execution-agent/response-run.d.ts +6 -0
- package/dist/src/runtime/steps/execution-agent/response-run.js +40 -10
- package/dist/src/runtime/steps/execution-agent/run.js +6 -6
- package/dist/src/runtime/steps/execution-agent/state-context.d.ts +4 -1
- package/dist/src/runtime/steps/execution-agent/state-context.js +40 -23
- package/dist/src/runtime/steps/planner-decision/capability-catalog-context.d.ts +14 -0
- package/dist/src/runtime/steps/planner-decision/capability-catalog-context.js +87 -0
- package/dist/src/runtime/steps/planner-decision/contracts.d.ts +3 -5
- package/dist/src/runtime/steps/planner-decision/contracts.js +3 -3
- package/dist/src/runtime/steps/planner-decision/format.d.ts +3 -2
- package/dist/src/runtime/steps/planner-decision/format.js +73 -76
- package/dist/src/runtime/steps/planner-decision/input.d.ts +4 -3
- package/dist/src/runtime/steps/planner-decision/input.js +10 -7
- package/dist/src/runtime/steps/planner-decision/parser.d.ts +3 -2
- package/dist/src/runtime/steps/planner-decision/parser.js +10 -19
- package/dist/src/runtime/steps/planner-decision/plan-parser.js +18 -12
- package/dist/src/runtime/steps/planner-decision/prompt.js +33 -28
- package/dist/src/runtime/steps/planner-decision/resume.d.ts +1 -1
- package/dist/src/runtime/steps/planner-decision/resume.js +38 -1
- package/dist/src/runtime/steps/planner-decision/run.d.ts +3 -2
- package/dist/src/runtime/steps/reviewer-decision/audit-coverage.d.ts +10 -0
- package/dist/src/runtime/steps/reviewer-decision/audit-coverage.js +186 -0
- package/dist/src/runtime/steps/reviewer-decision/contracts.d.ts +3 -8
- package/dist/src/runtime/steps/reviewer-decision/contracts.js +12 -6
- package/dist/src/runtime/steps/reviewer-decision/delegated-context.d.ts +24 -0
- package/dist/src/runtime/steps/reviewer-decision/delegated-context.js +70 -0
- package/dist/src/runtime/steps/reviewer-decision/diagnostics.js +1 -1
- package/dist/src/runtime/steps/reviewer-decision/format.js +37 -24
- package/dist/src/runtime/steps/reviewer-decision/input.js +1 -1
- package/dist/src/runtime/steps/reviewer-decision/model-context.d.ts +4 -3
- package/dist/src/runtime/steps/reviewer-decision/model-context.js +92 -10
- package/dist/src/runtime/steps/reviewer-decision/parser.js +19 -1
- package/dist/src/runtime/steps/reviewer-decision/projection.js +42 -68
- package/dist/src/runtime/steps/reviewer-decision/prompt.js +10 -5
- package/dist/src/runtime/steps/reviewer-decision/run.js +12 -3
- package/dist/src/runtime/steps/reviewer-decision/verification-coverage.d.ts +14 -0
- package/dist/src/runtime/steps/reviewer-decision/verification-coverage.js +52 -0
- package/dist/src/runtime/steps/supervisor-decision/capability-brief.d.ts +14 -0
- package/dist/src/runtime/steps/supervisor-decision/capability-brief.js +38 -0
- package/dist/src/runtime/steps/supervisor-decision/contracts.d.ts +7 -3
- package/dist/src/runtime/steps/supervisor-decision/diagnostics.d.ts +2 -0
- package/dist/src/runtime/steps/supervisor-decision/diagnostics.js +8 -2
- package/dist/src/runtime/steps/supervisor-decision/format.js +32 -20
- package/dist/src/runtime/steps/supervisor-decision/input.d.ts +4 -1
- package/dist/src/runtime/steps/supervisor-decision/input.js +19 -1
- package/dist/src/runtime/steps/supervisor-decision/parser.js +62 -59
- package/dist/src/runtime/steps/supervisor-decision/prompt.js +6 -7
- package/dist/src/runtime/steps/supervisor-decision/resume.js +47 -1
- package/dist/src/runtime/steps/supervisor-decision/run.js +10 -0
- package/dist/src/runtime/steps/supervisor-decision/working-directory.js +2 -1
- package/dist/src/runtime/steps/supervisor-response/index.d.ts +1 -1
- package/dist/src/runtime/steps/supervisor-response/index.js +1 -1
- package/dist/src/runtime/steps/supervisor-response/input.d.ts +13 -5
- package/dist/src/runtime/steps/supervisor-response/input.js +27 -8
- package/dist/src/runtime/steps/supervisor-response/memory-authoring.d.ts +10 -0
- package/dist/src/runtime/steps/supervisor-response/memory-authoring.js +125 -0
- package/dist/src/runtime/steps/supervisor-response/prompt.d.ts +4 -0
- package/dist/src/runtime/steps/supervisor-response/prompt.js +19 -0
- package/dist/src/runtime/steps/supervisor-response/run.d.ts +8 -0
- package/dist/src/runtime/steps/supervisor-response/run.js +46 -17
- package/dist/src/runtime/steps/worker-decision/contracts.d.ts +10 -2
- package/dist/src/runtime/steps/worker-decision/contracts.js +3 -0
- package/dist/src/runtime/steps/worker-decision/format.d.ts +4 -0
- package/dist/src/runtime/steps/worker-decision/format.js +97 -22
- package/dist/src/runtime/steps/worker-decision/input/action-policy.d.ts +9 -0
- package/dist/src/runtime/steps/worker-decision/input/action-policy.js +15 -0
- package/dist/src/runtime/steps/worker-decision/input/canonical-state.d.ts +2 -2
- package/dist/src/runtime/steps/worker-decision/input/canonical-state.js +27 -8
- package/dist/src/runtime/steps/worker-decision/input/capability-selection.js +44 -3
- package/dist/src/runtime/steps/worker-decision/input/contract.d.ts +1 -0
- package/dist/src/runtime/steps/worker-decision/input/contract.js +12 -6
- package/dist/src/runtime/steps/worker-decision/input/diagnostic-projection.js +16 -7
- package/dist/src/runtime/steps/worker-decision/input/prompt-context.d.ts +1 -0
- package/dist/src/runtime/steps/worker-decision/input/prompt-context.js +13 -7
- package/dist/src/runtime/steps/worker-decision/input/reference-context.js +53 -15
- package/dist/src/runtime/steps/worker-decision/input/session.js +2 -1
- package/dist/src/runtime/steps/worker-decision/input/types.d.ts +8 -2
- package/dist/src/runtime/steps/worker-decision/input.d.ts +3 -2
- package/dist/src/runtime/steps/worker-decision/input.js +2 -2
- package/dist/src/runtime/steps/worker-decision/parser/accepted-decision.d.ts +3 -0
- package/dist/src/runtime/steps/worker-decision/parser/accepted-decision.js +70 -0
- package/dist/src/runtime/steps/worker-decision/parser/action-validation.d.ts +4 -0
- package/dist/src/runtime/steps/worker-decision/parser/action-validation.js +55 -0
- package/dist/src/runtime/steps/worker-decision/parser/capability-batch-validation.d.ts +3 -0
- package/dist/src/runtime/steps/worker-decision/parser/capability-batch-validation.js +135 -0
- package/dist/src/runtime/steps/worker-decision/parser/capability-controls-validation.d.ts +6 -0
- package/dist/src/runtime/steps/worker-decision/parser/capability-controls-validation.js +132 -0
- package/dist/src/runtime/steps/worker-decision/parser/capability-invocation-validation.d.ts +4 -0
- package/dist/src/runtime/steps/worker-decision/parser/capability-invocation-validation.js +104 -0
- package/dist/src/runtime/steps/worker-decision/parser/decision-shape-validation.d.ts +4 -0
- package/dist/src/runtime/steps/worker-decision/parser/decision-shape-validation.js +28 -0
- package/dist/src/runtime/steps/worker-decision/parser/pending-capability-selection-validation.d.ts +4 -0
- package/dist/src/runtime/steps/worker-decision/parser/pending-capability-selection-validation.js +105 -0
- package/dist/src/runtime/steps/worker-decision/parser/validation-contract.d.ts +50 -0
- package/dist/src/runtime/steps/worker-decision/parser/validation-contract.js +19 -0
- package/dist/src/runtime/steps/worker-decision/parser.d.ts +5 -1
- package/dist/src/runtime/steps/worker-decision/parser.js +32 -426
- package/dist/src/runtime/steps/worker-decision/payload-dependency-results.d.ts +8 -0
- package/dist/src/runtime/steps/worker-decision/payload-dependency-results.js +19 -0
- package/dist/src/runtime/steps/worker-decision/prompt.d.ts +3 -0
- package/dist/src/runtime/steps/worker-decision/prompt.js +63 -26
- package/dist/src/runtime/steps/worker-decision/result-author.js +28 -11
- package/dist/src/runtime/steps/worker-decision/run.js +99 -21
- package/dist/src/runtime/validation/strict-record.d.ts +2 -0
- package/dist/src/runtime/validation/strict-record.js +12 -0
- package/dist/src/shared/model-step-registry-data.json +9 -0
- package/dist/src/shared/model-step-registry.d.ts +9 -0
- package/dist/src/shared/model-step-registry.generated.d.ts +9 -0
- package/dist/src/shared/model-step-registry.generated.js +9 -0
- package/dist/src/web-ui/app/ARCHITECTURE.md +20 -7
- package/dist/src/web-ui/app/app.js +62 -18
- package/dist/src/web-ui/app/components/composer-context-window.d.ts +25 -0
- package/dist/src/web-ui/app/components/composer-context-window.js +155 -0
- package/dist/src/web-ui/app/components/composer-plan.d.ts +9 -0
- package/dist/src/web-ui/app/components/composer-plan.js +128 -0
- package/dist/src/web-ui/app/components/config-workspace/config-model.js +320 -0
- package/dist/src/web-ui/app/components/config-workspace/dashboard-rendering.js +155 -0
- package/dist/src/web-ui/app/components/config-workspace/field-rendering.js +278 -0
- package/dist/src/web-ui/app/components/config-workspace/model-rendering.js +251 -0
- package/dist/src/web-ui/app/components/config-workspace/step-rendering.js +145 -0
- package/dist/src/web-ui/app/components/config-workspace/workspace-events.js +271 -0
- package/dist/src/web-ui/app/components/config-workspace/workspace-mutations.js +195 -0
- package/dist/src/web-ui/app/components/config-workspace/workspace-persistence.js +247 -0
- package/dist/src/web-ui/app/components/config-workspace/workspace-view.js +299 -0
- package/dist/src/web-ui/app/components/config-workspace.js +179 -866
- package/dist/src/web-ui/app/components/conversation-activity.d.ts +12 -7
- package/dist/src/web-ui/app/components/conversation-activity.js +64 -157
- package/dist/src/web-ui/app/components/conversation-role-cards.d.ts +23 -0
- package/dist/src/web-ui/app/components/conversation-role-cards.js +181 -0
- package/dist/src/web-ui/app/components/conversation-sidebar-layout.js +12 -0
- package/dist/src/web-ui/app/components/conversation-sources.d.ts +7 -0
- package/dist/src/web-ui/app/components/conversation-sources.js +182 -0
- package/dist/src/web-ui/app/components/conversation-view.js +34 -6
- package/dist/src/web-ui/app/components/long-term-memory/icons.js +16 -0
- package/dist/src/web-ui/app/components/long-term-memory/manager.js +192 -0
- package/dist/src/web-ui/app/components/long-term-memory/record-editor.d.ts +9 -0
- package/dist/src/web-ui/app/components/long-term-memory/record-editor.js +62 -0
- package/dist/src/web-ui/app/components/long-term-memory/record-list.d.ts +5 -0
- package/dist/src/web-ui/app/components/long-term-memory/record-list.js +97 -0
- package/dist/src/web-ui/app/components/long-term-memory/view-model.d.ts +29 -0
- package/dist/src/web-ui/app/components/long-term-memory/view-model.js +69 -0
- package/dist/src/web-ui/app/components/long-term-memory-setup.js +334 -0
- package/dist/src/web-ui/app/components/model-selector.js +4 -1
- package/dist/src/web-ui/app/components/operations-section.js +46 -0
- package/dist/src/web-ui/app/components/runtime-setup-guide.d.ts +39 -0
- package/dist/src/web-ui/app/components/tool-approval-card.d.ts +18 -0
- package/dist/src/web-ui/app/components/workspace-shell.js +134 -85
- package/dist/src/web-ui/app/controllers/app-event-bindings.js +43 -6
- package/dist/src/web-ui/app/controllers/composer-attachments-controller.d.ts +92 -0
- package/dist/src/web-ui/app/controllers/composer-queue-controller.d.ts +109 -0
- package/dist/src/web-ui/app/controllers/composer-submit-controller.d.ts +77 -0
- package/dist/src/web-ui/app/controllers/conversation-session-controller.d.ts +149 -0
- package/dist/src/web-ui/app/controllers/conversation-session-controller.js +43 -3
- package/dist/src/web-ui/app/controllers/long-term-memory/controller.d.ts +87 -0
- package/dist/src/web-ui/app/controllers/long-term-memory/controller.js +302 -0
- package/dist/src/web-ui/app/controllers/long-term-memory/policy.d.ts +14 -0
- package/dist/src/web-ui/app/controllers/long-term-memory/policy.js +61 -0
- package/dist/src/web-ui/app/controllers/long-term-memory/state.js +85 -0
- package/dist/src/web-ui/app/controllers/operations-controller.d.ts +25 -0
- package/dist/src/web-ui/app/controllers/realtime-event-controller.d.ts +58 -0
- package/dist/src/web-ui/app/controllers/realtime-event-controller.js +55 -90
- package/dist/src/web-ui/app/controllers/runtime-onboarding-controller.d.ts +32 -0
- package/dist/src/web-ui/app/controllers/runtime-selection-controller.d.ts +177 -0
- package/dist/src/web-ui/app/controllers/runtime-selection-controller.js +80 -11
- package/dist/src/web-ui/app/controllers/session-controller.js +17 -12
- package/dist/src/web-ui/app/controllers/tool-approval-controller.d.ts +28 -0
- package/dist/src/web-ui/app/index.html +221 -224
- package/dist/src/web-ui/app/lib/composer-plan-model.d.ts +32 -0
- package/dist/src/web-ui/app/lib/composer-plan-model.js +108 -0
- package/dist/src/web-ui/app/lib/conversation-role-model.d.ts +19 -0
- package/dist/src/web-ui/app/lib/conversation-role-model.js +193 -0
- package/dist/src/web-ui/app/lib/event-presentation.js +30 -9
- package/dist/src/web-ui/app/lib/source-url-policy.d.ts +2 -0
- package/dist/src/web-ui/app/lib/source-url-policy.js +31 -0
- package/dist/src/web-ui/app/lib/task-progress.d.ts +53 -0
- package/dist/src/web-ui/app/lib/task-progress.js +233 -0
- package/dist/src/web-ui/app/lib/tool-invocation-count.d.ts +5 -0
- package/dist/src/web-ui/app/lib/tool-invocation-count.js +21 -0
- package/dist/src/web-ui/app/lib/web-source-event.d.ts +8 -0
- package/dist/src/web-ui/app/lib/web-source-event.js +21 -0
- package/dist/src/web-ui/app/lib/web-sources.d.ts +36 -0
- package/dist/src/web-ui/app/lib/web-sources.js +177 -0
- package/dist/src/web-ui/app/services/runtime-web-client/memory.js +127 -0
- package/dist/src/web-ui/app/services/runtime-web-client.d.ts +84 -0
- package/dist/src/web-ui/app/services/runtime-web-client.js +27 -1
- package/dist/src/web-ui/app/styles/00-tokens-base.css +15 -3
- package/dist/src/web-ui/app/styles/10-shell-sessions.css +24 -34
- package/dist/src/web-ui/app/styles/12-conversation-sidebar.css +93 -0
- package/dist/src/web-ui/app/styles/20-chat-composer.css +55 -472
- package/dist/src/web-ui/app/styles/21-composer-controls.css +368 -0
- package/dist/src/web-ui/app/styles/22-composer-context-window.css +90 -0
- package/dist/src/web-ui/app/styles/23-composer-plan.css +171 -0
- package/dist/src/web-ui/app/styles/24-conversation-role-cards.css +205 -0
- package/dist/src/web-ui/app/styles/25-conversation-sources.css +141 -0
- package/dist/src/web-ui/app/styles/30-inspector-config.css +142 -1602
- package/dist/src/web-ui/app/styles/35-memory-onboarding.css +153 -0
- package/dist/src/web-ui/app/styles/36-memory-management.css +419 -0
- package/dist/src/web-ui/app/styles/37-config-operations.css +197 -0
- package/dist/src/web-ui/app/styles/40-config-workspace.css +992 -0
- package/dist/src/web-ui/app/styles/90-responsive.css +199 -101
- package/dist/src/web-ui/app/styles/foundation.css +2 -2
- package/dist/src/web-ui/app/styles.css +10 -0
- package/dist/src/web-ui/app/ui-behavior.d.ts +1 -1
- package/dist/src/web-ui/app/ui-behavior.js +1 -1
- package/dist/src/web-ui/config-dashboard-backend.js +9 -1
- package/dist/src/web-ui/local-runtime/api-router.d.ts +4 -2
- package/dist/src/web-ui/local-runtime/api-router.js +33 -0
- package/dist/src/web-ui/local-runtime/contracts.d.ts +5 -0
- package/dist/src/web-ui/local-runtime/memory-management-input.d.ts +12 -0
- package/dist/src/web-ui/local-runtime/memory-management-input.js +68 -0
- package/dist/src/web-ui/local-runtime/memory-management-response.d.ts +17 -0
- package/dist/src/web-ui/local-runtime/memory-management-response.js +47 -0
- package/dist/src/web-ui/local-runtime/memory-management-routes.d.ts +24 -0
- package/dist/src/web-ui/local-runtime/memory-management-routes.js +128 -0
- package/dist/src/web-ui/local-runtime/memory-onboarding-routes.d.ts +17 -0
- package/dist/src/web-ui/local-runtime/memory-onboarding-routes.js +81 -0
- package/dist/src/web-ui/local-runtime/request-abort.d.ts +7 -0
- package/dist/src/web-ui/local-runtime/request-abort.js +19 -0
- package/dist/src/web-ui/local-runtime-backend.js +10 -3
- package/dist/src/web-ui/server.d.ts +2 -0
- package/dist/src/web-ui/server.js +3 -0
- package/docs/configuration.md +144 -54
- package/docs/installation.md +28 -4
- package/docs/known-limitations.md +32 -0
- package/docs/long-term-memory.md +181 -0
- package/docs/plugins.md +28 -13
- package/docs/publishing.md +52 -25
- package/docs/runtime-invariant-coverage.md +18 -17
- package/docs/runtime-library.md +16 -1
- package/docs/runtime-prompt-policy-contracts.md +39 -19
- package/docs/troubleshooting.md +21 -0
- package/examples/models/default.config.json +1 -0
- package/examples/request-runner.config.example.json +16 -22
- package/examples/runtime.config.example.json +4 -0
- package/methodologies/memory-informed-response.md +15 -0
- package/methodologies/response-ux.md +17 -0
- package/package.json +11 -4
- package/plugins/capability-brief/source/index.ts +5 -48
- package/plugins/capability-brief/src/index.cjs +46 -33
- package/plugins/exec/source/handlers.ts +65 -5
- package/plugins/exec/src/index.cjs +39 -3
- package/plugins/filesystem/plugin.json +1 -0
- package/plugins/system-probe/plugin.json +1 -0
- package/plugins/web/README.md +125 -0
- package/plugins/web/plugin.json +1 -1
- package/plugins/web/skills/web_fetch_skill/SKILL.md +2 -2
- package/plugins/web/skills/web_search_skill/SKILL.md +8 -4
- package/plugins/web/source/errors.ts +5 -1
- package/plugins/web/source/fetch-presentation.ts +61 -0
- package/plugins/web/source/fetch-service.ts +2 -31
- package/plugins/web/source/light/config.ts +196 -0
- package/plugins/web/source/light/crawl/origin-gate.ts +134 -0
- package/plugins/web/source/light/crawl/robots-cache.ts +71 -0
- package/plugins/web/source/light/crawl/robots-parser.ts +132 -0
- package/plugins/web/source/light/crawl/robots-policy.ts +154 -0
- package/plugins/web/source/light/crawl/session-budget.ts +141 -0
- package/plugins/web/source/light/crawl/transport.ts +216 -0
- package/plugins/web/source/light/discovery/candidate-values.ts +63 -0
- package/plugins/web/source/light/discovery/feed-document.ts +127 -0
- package/plugins/web/source/light/discovery/html-links.ts +80 -0
- package/plugins/web/source/light/discovery/html-robots-directives.ts +29 -0
- package/plugins/web/source/light/discovery/markup-tree.ts +145 -0
- package/plugins/web/source/light/discovery/origin-dates.ts +71 -0
- package/plugins/web/source/light/discovery/sitemap-document.ts +63 -0
- package/plugins/web/source/light/documents/cache-policy.ts +28 -0
- package/plugins/web/source/light/documents/document-cache.ts +99 -0
- package/plugins/web/source/light/documents/document-charset.ts +89 -0
- package/plugins/web/source/light/documents/document-contract.ts +20 -0
- package/plugins/web/source/light/documents/document-reader.ts +75 -0
- package/plugins/web/source/light/documents/extract-document.ts +124 -0
- package/plugins/web/source/light/documents/http-cache-freshness.ts +68 -0
- package/plugins/web/source/light/documents/response-decoding.ts +120 -0
- package/plugins/web/source/light/ranking/document-ranking.ts +114 -0
- package/plugins/web/source/light/ranking/query-normalization.ts +69 -0
- package/plugins/web/source/light/search-collection.ts +136 -0
- package/plugins/web/source/light/search-frontier.ts +246 -0
- package/plugins/web/source/light/search-metadata.ts +84 -0
- package/plugins/web/source/light/search-service.ts +154 -0
- package/plugins/web/source/light/search-unavailable.ts +33 -0
- package/plugins/web/source/light/sources/catalog.ts +312 -0
- package/plugins/web/source/light/sources/source-definition.ts +9 -0
- package/plugins/web/source/light/sources/source-selection.ts +35 -0
- package/plugins/web/source/plugin.ts +70 -56
- package/plugins/web/source/public-http.ts +10 -1
- package/plugins/web/source/search-presentation.ts +63 -63
- package/plugins/web/source/search-service-selector.ts +31 -0
- package/plugins/web/source/search-service.ts +6 -0
- package/plugins/web/source/search-source-presentation.ts +76 -0
- package/plugins/web/source/search-types.ts +4 -0
- package/plugins/web/source/source-output-receipts.ts +267 -0
- package/plugins/web/source/source-receipt-budget.ts +51 -0
- package/plugins/web/source/source-receipt-contract.ts +18 -0
- package/plugins/web/src/index.cjs +3214 -288
- package/runtime.config.schema.json +30 -0
- package/src/runtime/README.md +107 -47
- package/dist/src/model-gateway/structured-output/budget.d.ts +0 -7
- package/dist/src/model-gateway/structured-output/budget.js +0 -20
- package/dist/src/model-gateway/structured-output/schema-character-estimator.d.ts +0 -1
- package/dist/src/model-gateway/structured-output/schema-character-estimator.js +0 -211
- package/dist/src/model-gateway/structured-output-budget.d.ts +0 -1
- package/dist/src/model-gateway/structured-output-budget.js +0 -1
|
@@ -1,54 +1,4 @@
|
|
|
1
|
-
/*
|
|
2
|
-
|
|
3
|
-
.logs-view {
|
|
4
|
-
font-family: var(--font-mono);
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
.app-shell.config-workspace {
|
|
8
|
-
grid-template-columns: 1fr;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
.app-shell.config-workspace .sessions-panel,
|
|
12
|
-
.app-shell.config-workspace .chat-panel {
|
|
13
|
-
display: none;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
.app-shell.config-workspace .inspector-panel {
|
|
17
|
-
grid-column: 1 / -1;
|
|
18
|
-
width: 100vw;
|
|
19
|
-
height: 100vh;
|
|
20
|
-
border-left: 0;
|
|
21
|
-
padding: 18px clamp(16px, 3vw, 36px);
|
|
22
|
-
overflow: auto;
|
|
23
|
-
background:
|
|
24
|
-
linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 220px),
|
|
25
|
-
var(--bg);
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
.app-shell.config-workspace .inspector-tabs {
|
|
29
|
-
position: sticky;
|
|
30
|
-
top: 0;
|
|
31
|
-
z-index: 4;
|
|
32
|
-
display: grid;
|
|
33
|
-
grid-template-columns: repeat(6, minmax(0, 1fr));
|
|
34
|
-
max-width: 1180px;
|
|
35
|
-
margin: 0 auto;
|
|
36
|
-
padding: 8px;
|
|
37
|
-
border: 1px solid var(--line);
|
|
38
|
-
border-radius: 10px;
|
|
39
|
-
background: rgba(13, 15, 20, 0.92);
|
|
40
|
-
backdrop-filter: blur(14px);
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
.app-shell.config-workspace .tab-page.active {
|
|
44
|
-
width: min(1180px, 100%);
|
|
45
|
-
margin: 0 auto;
|
|
46
|
-
padding-top: 18px;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.app-shell.config-workspace #configStatus:empty {
|
|
50
|
-
display: none;
|
|
51
|
-
}
|
|
1
|
+
/* Inspector and shared workspace foundations ------------------------------ */
|
|
52
2
|
|
|
53
3
|
.inspector-tabs {
|
|
54
4
|
display: grid;
|
|
@@ -73,7 +23,7 @@
|
|
|
73
23
|
color: var(--muted);
|
|
74
24
|
text-overflow: ellipsis;
|
|
75
25
|
white-space: nowrap;
|
|
76
|
-
font-size:
|
|
26
|
+
font-size: var(--font-size-sm);
|
|
77
27
|
font-weight: 650;
|
|
78
28
|
box-shadow: none;
|
|
79
29
|
}
|
|
@@ -128,1447 +78,202 @@
|
|
|
128
78
|
justify-content: space-between;
|
|
129
79
|
gap: 10px;
|
|
130
80
|
color: var(--muted);
|
|
131
|
-
font-size:
|
|
81
|
+
font-size: var(--font-size-sm);
|
|
132
82
|
font-weight: 780;
|
|
133
83
|
text-transform: uppercase;
|
|
134
84
|
}
|
|
135
|
-
|
|
136
|
-
.task-progress-topline strong {
|
|
137
|
-
color: var(--accent-strong);
|
|
138
|
-
font-size:
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
.task-progress-summary {
|
|
142
|
-
color: var(--text-strong);
|
|
143
|
-
font-size: 13px;
|
|
144
|
-
font-weight: 710;
|
|
145
|
-
line-height: 1.35;
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
.task-progress-meter {
|
|
149
|
-
height: 6px;
|
|
150
|
-
overflow: hidden;
|
|
151
|
-
border-radius: 6px;
|
|
152
|
-
background: rgba(255, 255, 255, 0.08);
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
.task-progress-meter span {
|
|
156
|
-
display: block;
|
|
157
|
-
height: 100%;
|
|
158
|
-
border-radius: inherit;
|
|
159
|
-
background: linear-gradient(90deg, #0a84ff, #32d74b);
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
.task-progress-count {
|
|
163
|
-
color: var(--muted);
|
|
164
|
-
font-size: 11.5px;
|
|
165
|
-
font-weight: 650;
|
|
166
|
-
}
|
|
167
|
-
|
|
168
|
-
.task-progress-items {
|
|
169
|
-
display: grid;
|
|
170
|
-
gap: 7px;
|
|
171
|
-
}
|
|
172
|
-
|
|
173
|
-
.task-progress-item {
|
|
174
|
-
display: grid;
|
|
175
|
-
grid-template-columns: 10px minmax(0, 1fr);
|
|
176
|
-
gap: 8px;
|
|
177
|
-
align-items: start;
|
|
178
|
-
color: var(--muted);
|
|
179
|
-
font-size: 12px;
|
|
180
|
-
line-height: 1.3;
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
.task-progress-title {
|
|
184
|
-
overflow-wrap: anywhere;
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
.task-status-dot {
|
|
188
|
-
width: 8px;
|
|
189
|
-
height: 8px;
|
|
190
|
-
margin-top: 4px;
|
|
191
|
-
border: 1px solid rgba(255, 255, 255, 0.16);
|
|
192
|
-
border-radius: 50%;
|
|
193
|
-
background: rgba(255, 255, 255, 0.16);
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
.task-progress-item.active .task-status-dot {
|
|
197
|
-
background: var(--accent);
|
|
198
|
-
box-shadow: 0 0 0 4px rgba(10, 132, 255, 0.13);
|
|
199
|
-
}
|
|
200
|
-
|
|
201
|
-
.task-progress-item.done {
|
|
202
|
-
color: var(--text);
|
|
203
|
-
}
|
|
204
|
-
|
|
205
|
-
.task-progress-item.done .task-status-dot {
|
|
206
|
-
background: var(--green);
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
.task-progress-item.failed .task-status-dot {
|
|
210
|
-
background: var(--danger);
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
.task-progress-item.muted {
|
|
214
|
-
opacity: 0.58;
|
|
215
|
-
}
|
|
216
|
-
|
|
217
|
-
.event-timeline {
|
|
218
|
-
display: grid;
|
|
219
|
-
gap: 0;
|
|
220
|
-
padding: 2px 0 4px;
|
|
221
|
-
}
|
|
222
|
-
|
|
223
|
-
.event-row {
|
|
224
|
-
display: grid;
|
|
225
|
-
grid-template-columns: 18px minmax(0, 1fr);
|
|
226
|
-
gap: 8px;
|
|
227
|
-
min-height: 34px;
|
|
228
|
-
}
|
|
229
|
-
|
|
230
|
-
.event-track {
|
|
231
|
-
display: grid;
|
|
232
|
-
grid-template-rows: 1fr 8px 1fr;
|
|
233
|
-
justify-items: center;
|
|
234
|
-
}
|
|
235
|
-
|
|
236
|
-
.event-line {
|
|
237
|
-
width: 1px;
|
|
238
|
-
background: rgba(255, 255, 255, 0.13);
|
|
239
|
-
}
|
|
240
|
-
|
|
241
|
-
.event-row.first .event-line-before,
|
|
242
|
-
.event-row.last .event-line-after {
|
|
243
|
-
opacity: 0;
|
|
244
|
-
}
|
|
245
|
-
|
|
246
|
-
.event-dot {
|
|
247
|
-
width: 8px;
|
|
248
|
-
height: 8px;
|
|
249
|
-
border-radius: 50%;
|
|
250
|
-
background: #8e8e93;
|
|
251
|
-
box-shadow: 0 0 0 3px rgba(142, 142, 147, 0.12);
|
|
252
|
-
}
|
|
253
|
-
|
|
254
|
-
.event-row.done .event-dot {
|
|
255
|
-
background: var(--green);
|
|
256
|
-
box-shadow: 0 0 0 3px rgba(50, 215, 75, 0.12);
|
|
257
|
-
}
|
|
258
|
-
|
|
259
|
-
.event-row.failed .event-dot {
|
|
260
|
-
background: var(--danger);
|
|
261
|
-
box-shadow: 0 0 0 3px rgba(255, 69, 58, 0.12);
|
|
262
|
-
}
|
|
263
|
-
|
|
264
|
-
.event-row.thinking .event-dot {
|
|
265
|
-
background: var(--amber);
|
|
266
|
-
box-shadow: 0 0 0 3px rgba(255, 214, 10, 0.12);
|
|
267
|
-
}
|
|
268
|
-
|
|
269
|
-
.event-content {
|
|
270
|
-
min-width: 0;
|
|
271
|
-
padding: 2px 0 9px;
|
|
272
|
-
}
|
|
273
|
-
|
|
274
|
-
.event-name {
|
|
275
|
-
overflow: hidden;
|
|
276
|
-
color: var(--text-strong);
|
|
277
|
-
text-overflow: ellipsis;
|
|
278
|
-
white-space: nowrap;
|
|
279
|
-
font-size: 12.5px;
|
|
280
|
-
font-weight: 700;
|
|
281
|
-
}
|
|
282
|
-
|
|
283
|
-
.event-title-row {
|
|
284
|
-
display: grid;
|
|
285
|
-
grid-template-columns: minmax(0, 1fr) auto;
|
|
286
|
-
gap: 8px;
|
|
287
|
-
align-items: center;
|
|
288
|
-
}
|
|
289
|
-
|
|
290
|
-
.event-count {
|
|
291
|
-
min-width: 30px;
|
|
292
|
-
padding: 2px 7px;
|
|
293
|
-
border: 1px solid rgba(255, 255, 255, 0.11);
|
|
294
|
-
border-radius: 7px;
|
|
295
|
-
background: rgba(255, 255, 255, 0.075);
|
|
296
|
-
color: var(--muted);
|
|
297
|
-
text-align: center;
|
|
298
|
-
font-size: 10.5px;
|
|
299
|
-
font-weight: 760;
|
|
300
|
-
line-height: 1.35;
|
|
301
|
-
}
|
|
302
|
-
|
|
303
|
-
.event-meta {
|
|
304
|
-
margin-top: 4px;
|
|
305
|
-
color: var(--muted);
|
|
306
|
-
font-size: 10.5px;
|
|
307
|
-
line-height: 1.35;
|
|
308
|
-
}
|
|
309
|
-
|
|
310
|
-
.runtime-card {
|
|
311
|
-
padding: 12px;
|
|
312
|
-
overflow: hidden;
|
|
313
|
-
line-height: 1.5;
|
|
314
|
-
}
|
|
315
|
-
|
|
316
|
-
.runtime-grid {
|
|
317
|
-
display: grid;
|
|
318
|
-
gap: 10px;
|
|
319
|
-
}
|
|
320
|
-
|
|
321
|
-
.runtime-row {
|
|
322
|
-
display: grid;
|
|
323
|
-
grid-template-columns: 88px minmax(0, 1fr);
|
|
324
|
-
gap: 10px;
|
|
325
|
-
min-width: 0;
|
|
326
|
-
}
|
|
327
|
-
|
|
328
|
-
.runtime-row span:first-child {
|
|
329
|
-
color: var(--muted);
|
|
330
|
-
}
|
|
331
|
-
|
|
332
|
-
.runtime-row strong {
|
|
333
|
-
min-width: 0;
|
|
334
|
-
overflow-wrap: anywhere;
|
|
335
|
-
}
|
|
336
|
-
|
|
337
|
-
.logs-view,
|
|
338
|
-
.config-view {
|
|
339
|
-
flex: 1;
|
|
340
|
-
min-height: 240px;
|
|
341
|
-
margin: 0;
|
|
342
|
-
padding: 12px;
|
|
343
|
-
overflow: auto;
|
|
344
|
-
color: #dce3ee;
|
|
345
|
-
font-size: 12px;
|
|
346
|
-
line-height: 1.45;
|
|
347
|
-
white-space: pre-wrap;
|
|
348
|
-
}
|
|
349
|
-
|
|
350
|
-
.config-view {
|
|
351
|
-
min-height: 260px;
|
|
352
|
-
white-space: pre;
|
|
353
|
-
resize: vertical;
|
|
354
|
-
}
|
|
355
|
-
|
|
356
|
-
.config-dashboard {
|
|
357
|
-
display: grid;
|
|
358
|
-
gap: 18px;
|
|
359
|
-
min-width: 0;
|
|
360
|
-
}
|
|
361
|
-
|
|
362
|
-
.config-dashboard-header {
|
|
363
|
-
display: flex;
|
|
364
|
-
align-items: flex-end;
|
|
365
|
-
justify-content: space-between;
|
|
366
|
-
gap: 18px;
|
|
367
|
-
min-width: 0;
|
|
368
|
-
padding: 2px 2px 0;
|
|
369
|
-
}
|
|
370
|
-
|
|
371
|
-
.config-dashboard-header h3 {
|
|
372
|
-
margin: 2px 0 3px;
|
|
373
|
-
color: var(--text-strong);
|
|
374
|
-
font-size: 24px;
|
|
375
|
-
font-weight: 790;
|
|
376
|
-
}
|
|
377
|
-
|
|
378
|
-
.config-dashboard-header span {
|
|
379
|
-
color: var(--muted);
|
|
380
|
-
font-size: 13px;
|
|
381
|
-
}
|
|
382
|
-
|
|
383
|
-
.config-dashboard-context {
|
|
384
|
-
min-width: 0;
|
|
385
|
-
padding-bottom: 4px;
|
|
386
|
-
}
|
|
387
|
-
|
|
388
|
-
.config-dashboard-context code {
|
|
389
|
-
display: block;
|
|
390
|
-
max-width: 420px;
|
|
391
|
-
overflow: hidden;
|
|
392
|
-
padding: 7px 9px;
|
|
393
|
-
border: 1px solid var(--line);
|
|
394
|
-
border-radius: 8px;
|
|
395
|
-
background: rgba(255, 255, 255, 0.04);
|
|
396
|
-
color: #d9e3ef;
|
|
397
|
-
text-overflow: ellipsis;
|
|
398
|
-
white-space: nowrap;
|
|
399
|
-
font-size: 11px;
|
|
400
|
-
}
|
|
401
|
-
|
|
402
|
-
.config-hero {
|
|
403
|
-
display: grid;
|
|
404
|
-
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
405
|
-
gap: 12px;
|
|
406
|
-
}
|
|
407
|
-
|
|
408
|
-
.config-metric {
|
|
409
|
-
min-width: 0;
|
|
410
|
-
padding: 14px 15px;
|
|
411
|
-
border: 1px solid var(--line);
|
|
412
|
-
border-radius: 8px;
|
|
413
|
-
background:
|
|
414
|
-
linear-gradient(
|
|
415
|
-
180deg,
|
|
416
|
-
rgba(255, 255, 255, 0.066),
|
|
417
|
-
rgba(255, 255, 255, 0.032)
|
|
418
|
-
),
|
|
419
|
-
rgba(255, 255, 255, 0.035);
|
|
420
|
-
}
|
|
421
|
-
|
|
422
|
-
.config-metric span {
|
|
423
|
-
display: block;
|
|
424
|
-
color: var(--muted);
|
|
425
|
-
font-size: 10.5px;
|
|
426
|
-
font-weight: 760;
|
|
427
|
-
text-transform: uppercase;
|
|
428
|
-
}
|
|
429
|
-
|
|
430
|
-
.config-metric strong {
|
|
431
|
-
display: block;
|
|
432
|
-
margin-top: 5px;
|
|
433
|
-
overflow: hidden;
|
|
434
|
-
color: var(--text-strong);
|
|
435
|
-
text-overflow: ellipsis;
|
|
436
|
-
white-space: nowrap;
|
|
437
|
-
font-size: 18px;
|
|
438
|
-
}
|
|
439
|
-
|
|
440
|
-
.config-dashboard-grid,
|
|
441
|
-
.config-file-list,
|
|
442
|
-
.config-step-list,
|
|
443
|
-
.config-calibration-grid,
|
|
444
|
-
.config-model-list {
|
|
445
|
-
display: grid;
|
|
446
|
-
gap: 10px;
|
|
447
|
-
min-width: 0;
|
|
448
|
-
}
|
|
449
|
-
|
|
450
|
-
.config-dashboard-grid {
|
|
451
|
-
gap: 14px;
|
|
452
|
-
}
|
|
453
|
-
|
|
454
|
-
.config-dashboard input {
|
|
455
|
-
border: 1px solid var(--line);
|
|
456
|
-
border-radius: 8px;
|
|
457
|
-
background: var(--control-fill);
|
|
458
|
-
color: var(--text);
|
|
459
|
-
font: inherit;
|
|
460
|
-
outline: none;
|
|
461
|
-
box-shadow:
|
|
462
|
-
inset 0 1px 0 rgba(255, 255, 255, 0.055),
|
|
463
|
-
0 1px 1px rgba(0, 0, 0, 0.16);
|
|
464
|
-
}
|
|
465
|
-
|
|
466
|
-
.config-dashboard input:focus {
|
|
467
|
-
border-color: rgba(10, 132, 255, 0.72);
|
|
468
|
-
box-shadow:
|
|
469
|
-
0 0 0 3px rgba(10, 132, 255, 0.18),
|
|
470
|
-
inset 0 1px 0 rgba(255, 255, 255, 0.05);
|
|
471
|
-
}
|
|
472
|
-
|
|
473
|
-
.config-loop-grid {
|
|
474
|
-
display: grid;
|
|
475
|
-
grid-template-columns: minmax(0, 1fr);
|
|
476
|
-
gap: 14px;
|
|
477
|
-
align-items: start;
|
|
478
|
-
min-width: 0;
|
|
479
|
-
}
|
|
480
|
-
|
|
481
|
-
.config-steps-section .config-step-list {
|
|
482
|
-
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
483
|
-
}
|
|
484
|
-
|
|
485
|
-
.config-steps-section .config-step-header,
|
|
486
|
-
.config-steps-section .config-add-row {
|
|
487
|
-
grid-column: 1 / -1;
|
|
488
|
-
}
|
|
489
|
-
|
|
490
|
-
.config-section {
|
|
491
|
-
display: grid;
|
|
492
|
-
gap: 14px;
|
|
493
|
-
min-width: 0;
|
|
494
|
-
padding: 16px;
|
|
495
|
-
border: 1px solid var(--line);
|
|
496
|
-
border-radius: 8px;
|
|
497
|
-
background:
|
|
498
|
-
linear-gradient(
|
|
499
|
-
180deg,
|
|
500
|
-
rgba(255, 255, 255, 0.045),
|
|
501
|
-
rgba(255, 255, 255, 0.022)
|
|
502
|
-
),
|
|
503
|
-
rgba(20, 22, 28, 0.88);
|
|
504
|
-
box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
|
|
505
|
-
}
|
|
506
|
-
|
|
507
|
-
.config-section-header,
|
|
508
|
-
.config-subheader,
|
|
509
|
-
.config-calibration-title {
|
|
510
|
-
display: flex;
|
|
511
|
-
align-items: flex-start;
|
|
512
|
-
justify-content: space-between;
|
|
513
|
-
gap: 10px;
|
|
514
|
-
min-width: 0;
|
|
515
|
-
}
|
|
516
|
-
|
|
517
|
-
.config-section-header h4 {
|
|
518
|
-
margin: 0;
|
|
519
|
-
color: var(--text-strong);
|
|
520
|
-
font-size: 15px;
|
|
521
|
-
font-weight: 780;
|
|
522
|
-
}
|
|
523
|
-
|
|
524
|
-
.config-section-header p {
|
|
525
|
-
margin: 3px 0 0;
|
|
526
|
-
overflow: hidden;
|
|
527
|
-
color: var(--muted);
|
|
528
|
-
text-overflow: ellipsis;
|
|
529
|
-
white-space: nowrap;
|
|
530
|
-
font-size: 11px;
|
|
531
|
-
}
|
|
532
|
-
|
|
533
|
-
.config-file-row,
|
|
534
|
-
.config-step-row {
|
|
535
|
-
display: grid;
|
|
536
|
-
grid-template-columns: minmax(130px, 0.55fr) minmax(180px, 1fr) auto;
|
|
537
|
-
gap: 8px;
|
|
538
|
-
align-items: center;
|
|
539
|
-
min-width: 0;
|
|
540
|
-
padding: 8px;
|
|
541
|
-
border: 1px solid rgba(255, 255, 255, 0.075);
|
|
542
|
-
border-radius: 8px;
|
|
543
|
-
background: rgba(255, 255, 255, 0.032);
|
|
544
|
-
}
|
|
545
|
-
|
|
546
|
-
.config-file-row {
|
|
547
|
-
grid-template-columns: minmax(96px, 0.28fr) minmax(180px, 1fr);
|
|
548
|
-
}
|
|
549
|
-
|
|
550
|
-
.config-file-row span,
|
|
551
|
-
.config-file-row code,
|
|
552
|
-
.config-step-row code,
|
|
553
|
-
.config-calibration-title code,
|
|
554
|
-
.config-model-button span,
|
|
555
|
-
.config-model-button small {
|
|
556
|
-
overflow: hidden;
|
|
557
|
-
text-overflow: ellipsis;
|
|
558
|
-
white-space: nowrap;
|
|
559
|
-
}
|
|
560
|
-
|
|
561
|
-
.config-file-row code,
|
|
562
|
-
.config-step-row code,
|
|
563
|
-
.config-calibration-title code {
|
|
564
|
-
padding: 6px 8px;
|
|
565
|
-
border-radius: 6px;
|
|
566
|
-
background: rgba(255, 255, 255, 0.055);
|
|
567
|
-
color: #d7e3f4;
|
|
568
|
-
font-size: 11px;
|
|
569
|
-
}
|
|
570
|
-
|
|
571
|
-
.config-files-section .config-file-list {
|
|
572
|
-
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
573
|
-
max-height: 146px;
|
|
574
|
-
overflow: auto;
|
|
575
|
-
padding-right: 2px;
|
|
576
|
-
}
|
|
577
|
-
|
|
578
|
-
.config-files-section .config-file-row {
|
|
579
|
-
min-height: 38px;
|
|
580
|
-
padding: 6px 8px;
|
|
581
|
-
}
|
|
582
|
-
|
|
583
|
-
.config-files-section .config-file-row span {
|
|
584
|
-
font-weight: 720;
|
|
585
|
-
}
|
|
586
|
-
|
|
587
|
-
.config-step-header {
|
|
588
|
-
display: grid;
|
|
589
|
-
grid-template-columns: minmax(130px, 0.55fr) minmax(180px, 1fr) 34px;
|
|
590
|
-
gap: 8px;
|
|
591
|
-
padding: 0 8px 2px;
|
|
592
|
-
color: var(--muted-2);
|
|
593
|
-
font-size: 10px;
|
|
594
|
-
font-weight: 780;
|
|
595
|
-
text-transform: uppercase;
|
|
596
|
-
}
|
|
597
|
-
|
|
598
|
-
.config-steps-section .config-step-list {
|
|
599
|
-
gap: 7px;
|
|
600
|
-
}
|
|
601
|
-
|
|
602
|
-
.config-add-row {
|
|
603
|
-
display: grid;
|
|
604
|
-
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
|
|
605
|
-
gap: 8px;
|
|
606
|
-
min-width: 0;
|
|
607
|
-
padding: 10px;
|
|
608
|
-
border: 1px dashed rgba(255, 255, 255, 0.14);
|
|
609
|
-
border-radius: 8px;
|
|
610
|
-
background: rgba(255, 255, 255, 0.025);
|
|
611
|
-
}
|
|
612
|
-
|
|
613
|
-
.config-add-row.compact {
|
|
614
|
-
grid-template-columns: minmax(180px, 1fr) auto;
|
|
615
|
-
width: min(360px, 100%);
|
|
616
|
-
padding: 0;
|
|
617
|
-
border: 0;
|
|
618
|
-
background: transparent;
|
|
619
|
-
}
|
|
620
|
-
|
|
621
|
-
.config-add-row input,
|
|
622
|
-
.config-add-row select,
|
|
623
|
-
.config-step-row select,
|
|
624
|
-
.config-step-row input,
|
|
625
|
-
.config-field-grid input,
|
|
626
|
-
.config-field-grid select,
|
|
627
|
-
.config-calibration-meta input,
|
|
628
|
-
.config-calibration-meta textarea {
|
|
629
|
-
width: 100%;
|
|
630
|
-
min-width: 0;
|
|
631
|
-
min-height: 34px;
|
|
632
|
-
}
|
|
633
|
-
|
|
634
|
-
.config-calibration-meta textarea {
|
|
635
|
-
min-height: 54px;
|
|
636
|
-
padding: 8px 9px;
|
|
637
|
-
resize: vertical;
|
|
638
|
-
line-height: 1.35;
|
|
639
|
-
}
|
|
640
|
-
|
|
641
|
-
.config-step-row button,
|
|
642
|
-
.config-calibration-title button {
|
|
643
|
-
width: 34px;
|
|
644
|
-
min-width: 34px;
|
|
645
|
-
padding: 0;
|
|
646
|
-
color: var(--muted);
|
|
647
|
-
}
|
|
648
|
-
|
|
649
|
-
.config-profile-select-cell {
|
|
650
|
-
display: grid;
|
|
651
|
-
gap: 4px;
|
|
652
|
-
min-width: 0;
|
|
653
|
-
}
|
|
654
|
-
|
|
655
|
-
.config-profile-select-cell small {
|
|
656
|
-
overflow: hidden;
|
|
657
|
-
color: var(--muted-2);
|
|
658
|
-
text-overflow: ellipsis;
|
|
659
|
-
white-space: nowrap;
|
|
660
|
-
font-size: 10.5px;
|
|
661
|
-
}
|
|
662
|
-
|
|
663
|
-
.config-model-layout {
|
|
664
|
-
display: grid;
|
|
665
|
-
grid-template-columns: minmax(240px, 0.32fr) minmax(0, 1fr);
|
|
666
|
-
gap: 16px;
|
|
667
|
-
min-width: 0;
|
|
668
|
-
align-items: start;
|
|
669
|
-
}
|
|
670
|
-
|
|
671
|
-
.config-model-list {
|
|
672
|
-
position: sticky;
|
|
673
|
-
top: 78px;
|
|
674
|
-
align-content: start;
|
|
675
|
-
max-height: min(680px, calc(100vh - 150px));
|
|
676
|
-
overflow: auto;
|
|
677
|
-
padding: 2px 4px 2px 0;
|
|
678
|
-
}
|
|
679
|
-
|
|
680
|
-
.config-model-button {
|
|
681
|
-
display: grid;
|
|
682
|
-
justify-items: start;
|
|
683
|
-
gap: 4px;
|
|
684
|
-
min-height: 54px;
|
|
685
|
-
padding: 10px 12px;
|
|
686
|
-
border-color: rgba(255, 255, 255, 0.085);
|
|
687
|
-
background: rgba(255, 255, 255, 0.035);
|
|
688
|
-
text-align: left;
|
|
689
|
-
}
|
|
690
|
-
|
|
691
|
-
.config-model-button.active {
|
|
692
|
-
border-color: rgba(10, 132, 255, 0.46);
|
|
693
|
-
background:
|
|
694
|
-
linear-gradient(90deg, rgba(10, 132, 255, 0.18), rgba(10, 132, 255, 0.055)),
|
|
695
|
-
rgba(255, 255, 255, 0.045);
|
|
696
|
-
box-shadow: inset 3px 0 0 var(--accent);
|
|
697
|
-
}
|
|
698
|
-
|
|
699
|
-
.config-model-button small {
|
|
700
|
-
color: var(--muted);
|
|
701
|
-
font-size: 11px;
|
|
702
|
-
}
|
|
703
|
-
|
|
704
|
-
.config-model-editor {
|
|
705
|
-
padding: 14px;
|
|
706
|
-
border-color: rgba(255, 255, 255, 0.08);
|
|
707
|
-
background: rgba(255, 255, 255, 0.018);
|
|
708
|
-
box-shadow: none;
|
|
709
|
-
}
|
|
710
|
-
|
|
711
|
-
.config-field-grid {
|
|
712
|
-
display: grid;
|
|
713
|
-
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
714
|
-
gap: 10px;
|
|
715
|
-
min-width: 0;
|
|
716
|
-
}
|
|
717
|
-
|
|
718
|
-
.config-field-grid.model-basics {
|
|
719
|
-
grid-template-columns:
|
|
720
|
-
minmax(130px, 0.9fr) minmax(130px, 0.9fr) minmax(240px, 1.5fr)
|
|
721
|
-
minmax(130px, 0.9fr);
|
|
722
|
-
}
|
|
723
|
-
|
|
724
|
-
.config-calibration-card .config-field-grid {
|
|
725
|
-
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
726
|
-
}
|
|
727
|
-
|
|
728
|
-
.config-field-grid label {
|
|
729
|
-
display: grid;
|
|
730
|
-
gap: 5px;
|
|
731
|
-
min-width: 0;
|
|
732
|
-
color: var(--muted);
|
|
733
|
-
font-size: 11px;
|
|
734
|
-
font-weight: 700;
|
|
735
|
-
}
|
|
736
|
-
|
|
737
|
-
.config-field-grid label span {
|
|
738
|
-
overflow: hidden;
|
|
739
|
-
text-overflow: ellipsis;
|
|
740
|
-
white-space: nowrap;
|
|
741
|
-
}
|
|
742
|
-
|
|
743
|
-
.config-toggle {
|
|
744
|
-
display: flex !important;
|
|
745
|
-
align-items: center;
|
|
746
|
-
gap: 8px;
|
|
747
|
-
min-height: 34px;
|
|
748
|
-
padding: 0 9px;
|
|
749
|
-
border: 1px solid var(--line);
|
|
750
|
-
border-radius: 8px;
|
|
751
|
-
background: var(--control-fill);
|
|
752
|
-
}
|
|
753
|
-
|
|
754
|
-
.config-toggle input {
|
|
755
|
-
width: auto;
|
|
756
|
-
min-height: 0;
|
|
757
|
-
}
|
|
758
|
-
|
|
759
|
-
.config-subheader {
|
|
760
|
-
align-items: center;
|
|
761
|
-
padding-top: 10px;
|
|
762
|
-
border-top: 1px solid rgba(255, 255, 255, 0.07);
|
|
763
|
-
color: var(--muted);
|
|
764
|
-
font-size: 11px;
|
|
765
|
-
font-weight: 780;
|
|
766
|
-
text-transform: uppercase;
|
|
767
|
-
}
|
|
768
|
-
|
|
769
|
-
.config-calibration-card {
|
|
770
|
-
display: grid;
|
|
771
|
-
gap: 0;
|
|
772
|
-
min-width: 0;
|
|
773
|
-
padding: 0;
|
|
774
|
-
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
775
|
-
border-radius: 8px;
|
|
776
|
-
overflow: hidden;
|
|
777
|
-
background:
|
|
778
|
-
linear-gradient(
|
|
779
|
-
180deg,
|
|
780
|
-
rgba(255, 255, 255, 0.032),
|
|
781
|
-
rgba(255, 255, 255, 0.018)
|
|
782
|
-
),
|
|
783
|
-
rgba(15, 17, 22, 0.72);
|
|
784
|
-
}
|
|
785
|
-
|
|
786
|
-
.config-calibration-title {
|
|
787
|
-
align-items: center;
|
|
788
|
-
min-height: 50px;
|
|
789
|
-
padding: 11px 12px;
|
|
790
|
-
border-bottom: 1px solid rgba(255, 255, 255, 0.065);
|
|
791
|
-
background: rgba(255, 255, 255, 0.026);
|
|
792
|
-
}
|
|
793
|
-
|
|
794
|
-
.config-calibration-title > div {
|
|
795
|
-
display: flex;
|
|
796
|
-
align-items: center;
|
|
797
|
-
gap: 8px;
|
|
798
|
-
min-width: 0;
|
|
799
|
-
}
|
|
800
|
-
|
|
801
|
-
.config-calibration-title strong {
|
|
802
|
-
overflow: hidden;
|
|
803
|
-
color: var(--text-strong);
|
|
804
|
-
text-overflow: ellipsis;
|
|
805
|
-
white-space: nowrap;
|
|
806
|
-
font-size: 13px;
|
|
807
|
-
}
|
|
808
|
-
|
|
809
|
-
.config-calibration-title code {
|
|
810
|
-
max-width: calc(100% - 44px);
|
|
811
|
-
padding: 5px 7px;
|
|
812
|
-
border: 1px solid rgba(10, 132, 255, 0.12);
|
|
813
|
-
background: rgba(10, 132, 255, 0.08);
|
|
814
|
-
color: #b8d8ff;
|
|
815
|
-
font-size: 10.5px;
|
|
816
|
-
}
|
|
817
|
-
|
|
818
|
-
.config-calibration-meta {
|
|
819
|
-
display: grid;
|
|
820
|
-
grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
|
|
821
|
-
gap: 10px;
|
|
822
|
-
min-width: 0;
|
|
823
|
-
padding: 12px;
|
|
824
|
-
border: 0;
|
|
825
|
-
border-bottom: 1px solid rgba(255, 255, 255, 0.07);
|
|
826
|
-
background: transparent;
|
|
827
|
-
}
|
|
828
|
-
|
|
829
|
-
.config-calibration-meta label {
|
|
830
|
-
display: grid;
|
|
831
|
-
gap: 5px;
|
|
832
|
-
min-width: 0;
|
|
833
|
-
color: var(--muted);
|
|
834
|
-
font-size: 11px;
|
|
835
|
-
font-weight: 700;
|
|
836
|
-
}
|
|
837
|
-
|
|
838
|
-
.config-calibration-meta label span {
|
|
839
|
-
color: var(--muted-2);
|
|
840
|
-
font-size: 9.5px;
|
|
841
|
-
font-weight: 780;
|
|
842
|
-
letter-spacing: 0;
|
|
843
|
-
text-transform: uppercase;
|
|
844
|
-
}
|
|
845
|
-
|
|
846
|
-
.config-calibration-name-field input,
|
|
847
|
-
.config-calibration-description-field textarea {
|
|
848
|
-
border-color: rgba(255, 255, 255, 0.095);
|
|
849
|
-
background: rgba(255, 255, 255, 0.028);
|
|
850
|
-
box-shadow: none;
|
|
851
|
-
}
|
|
852
|
-
|
|
853
|
-
.config-calibration-name-field input {
|
|
854
|
-
min-height: 40px;
|
|
855
|
-
padding: 0 10px;
|
|
856
|
-
color: var(--text-strong);
|
|
857
|
-
font-size: 12.5px;
|
|
858
|
-
font-weight: 730;
|
|
859
|
-
}
|
|
860
|
-
|
|
861
|
-
.config-calibration-description-field textarea {
|
|
862
|
-
min-height: 40px;
|
|
863
|
-
max-height: 80px;
|
|
864
|
-
padding: 9px 10px;
|
|
865
|
-
color: #cdd6e2;
|
|
866
|
-
font-size: 12px;
|
|
867
|
-
font-weight: 520;
|
|
868
|
-
}
|
|
869
|
-
|
|
870
|
-
.config-calibration-description-field textarea:focus,
|
|
871
|
-
.config-calibration-name-field input:focus {
|
|
872
|
-
border-color: rgba(10, 132, 255, 0.52);
|
|
873
|
-
background: rgba(255, 255, 255, 0.052);
|
|
874
|
-
}
|
|
875
|
-
|
|
876
|
-
.config-calibration-card .config-field-grid {
|
|
877
|
-
padding: 12px;
|
|
878
|
-
}
|
|
879
|
-
|
|
880
|
-
/* Config workspace refinement */
|
|
881
|
-
.app-shell.config-workspace .inspector-panel {
|
|
882
|
-
background:
|
|
883
|
-
radial-gradient(
|
|
884
|
-
circle at 18% 0%,
|
|
885
|
-
rgba(10, 132, 255, 0.1),
|
|
886
|
-
transparent 360px
|
|
887
|
-
),
|
|
888
|
-
linear-gradient(180deg, rgba(255, 255, 255, 0.032), transparent 260px),
|
|
889
|
-
var(--bg);
|
|
890
|
-
}
|
|
891
|
-
|
|
892
|
-
.app-shell.config-workspace .tab-page.active {
|
|
893
|
-
width: min(1260px, 100%);
|
|
894
|
-
}
|
|
895
|
-
|
|
896
|
-
.config-dashboard {
|
|
897
|
-
gap: 20px;
|
|
898
|
-
padding-bottom: 48px;
|
|
899
|
-
}
|
|
900
|
-
|
|
901
|
-
.config-dashboard-header {
|
|
902
|
-
align-items: flex-start;
|
|
903
|
-
padding: 14px 2px 2px;
|
|
904
|
-
}
|
|
905
|
-
|
|
906
|
-
.config-dashboard-header h3 {
|
|
907
|
-
margin-top: 4px;
|
|
908
|
-
font-size: 28px;
|
|
909
|
-
font-weight: 710;
|
|
910
|
-
line-height: 1.05;
|
|
911
|
-
}
|
|
912
|
-
|
|
913
|
-
.config-dashboard-header span {
|
|
914
|
-
display: block;
|
|
915
|
-
max-width: 620px;
|
|
916
|
-
line-height: 1.45;
|
|
917
|
-
}
|
|
918
|
-
|
|
919
|
-
.config-dashboard-context code,
|
|
920
|
-
.config-section-header > code {
|
|
921
|
-
border-color: rgba(255, 255, 255, 0.08);
|
|
922
|
-
background: rgba(255, 255, 255, 0.045);
|
|
923
|
-
color: #c8d2df;
|
|
924
|
-
}
|
|
925
|
-
|
|
926
|
-
.config-hero {
|
|
927
|
-
grid-template-columns: repeat(4, minmax(160px, 1fr));
|
|
928
|
-
}
|
|
929
|
-
|
|
930
|
-
.config-metric {
|
|
931
|
-
min-height: 76px;
|
|
932
|
-
padding: 16px 17px;
|
|
933
|
-
border-color: rgba(255, 255, 255, 0.09);
|
|
934
|
-
background:
|
|
935
|
-
linear-gradient(
|
|
936
|
-
180deg,
|
|
937
|
-
rgba(255, 255, 255, 0.072),
|
|
938
|
-
rgba(255, 255, 255, 0.028)
|
|
939
|
-
),
|
|
940
|
-
rgba(21, 23, 29, 0.86);
|
|
941
|
-
}
|
|
942
|
-
|
|
943
|
-
.config-metric span {
|
|
944
|
-
color: #8f98a8;
|
|
945
|
-
}
|
|
946
|
-
|
|
947
|
-
.config-loop-grid {
|
|
948
|
-
gap: 16px;
|
|
949
|
-
}
|
|
950
|
-
|
|
951
|
-
.config-section {
|
|
952
|
-
gap: 16px;
|
|
953
|
-
padding: 18px;
|
|
954
|
-
border-color: rgba(255, 255, 255, 0.095);
|
|
955
|
-
background:
|
|
956
|
-
linear-gradient(
|
|
957
|
-
180deg,
|
|
958
|
-
rgba(255, 255, 255, 0.052),
|
|
959
|
-
rgba(255, 255, 255, 0.022)
|
|
960
|
-
),
|
|
961
|
-
rgba(17, 19, 24, 0.93);
|
|
962
|
-
}
|
|
963
|
-
|
|
964
|
-
.config-section-header {
|
|
965
|
-
align-items: center;
|
|
966
|
-
}
|
|
967
|
-
|
|
968
|
-
.config-section-header > div {
|
|
969
|
-
min-width: 0;
|
|
970
|
-
}
|
|
971
|
-
|
|
972
|
-
.config-section-header h4 {
|
|
973
|
-
font-size: 16px;
|
|
974
|
-
font-weight: 680;
|
|
975
|
-
}
|
|
976
|
-
|
|
977
|
-
.config-section-header p {
|
|
978
|
-
max-width: 520px;
|
|
979
|
-
color: #8992a2;
|
|
980
|
-
white-space: nowrap;
|
|
981
|
-
}
|
|
982
|
-
|
|
983
|
-
.config-section-header > code {
|
|
984
|
-
flex: 1 1 auto;
|
|
985
|
-
max-width: 330px;
|
|
986
|
-
overflow: hidden;
|
|
987
|
-
padding: 7px 9px;
|
|
988
|
-
border-radius: 8px;
|
|
989
|
-
text-overflow: ellipsis;
|
|
990
|
-
white-space: nowrap;
|
|
991
|
-
font-size: 11px;
|
|
992
|
-
}
|
|
993
|
-
|
|
994
|
-
.config-section-header button,
|
|
995
|
-
.config-section-actions button,
|
|
996
|
-
.config-add-row button {
|
|
997
|
-
min-height: 36px;
|
|
998
|
-
border-color: rgba(255, 255, 255, 0.16);
|
|
999
|
-
background: rgba(255, 255, 255, 0.075);
|
|
1000
|
-
color: var(--text-strong);
|
|
1001
|
-
}
|
|
1002
|
-
|
|
1003
|
-
.config-section-kicker,
|
|
1004
|
-
.config-section-actions span {
|
|
1005
|
-
color: var(--muted);
|
|
1006
|
-
font-size: 11px;
|
|
1007
|
-
font-weight: 650;
|
|
1008
|
-
}
|
|
1009
|
-
|
|
1010
|
-
.config-section-kicker {
|
|
1011
|
-
text-transform: uppercase;
|
|
1012
|
-
}
|
|
1013
|
-
|
|
1014
|
-
.config-section-actions {
|
|
1015
|
-
display: flex;
|
|
1016
|
-
align-items: center;
|
|
1017
|
-
gap: 10px;
|
|
1018
|
-
min-width: 0;
|
|
1019
|
-
}
|
|
1020
|
-
|
|
1021
|
-
.config-section-actions span {
|
|
1022
|
-
overflow: hidden;
|
|
1023
|
-
max-width: 340px;
|
|
1024
|
-
text-overflow: ellipsis;
|
|
1025
|
-
white-space: nowrap;
|
|
1026
|
-
}
|
|
1027
|
-
|
|
1028
|
-
.config-step-header {
|
|
1029
|
-
grid-template-columns: minmax(170px, 0.55fr) minmax(220px, 1fr) 38px;
|
|
1030
|
-
padding: 0 10px 2px;
|
|
1031
|
-
}
|
|
1032
|
-
|
|
1033
|
-
.config-step-row {
|
|
1034
|
-
grid-template-columns: minmax(170px, 0.55fr) minmax(220px, 1fr) 38px;
|
|
1035
|
-
gap: 10px;
|
|
1036
|
-
min-height: 64px;
|
|
1037
|
-
padding: 10px;
|
|
1038
|
-
border-color: rgba(255, 255, 255, 0.075);
|
|
1039
|
-
background: rgba(255, 255, 255, 0.026);
|
|
1040
|
-
}
|
|
1041
|
-
|
|
1042
|
-
.config-step-row:hover,
|
|
1043
|
-
.config-calibration-card:hover,
|
|
1044
|
-
.config-model-button:hover {
|
|
1045
|
-
border-color: rgba(255, 255, 255, 0.16);
|
|
1046
|
-
background-color: rgba(255, 255, 255, 0.045);
|
|
1047
|
-
}
|
|
1048
|
-
|
|
1049
|
-
.config-step-key {
|
|
1050
|
-
display: flex;
|
|
1051
|
-
align-items: center;
|
|
1052
|
-
min-width: 0;
|
|
1053
|
-
min-height: 38px;
|
|
1054
|
-
padding: 0 10px;
|
|
1055
|
-
border: 1px solid rgba(255, 255, 255, 0.07);
|
|
1056
|
-
border-radius: 8px;
|
|
1057
|
-
background: rgba(255, 255, 255, 0.042);
|
|
1058
|
-
}
|
|
1059
|
-
|
|
1060
|
-
.config-step-key span {
|
|
1061
|
-
overflow: hidden;
|
|
1062
|
-
color: #dbe5f2;
|
|
1063
|
-
text-overflow: ellipsis;
|
|
1064
|
-
white-space: nowrap;
|
|
1065
|
-
font-family: var(--font-mono);
|
|
1066
|
-
font-size: 12px;
|
|
1067
|
-
font-weight: 640;
|
|
1068
|
-
}
|
|
1069
|
-
|
|
1070
|
-
.config-dashboard input,
|
|
1071
|
-
.config-dashboard select,
|
|
1072
|
-
.config-dashboard textarea {
|
|
1073
|
-
border-color: rgba(255, 255, 255, 0.13);
|
|
1074
|
-
border-radius: 8px;
|
|
1075
|
-
background:
|
|
1076
|
-
linear-gradient(
|
|
1077
|
-
180deg,
|
|
1078
|
-
rgba(255, 255, 255, 0.058),
|
|
1079
|
-
rgba(255, 255, 255, 0.032)
|
|
1080
|
-
),
|
|
1081
|
-
rgba(25, 27, 34, 0.92);
|
|
1082
|
-
color: #eef3fa;
|
|
1083
|
-
}
|
|
1084
|
-
|
|
1085
|
-
.config-dashboard input,
|
|
1086
|
-
.config-dashboard select {
|
|
1087
|
-
min-height: 38px;
|
|
1088
|
-
}
|
|
1089
|
-
|
|
1090
|
-
.config-dashboard input,
|
|
1091
|
-
.config-dashboard textarea {
|
|
1092
|
-
padding-inline: 11px;
|
|
1093
|
-
}
|
|
1094
|
-
|
|
1095
|
-
.config-dashboard textarea {
|
|
1096
|
-
padding-block: 10px;
|
|
1097
|
-
}
|
|
1098
|
-
|
|
1099
|
-
.config-dashboard input:focus,
|
|
1100
|
-
.config-dashboard select:focus,
|
|
1101
|
-
.config-dashboard textarea:focus {
|
|
1102
|
-
border-color: rgba(10, 132, 255, 0.68);
|
|
1103
|
-
background:
|
|
1104
|
-
linear-gradient(
|
|
1105
|
-
180deg,
|
|
1106
|
-
rgba(255, 255, 255, 0.076),
|
|
1107
|
-
rgba(255, 255, 255, 0.045)
|
|
1108
|
-
),
|
|
1109
|
-
rgba(27, 30, 38, 0.96);
|
|
1110
|
-
box-shadow:
|
|
1111
|
-
0 0 0 3px rgba(10, 132, 255, 0.16),
|
|
1112
|
-
inset 0 1px 0 rgba(255, 255, 255, 0.06);
|
|
1113
|
-
}
|
|
1114
|
-
|
|
1115
|
-
.config-profile-select-cell select {
|
|
1116
|
-
font-weight: 620;
|
|
1117
|
-
}
|
|
1118
|
-
|
|
1119
|
-
.config-profile-select-cell small {
|
|
1120
|
-
max-width: 100%;
|
|
1121
|
-
color: #808999;
|
|
1122
|
-
line-height: 1.25;
|
|
1123
|
-
}
|
|
1124
|
-
|
|
1125
|
-
.config-icon-button {
|
|
1126
|
-
width: 36px;
|
|
1127
|
-
min-width: 36px;
|
|
1128
|
-
height: 36px;
|
|
1129
|
-
min-height: 36px;
|
|
1130
|
-
padding: 0;
|
|
1131
|
-
border-color: rgba(255, 255, 255, 0.12);
|
|
1132
|
-
background: rgba(255, 255, 255, 0.055);
|
|
1133
|
-
color: #aeb7c5;
|
|
1134
|
-
font-size: 16px;
|
|
1135
|
-
}
|
|
1136
|
-
|
|
1137
|
-
.config-add-row {
|
|
1138
|
-
grid-template-columns:
|
|
1139
|
-
minmax(180px, 0.65fr) minmax(190px, 1fr) minmax(210px, 1fr)
|
|
1140
|
-
auto;
|
|
1141
|
-
gap: 12px;
|
|
1142
|
-
align-items: end;
|
|
1143
|
-
overflow: hidden;
|
|
1144
|
-
padding: 13px;
|
|
1145
|
-
border-color: rgba(10, 132, 255, 0.18);
|
|
1146
|
-
background:
|
|
1147
|
-
linear-gradient(
|
|
1148
|
-
90deg,
|
|
1149
|
-
rgba(10, 132, 255, 0.06),
|
|
1150
|
-
rgba(255, 255, 255, 0.018)
|
|
1151
|
-
),
|
|
1152
|
-
rgba(255, 255, 255, 0.024);
|
|
1153
|
-
}
|
|
1154
|
-
|
|
1155
|
-
.config-steps-section .config-add-row {
|
|
1156
|
-
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
|
|
1157
|
-
}
|
|
1158
|
-
|
|
1159
|
-
.config-steps-section .config-add-copy {
|
|
1160
|
-
grid-column: 1 / -1;
|
|
1161
|
-
padding-bottom: 0;
|
|
1162
|
-
}
|
|
1163
|
-
|
|
1164
|
-
.config-add-row label,
|
|
1165
|
-
.config-field-grid label,
|
|
1166
|
-
.config-calibration-meta label {
|
|
1167
|
-
display: grid;
|
|
1168
|
-
gap: 6px;
|
|
1169
|
-
min-width: 0;
|
|
1170
|
-
color: #8992a2;
|
|
1171
|
-
font-size: 10.5px;
|
|
1172
|
-
font-weight: 680;
|
|
1173
|
-
text-transform: uppercase;
|
|
1174
|
-
}
|
|
1175
|
-
|
|
1176
|
-
.config-add-copy {
|
|
1177
|
-
display: grid;
|
|
1178
|
-
gap: 3px;
|
|
1179
|
-
min-width: 0;
|
|
1180
|
-
padding-bottom: 3px;
|
|
1181
|
-
}
|
|
1182
|
-
|
|
1183
|
-
.config-add-copy strong {
|
|
1184
|
-
color: var(--text-strong);
|
|
1185
|
-
font-size: 13px;
|
|
1186
|
-
font-weight: 660;
|
|
1187
|
-
}
|
|
1188
|
-
|
|
1189
|
-
.config-add-copy span {
|
|
1190
|
-
color: var(--muted);
|
|
1191
|
-
font-size: 11.5px;
|
|
1192
|
-
line-height: 1.35;
|
|
1193
|
-
}
|
|
1194
|
-
|
|
1195
|
-
.config-add-row.compact {
|
|
1196
|
-
grid-template-columns: minmax(260px, 1fr) auto;
|
|
1197
|
-
width: min(460px, 100%);
|
|
1198
|
-
padding: 0;
|
|
1199
|
-
border: 0;
|
|
1200
|
-
background: transparent;
|
|
1201
|
-
}
|
|
1202
|
-
|
|
1203
|
-
.config-model-layout {
|
|
1204
|
-
grid-template-columns: minmax(260px, 0.28fr) minmax(0, 1fr);
|
|
1205
|
-
gap: 18px;
|
|
1206
|
-
}
|
|
1207
|
-
|
|
1208
|
-
.config-model-list {
|
|
1209
|
-
gap: 8px;
|
|
1210
|
-
padding: 0 6px 0 0;
|
|
1211
|
-
}
|
|
1212
|
-
|
|
1213
|
-
.config-model-list-title {
|
|
1214
|
-
display: flex;
|
|
1215
|
-
align-items: center;
|
|
1216
|
-
justify-content: space-between;
|
|
1217
|
-
min-height: 30px;
|
|
1218
|
-
color: #8d96a5;
|
|
1219
|
-
font-size: 11px;
|
|
1220
|
-
font-weight: 680;
|
|
1221
|
-
text-transform: uppercase;
|
|
1222
|
-
}
|
|
1223
|
-
|
|
1224
|
-
.config-model-list-title small {
|
|
1225
|
-
min-width: 26px;
|
|
1226
|
-
padding: 3px 7px;
|
|
1227
|
-
border-radius: 7px;
|
|
1228
|
-
background: rgba(255, 255, 255, 0.06);
|
|
1229
|
-
color: #c6d0dd;
|
|
1230
|
-
text-align: center;
|
|
1231
|
-
}
|
|
1232
|
-
|
|
1233
|
-
.config-model-button {
|
|
1234
|
-
min-height: 64px;
|
|
1235
|
-
padding: 12px 13px;
|
|
1236
|
-
border-radius: 8px;
|
|
1237
|
-
border-color: rgba(255, 255, 255, 0.08);
|
|
1238
|
-
background: rgba(255, 255, 255, 0.028);
|
|
1239
|
-
}
|
|
1240
|
-
|
|
1241
|
-
.config-model-button > span {
|
|
1242
|
-
color: #f0f5fb;
|
|
1243
|
-
font-size: 13px;
|
|
1244
|
-
font-weight: 680;
|
|
1245
|
-
}
|
|
1246
|
-
|
|
1247
|
-
.config-model-button small {
|
|
1248
|
-
display: flex;
|
|
1249
|
-
gap: 6px;
|
|
1250
|
-
color: #87909f;
|
|
1251
|
-
}
|
|
1252
|
-
|
|
1253
|
-
.config-model-button small span {
|
|
1254
|
-
color: inherit;
|
|
1255
|
-
font-size: 11px;
|
|
1256
|
-
font-weight: 560;
|
|
1257
|
-
}
|
|
1258
|
-
|
|
1259
|
-
.config-model-button small span + span::before {
|
|
1260
|
-
content: "";
|
|
1261
|
-
display: inline-block;
|
|
1262
|
-
width: 3px;
|
|
1263
|
-
height: 3px;
|
|
1264
|
-
margin: 0 6px 2px 0;
|
|
1265
|
-
border-radius: 50%;
|
|
1266
|
-
background: currentColor;
|
|
1267
|
-
}
|
|
1268
|
-
|
|
1269
|
-
.config-model-button.active {
|
|
1270
|
-
border-color: rgba(10, 132, 255, 0.58);
|
|
1271
|
-
background:
|
|
1272
|
-
linear-gradient(90deg, rgba(10, 132, 255, 0.22), rgba(10, 132, 255, 0.07)),
|
|
1273
|
-
rgba(255, 255, 255, 0.048);
|
|
1274
|
-
box-shadow:
|
|
1275
|
-
inset 3px 0 0 var(--accent),
|
|
1276
|
-
0 10px 24px rgba(0, 0, 0, 0.18);
|
|
1277
|
-
}
|
|
1278
|
-
|
|
1279
|
-
.config-model-editor {
|
|
1280
|
-
gap: 16px;
|
|
1281
|
-
padding: 16px;
|
|
1282
|
-
background: rgba(255, 255, 255, 0.02);
|
|
1283
|
-
}
|
|
1284
|
-
|
|
1285
|
-
.config-form-panel {
|
|
1286
|
-
display: grid;
|
|
1287
|
-
gap: 13px;
|
|
1288
|
-
padding: 14px;
|
|
1289
|
-
border: 1px solid rgba(255, 255, 255, 0.075);
|
|
1290
|
-
border-radius: 8px;
|
|
1291
|
-
background: rgba(255, 255, 255, 0.02);
|
|
1292
|
-
}
|
|
1293
|
-
|
|
1294
|
-
.config-form-panel-title {
|
|
1295
|
-
display: flex;
|
|
1296
|
-
align-items: baseline;
|
|
1297
|
-
justify-content: space-between;
|
|
1298
|
-
gap: 12px;
|
|
1299
|
-
min-width: 0;
|
|
1300
|
-
}
|
|
1301
|
-
|
|
1302
|
-
.config-form-panel-title strong {
|
|
1303
|
-
color: var(--text-strong);
|
|
1304
|
-
font-size: 13px;
|
|
1305
|
-
font-weight: 660;
|
|
1306
|
-
}
|
|
1307
|
-
|
|
1308
|
-
.config-form-panel-title span {
|
|
1309
|
-
overflow: hidden;
|
|
1310
|
-
color: var(--muted);
|
|
1311
|
-
text-overflow: ellipsis;
|
|
1312
|
-
white-space: nowrap;
|
|
1313
|
-
font-size: 11.5px;
|
|
1314
|
-
}
|
|
1315
|
-
|
|
1316
|
-
.config-field-grid {
|
|
1317
|
-
gap: 12px;
|
|
1318
|
-
}
|
|
1319
|
-
|
|
1320
|
-
.config-field-grid label span,
|
|
1321
|
-
.config-calibration-meta label span {
|
|
1322
|
-
color: #8c95a4;
|
|
1323
|
-
}
|
|
1324
|
-
|
|
1325
|
-
.config-toggle {
|
|
1326
|
-
min-height: 38px;
|
|
1327
|
-
align-self: end;
|
|
1328
|
-
}
|
|
1329
|
-
|
|
1330
|
-
.config-subheader {
|
|
1331
|
-
min-height: 48px;
|
|
1332
|
-
padding-top: 14px;
|
|
1333
|
-
}
|
|
1334
|
-
|
|
1335
|
-
.config-subheader > div:first-child {
|
|
1336
|
-
display: grid;
|
|
1337
|
-
gap: 3px;
|
|
85
|
+
|
|
86
|
+
.task-progress-topline strong {
|
|
87
|
+
color: var(--accent-strong);
|
|
88
|
+
font-size: var(--font-size-sm);
|
|
1338
89
|
}
|
|
1339
90
|
|
|
1340
|
-
.
|
|
1341
|
-
color:
|
|
1342
|
-
font-size:
|
|
1343
|
-
font-weight:
|
|
91
|
+
.task-progress-summary {
|
|
92
|
+
color: var(--text-strong);
|
|
93
|
+
font-size: var(--font-size-lg);
|
|
94
|
+
font-weight: 710;
|
|
95
|
+
line-height: 1.35;
|
|
1344
96
|
}
|
|
1345
97
|
|
|
1346
|
-
.
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
98
|
+
.task-progress-meter {
|
|
99
|
+
height: 6px;
|
|
100
|
+
overflow: hidden;
|
|
101
|
+
border-radius: 6px;
|
|
102
|
+
background: rgba(255, 255, 255, 0.08);
|
|
1351
103
|
}
|
|
1352
104
|
|
|
1353
|
-
.
|
|
1354
|
-
|
|
105
|
+
.task-progress-meter span {
|
|
106
|
+
display: block;
|
|
107
|
+
height: 100%;
|
|
108
|
+
border-radius: inherit;
|
|
109
|
+
background: linear-gradient(90deg, #0a84ff, #32d74b);
|
|
1355
110
|
}
|
|
1356
111
|
|
|
1357
|
-
.
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
180deg,
|
|
1362
|
-
rgba(255, 255, 255, 0.038),
|
|
1363
|
-
rgba(255, 255, 255, 0.016)
|
|
1364
|
-
),
|
|
1365
|
-
rgba(13, 15, 19, 0.78);
|
|
112
|
+
.task-progress-count {
|
|
113
|
+
color: var(--muted);
|
|
114
|
+
font-size: var(--font-size-sm);
|
|
115
|
+
font-weight: 650;
|
|
1366
116
|
}
|
|
1367
117
|
|
|
1368
|
-
.
|
|
118
|
+
.task-progress-items {
|
|
1369
119
|
display: grid;
|
|
1370
|
-
|
|
1371
|
-
align-items: center;
|
|
1372
|
-
min-height: 64px;
|
|
1373
|
-
padding: 13px 14px;
|
|
120
|
+
gap: 7px;
|
|
1374
121
|
}
|
|
1375
122
|
|
|
1376
|
-
.
|
|
123
|
+
.task-progress-item {
|
|
1377
124
|
display: grid;
|
|
1378
|
-
|
|
125
|
+
grid-template-columns: 10px minmax(0, 1fr);
|
|
126
|
+
gap: 8px;
|
|
127
|
+
align-items: start;
|
|
128
|
+
color: var(--muted);
|
|
129
|
+
font-size: var(--font-size-md);
|
|
130
|
+
line-height: 1.3;
|
|
1379
131
|
}
|
|
1380
132
|
|
|
1381
|
-
.
|
|
1382
|
-
|
|
1383
|
-
font-weight: 680;
|
|
133
|
+
.task-progress-title {
|
|
134
|
+
overflow-wrap: anywhere;
|
|
1384
135
|
}
|
|
1385
136
|
|
|
1386
|
-
.
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
|
|
137
|
+
.task-status-dot {
|
|
138
|
+
width: 8px;
|
|
139
|
+
height: 8px;
|
|
140
|
+
margin-top: 4px;
|
|
141
|
+
border: 1px solid rgba(255, 255, 255, 0.16);
|
|
142
|
+
border-radius: 50%;
|
|
143
|
+
background: rgba(255, 255, 255, 0.16);
|
|
1392
144
|
}
|
|
1393
145
|
|
|
1394
|
-
.
|
|
1395
|
-
|
|
146
|
+
.task-progress-item.active .task-status-dot {
|
|
147
|
+
background: var(--accent);
|
|
148
|
+
box-shadow: 0 0 0 4px rgba(10, 132, 255, 0.13);
|
|
1396
149
|
}
|
|
1397
150
|
|
|
1398
|
-
.
|
|
1399
|
-
|
|
1400
|
-
gap: 12px;
|
|
1401
|
-
padding: 14px;
|
|
151
|
+
.task-progress-item.done {
|
|
152
|
+
color: var(--text);
|
|
1402
153
|
}
|
|
1403
154
|
|
|
1404
|
-
.
|
|
1405
|
-
|
|
1406
|
-
font-size: 13px;
|
|
155
|
+
.task-progress-item.done .task-status-dot {
|
|
156
|
+
background: var(--green);
|
|
1407
157
|
}
|
|
1408
158
|
|
|
1409
|
-
.
|
|
1410
|
-
|
|
1411
|
-
color: #d6deea;
|
|
159
|
+
.task-progress-item.failed .task-status-dot {
|
|
160
|
+
background: var(--danger);
|
|
1412
161
|
}
|
|
1413
162
|
|
|
1414
|
-
.
|
|
1415
|
-
|
|
163
|
+
.task-progress-item.muted {
|
|
164
|
+
opacity: 0.58;
|
|
1416
165
|
}
|
|
1417
166
|
|
|
1418
|
-
.
|
|
1419
|
-
|
|
167
|
+
.event-timeline {
|
|
168
|
+
display: grid;
|
|
169
|
+
gap: 0;
|
|
170
|
+
padding: 2px 0 4px;
|
|
1420
171
|
}
|
|
1421
172
|
|
|
1422
|
-
.
|
|
173
|
+
.event-row {
|
|
1423
174
|
display: grid;
|
|
175
|
+
grid-template-columns: 18px minmax(0, 1fr);
|
|
1424
176
|
gap: 8px;
|
|
1425
|
-
|
|
1426
|
-
border: 1px solid var(--line);
|
|
1427
|
-
border-radius: 8px;
|
|
1428
|
-
background: rgba(255, 255, 255, 0.025);
|
|
1429
|
-
}
|
|
1430
|
-
|
|
1431
|
-
.config-raw-panel summary {
|
|
1432
|
-
cursor: pointer;
|
|
1433
|
-
color: var(--muted);
|
|
1434
|
-
font-size: 12px;
|
|
1435
|
-
font-weight: 720;
|
|
177
|
+
min-height: 34px;
|
|
1436
178
|
}
|
|
1437
179
|
|
|
1438
|
-
.
|
|
180
|
+
.event-track {
|
|
1439
181
|
display: grid;
|
|
1440
|
-
grid-template-
|
|
1441
|
-
|
|
1442
|
-
margin: 8px 0;
|
|
182
|
+
grid-template-rows: 1fr 8px 1fr;
|
|
183
|
+
justify-items: center;
|
|
1443
184
|
}
|
|
1444
185
|
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
}
|
|
1449
|
-
|
|
1450
|
-
.config-hero {
|
|
1451
|
-
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
1452
|
-
}
|
|
1453
|
-
|
|
1454
|
-
.config-model-layout {
|
|
1455
|
-
grid-template-columns: 1fr;
|
|
1456
|
-
}
|
|
1457
|
-
|
|
1458
|
-
.config-model-list {
|
|
1459
|
-
position: static;
|
|
1460
|
-
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
1461
|
-
max-height: none;
|
|
1462
|
-
padding: 0;
|
|
1463
|
-
}
|
|
1464
|
-
|
|
1465
|
-
.config-field-grid,
|
|
1466
|
-
.config-field-grid.model-basics,
|
|
1467
|
-
.config-calibration-card .config-field-grid {
|
|
1468
|
-
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
1469
|
-
}
|
|
186
|
+
.event-line {
|
|
187
|
+
width: 1px;
|
|
188
|
+
background: rgba(255, 255, 255, 0.13);
|
|
1470
189
|
}
|
|
1471
190
|
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
.config-field-grid.model-basics,
|
|
1477
|
-
.config-calibration-card .config-field-grid,
|
|
1478
|
-
.config-file-row,
|
|
1479
|
-
.config-step-row,
|
|
1480
|
-
.config-calibration-meta,
|
|
1481
|
-
.config-add-row,
|
|
1482
|
-
.config-steps-section .config-add-row,
|
|
1483
|
-
.config-raw-toolbar {
|
|
1484
|
-
grid-template-columns: 1fr;
|
|
1485
|
-
}
|
|
191
|
+
.event-row.first .event-line-before,
|
|
192
|
+
.event-row.last .event-line-after {
|
|
193
|
+
opacity: 0;
|
|
194
|
+
}
|
|
1486
195
|
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
196
|
+
.event-dot {
|
|
197
|
+
width: 8px;
|
|
198
|
+
height: 8px;
|
|
199
|
+
border-radius: 50%;
|
|
200
|
+
background: #8e8e93;
|
|
201
|
+
box-shadow: 0 0 0 3px rgba(142, 142, 147, 0.12);
|
|
1491
202
|
}
|
|
1492
203
|
|
|
1493
|
-
.
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
justify-content: space-between;
|
|
1497
|
-
gap: 10px;
|
|
1498
|
-
margin-bottom: 12px;
|
|
1499
|
-
color: var(--muted);
|
|
1500
|
-
font-size: 11px;
|
|
1501
|
-
font-weight: 720;
|
|
204
|
+
.event-row.done .event-dot {
|
|
205
|
+
background: var(--green);
|
|
206
|
+
box-shadow: 0 0 0 3px rgba(50, 215, 75, 0.12);
|
|
1502
207
|
}
|
|
1503
208
|
|
|
1504
|
-
.
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
1508
|
-
border-radius: 7px;
|
|
1509
|
-
background: rgba(255, 255, 255, 0.07);
|
|
1510
|
-
text-align: center;
|
|
1511
|
-
color: var(--text);
|
|
1512
|
-
font-size: 11px;
|
|
1513
|
-
font-weight: 780;
|
|
1514
|
-
text-transform: uppercase;
|
|
209
|
+
.event-row.failed .event-dot {
|
|
210
|
+
background: var(--danger);
|
|
211
|
+
box-shadow: 0 0 0 3px rgba(255, 69, 58, 0.12);
|
|
1515
212
|
}
|
|
1516
213
|
|
|
1517
|
-
.
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
color: #9ef0aa;
|
|
214
|
+
.event-row.thinking .event-dot {
|
|
215
|
+
background: var(--amber);
|
|
216
|
+
box-shadow: 0 0 0 3px rgba(255, 214, 10, 0.12);
|
|
1521
217
|
}
|
|
1522
218
|
|
|
1523
|
-
.
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
color: #ffb0ab;
|
|
219
|
+
.event-content {
|
|
220
|
+
min-width: 0;
|
|
221
|
+
padding: 2px 0 9px;
|
|
1527
222
|
}
|
|
1528
223
|
|
|
1529
|
-
.
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
224
|
+
.event-name {
|
|
225
|
+
overflow: hidden;
|
|
226
|
+
color: var(--text-strong);
|
|
227
|
+
text-overflow: ellipsis;
|
|
228
|
+
white-space: nowrap;
|
|
229
|
+
font-size: var(--font-size-md);
|
|
230
|
+
font-weight: 700;
|
|
1535
231
|
}
|
|
1536
232
|
|
|
1537
|
-
.
|
|
233
|
+
.event-title-row {
|
|
1538
234
|
display: grid;
|
|
1539
235
|
grid-template-columns: minmax(0, 1fr) auto;
|
|
1540
|
-
gap:
|
|
236
|
+
gap: 8px;
|
|
1541
237
|
align-items: center;
|
|
1542
|
-
padding: 8px 9px;
|
|
1543
|
-
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
1544
|
-
border-radius: 8px;
|
|
1545
|
-
background: rgba(255, 255, 255, 0.045);
|
|
1546
238
|
}
|
|
1547
239
|
|
|
1548
|
-
.
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
240
|
+
.event-count {
|
|
241
|
+
min-width: 30px;
|
|
242
|
+
padding: 2px 7px;
|
|
243
|
+
border: 1px solid rgba(255, 255, 255, 0.11);
|
|
244
|
+
border-radius: 7px;
|
|
245
|
+
background: rgba(255, 255, 255, 0.075);
|
|
246
|
+
color: var(--muted);
|
|
247
|
+
text-align: center;
|
|
248
|
+
font-size: var(--font-size-xs);
|
|
249
|
+
font-weight: 760;
|
|
250
|
+
line-height: 1.35;
|
|
1552
251
|
}
|
|
1553
252
|
|
|
1554
|
-
.
|
|
1555
|
-
|
|
253
|
+
.event-meta {
|
|
254
|
+
margin-top: 4px;
|
|
255
|
+
color: var(--muted);
|
|
256
|
+
font-size: var(--font-size-xs);
|
|
257
|
+
line-height: 1.35;
|
|
1556
258
|
}
|
|
1557
259
|
|
|
1558
|
-
.
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
|
|
260
|
+
.logs-view,
|
|
261
|
+
.config-view {
|
|
262
|
+
flex: 1;
|
|
263
|
+
min-height: 240px;
|
|
264
|
+
margin: 0;
|
|
265
|
+
padding: 12px;
|
|
266
|
+
overflow: auto;
|
|
267
|
+
color: #dce3ee;
|
|
268
|
+
font-size: var(--font-size-md);
|
|
269
|
+
line-height: 1.45;
|
|
270
|
+
white-space: pre-wrap;
|
|
1564
271
|
}
|
|
1565
272
|
|
|
1566
|
-
.
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
|
-
|
|
1570
|
-
white-space: nowrap;
|
|
1571
|
-
font-size: 11px;
|
|
273
|
+
.config-view {
|
|
274
|
+
min-height: 260px;
|
|
275
|
+
white-space: pre;
|
|
276
|
+
resize: vertical;
|
|
1572
277
|
}
|
|
1573
278
|
|
|
1574
279
|
.empty-state {
|
|
@@ -1580,21 +285,21 @@
|
|
|
1580
285
|
.empty-state.compact {
|
|
1581
286
|
margin: 14px 0 0;
|
|
1582
287
|
text-align: left;
|
|
1583
|
-
font-size:
|
|
288
|
+
font-size: var(--font-size-md);
|
|
1584
289
|
}
|
|
1585
290
|
|
|
1586
291
|
.error-text {
|
|
1587
292
|
color: var(--danger);
|
|
1588
293
|
}
|
|
1589
294
|
|
|
1590
|
-
/* Refined inspector
|
|
295
|
+
/* Refined inspector presentation ------------------------------------------- */
|
|
1591
296
|
|
|
1592
297
|
.inspector-heading {
|
|
1593
298
|
min-height: 40px;
|
|
1594
299
|
}
|
|
1595
300
|
|
|
1596
301
|
.inspector-heading h2 {
|
|
1597
|
-
font-size:
|
|
302
|
+
font-size: var(--font-size-3xl);
|
|
1598
303
|
}
|
|
1599
304
|
|
|
1600
305
|
.inspector-heading .icon-button {
|
|
@@ -1624,7 +329,7 @@
|
|
|
1624
329
|
padding: 0 9px;
|
|
1625
330
|
border-radius: 8px;
|
|
1626
331
|
color: var(--muted);
|
|
1627
|
-
font-size:
|
|
332
|
+
font-size: var(--font-size-sm);
|
|
1628
333
|
font-weight: 620;
|
|
1629
334
|
}
|
|
1630
335
|
|
|
@@ -1648,7 +353,7 @@
|
|
|
1648
353
|
justify-content: space-between;
|
|
1649
354
|
gap: 10px;
|
|
1650
355
|
color: var(--muted);
|
|
1651
|
-
font-size:
|
|
356
|
+
font-size: var(--font-size-sm);
|
|
1652
357
|
font-weight: 760;
|
|
1653
358
|
letter-spacing: 0.02em;
|
|
1654
359
|
text-transform: uppercase;
|
|
@@ -1660,7 +365,7 @@
|
|
|
1660
365
|
border-color: transparent;
|
|
1661
366
|
background: rgba(255, 255, 255, 0.06);
|
|
1662
367
|
color: var(--text);
|
|
1663
|
-
font-size:
|
|
368
|
+
font-size: var(--font-size-sm);
|
|
1664
369
|
font-weight: 650;
|
|
1665
370
|
text-transform: none;
|
|
1666
371
|
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
|
|
@@ -1679,7 +384,7 @@
|
|
|
1679
384
|
.panel-toolbar {
|
|
1680
385
|
min-height: 30px;
|
|
1681
386
|
color: var(--muted);
|
|
1682
|
-
font-size:
|
|
387
|
+
font-size: var(--font-size-xs);
|
|
1683
388
|
letter-spacing: 0.06em;
|
|
1684
389
|
}
|
|
1685
390
|
|
|
@@ -1712,7 +417,7 @@
|
|
|
1712
417
|
|
|
1713
418
|
.event-name {
|
|
1714
419
|
color: var(--text);
|
|
1715
|
-
font-size:
|
|
420
|
+
font-size: var(--font-size-md);
|
|
1716
421
|
}
|
|
1717
422
|
|
|
1718
423
|
.event-meta {
|
|
@@ -1720,82 +425,6 @@
|
|
|
1720
425
|
line-height: 1.45;
|
|
1721
426
|
}
|
|
1722
427
|
|
|
1723
|
-
.runtime-row,
|
|
1724
|
-
.health-request {
|
|
1725
|
-
border-color: rgba(112, 157, 201, 0.13);
|
|
1726
|
-
border-radius: 10px;
|
|
1727
|
-
background: rgba(54, 94, 133, 0.08);
|
|
1728
|
-
}
|
|
1729
|
-
|
|
1730
|
-
.config-dashboard-header,
|
|
1731
|
-
.config-section,
|
|
1732
|
-
.config-model-list,
|
|
1733
|
-
.config-model-editor,
|
|
1734
|
-
.config-calibration-card,
|
|
1735
|
-
.config-raw-panel {
|
|
1736
|
-
border-color: var(--line);
|
|
1737
|
-
border-radius: 14px;
|
|
1738
|
-
background-color: #0c1d2e;
|
|
1739
|
-
box-shadow: none;
|
|
1740
|
-
}
|
|
1741
|
-
|
|
1742
|
-
.config-model-button,
|
|
1743
|
-
.config-step-row,
|
|
1744
|
-
.config-file-row {
|
|
1745
|
-
border-color: rgba(112, 157, 201, 0.14);
|
|
1746
|
-
border-radius: 10px;
|
|
1747
|
-
background-color: rgba(53, 93, 132, 0.08);
|
|
1748
|
-
}
|
|
1749
|
-
|
|
1750
|
-
.config-model-button.active {
|
|
1751
|
-
border-color: rgba(87, 148, 255, 0.42);
|
|
1752
|
-
background: rgba(72, 133, 238, 0.14);
|
|
1753
|
-
}
|
|
1754
|
-
|
|
1755
|
-
.app-shell.config-workspace {
|
|
1756
|
-
display: block;
|
|
1757
|
-
overflow: auto;
|
|
1758
|
-
background: var(--bg);
|
|
1759
|
-
}
|
|
1760
|
-
|
|
1761
|
-
.app-shell.config-workspace .inspector-panel {
|
|
1762
|
-
position: relative;
|
|
1763
|
-
display: flex;
|
|
1764
|
-
width: 100%;
|
|
1765
|
-
min-height: 100vh;
|
|
1766
|
-
padding: 22px clamp(18px, 4vw, 48px) 48px;
|
|
1767
|
-
border: 0;
|
|
1768
|
-
background:
|
|
1769
|
-
radial-gradient(
|
|
1770
|
-
circle at 50% -12%,
|
|
1771
|
-
rgba(47, 100, 159, 0.16),
|
|
1772
|
-
transparent 34%
|
|
1773
|
-
),
|
|
1774
|
-
var(--bg);
|
|
1775
|
-
}
|
|
1776
|
-
|
|
1777
|
-
.app-shell.config-workspace .inspector-heading,
|
|
1778
|
-
.app-shell.config-workspace .inspector-tabs,
|
|
1779
|
-
.app-shell.config-workspace .tab-page.active {
|
|
1780
|
-
width: min(1240px, 100%);
|
|
1781
|
-
max-width: 1240px;
|
|
1782
|
-
margin-inline: auto;
|
|
1783
|
-
}
|
|
1784
|
-
|
|
1785
|
-
.app-shell.config-workspace .inspector-tabs {
|
|
1786
|
-
position: sticky;
|
|
1787
|
-
top: 12px;
|
|
1788
|
-
z-index: 8;
|
|
1789
|
-
display: grid;
|
|
1790
|
-
grid-template-columns: repeat(6, minmax(0, 1fr));
|
|
1791
|
-
background: rgba(9, 24, 39, 0.94);
|
|
1792
|
-
backdrop-filter: blur(18px);
|
|
1793
|
-
}
|
|
1794
|
-
|
|
1795
|
-
.app-shell.config-workspace .tab-page.active {
|
|
1796
|
-
padding-top: 6px;
|
|
1797
|
-
}
|
|
1798
|
-
|
|
1799
428
|
.panel-backdrop {
|
|
1800
429
|
position: fixed;
|
|
1801
430
|
inset: 0;
|
|
@@ -1871,7 +500,7 @@
|
|
|
1871
500
|
}
|
|
1872
501
|
}
|
|
1873
502
|
|
|
1874
|
-
/* Full
|
|
503
|
+
/* Full workspace foundations ----------------------------------------------- */
|
|
1875
504
|
|
|
1876
505
|
.panel-resizer {
|
|
1877
506
|
display: none !important;
|
|
@@ -1901,12 +530,6 @@
|
|
|
1901
530
|
display: none !important;
|
|
1902
531
|
}
|
|
1903
532
|
|
|
1904
|
-
/* Configuration uses hierarchy through spacing, size, and color—not weight. */
|
|
1905
|
-
#configWorkspacePanel,
|
|
1906
|
-
#configWorkspacePanel * {
|
|
1907
|
-
font-weight: 400;
|
|
1908
|
-
}
|
|
1909
|
-
|
|
1910
533
|
.workspace-page-header {
|
|
1911
534
|
position: sticky;
|
|
1912
535
|
top: 0;
|
|
@@ -1933,7 +556,7 @@
|
|
|
1933
556
|
.workspace-page-heading h2 {
|
|
1934
557
|
margin: 0;
|
|
1935
558
|
color: var(--text-strong);
|
|
1936
|
-
font-size:
|
|
559
|
+
font-size: var(--font-size-5xl);
|
|
1937
560
|
font-weight: 680;
|
|
1938
561
|
letter-spacing: -0.025em;
|
|
1939
562
|
}
|
|
@@ -1942,7 +565,7 @@
|
|
|
1942
565
|
max-width: 620px;
|
|
1943
566
|
margin: 5px 0 0;
|
|
1944
567
|
color: var(--muted);
|
|
1945
|
-
font-size:
|
|
568
|
+
font-size: var(--font-size-md);
|
|
1946
569
|
line-height: 1.45;
|
|
1947
570
|
}
|
|
1948
571
|
|
|
@@ -1980,27 +603,6 @@
|
|
|
1980
603
|
margin-inline: auto;
|
|
1981
604
|
}
|
|
1982
605
|
|
|
1983
|
-
.config-workspace-body #configStatus:empty {
|
|
1984
|
-
display: none;
|
|
1985
|
-
}
|
|
1986
|
-
|
|
1987
|
-
.config-workspace-panel .config-dashboard {
|
|
1988
|
-
padding-bottom: 20px;
|
|
1989
|
-
}
|
|
1990
|
-
|
|
1991
|
-
.config-workspace-panel .config-dashboard-header {
|
|
1992
|
-
margin-bottom: 2px;
|
|
1993
|
-
}
|
|
1994
|
-
|
|
1995
|
-
.app-shell.operations-workspace,
|
|
1996
|
-
.app-shell.config-workspace {
|
|
1997
|
-
display: grid;
|
|
1998
|
-
grid-template-columns: 72px minmax(0, 1fr);
|
|
1999
|
-
grid-template-rows: minmax(0, 1fr);
|
|
2000
|
-
overflow: hidden;
|
|
2001
|
-
background: var(--bg);
|
|
2002
|
-
}
|
|
2003
|
-
|
|
2004
606
|
.panel-backdrop {
|
|
2005
607
|
inset: 0 0 0 72px;
|
|
2006
608
|
z-index: 50;
|
|
@@ -2014,68 +616,6 @@
|
|
|
2014
616
|
z-index: 90;
|
|
2015
617
|
}
|
|
2016
618
|
|
|
2017
|
-
/* Operations navigation and content. */
|
|
2018
|
-
|
|
2019
|
-
.operations-workspace-body {
|
|
2020
|
-
display: grid;
|
|
2021
|
-
grid-template-rows: auto minmax(0, 1fr);
|
|
2022
|
-
align-content: start;
|
|
2023
|
-
gap: 18px;
|
|
2024
|
-
}
|
|
2025
|
-
|
|
2026
|
-
.operations-tabs {
|
|
2027
|
-
position: sticky;
|
|
2028
|
-
top: 0;
|
|
2029
|
-
z-index: 6;
|
|
2030
|
-
display: flex;
|
|
2031
|
-
gap: 4px;
|
|
2032
|
-
width: min(1260px, 100%);
|
|
2033
|
-
padding: 4px;
|
|
2034
|
-
border: 1px solid rgba(114, 162, 210, 0.16);
|
|
2035
|
-
border-radius: 12px;
|
|
2036
|
-
background: rgba(11, 29, 47, 0.96);
|
|
2037
|
-
box-shadow: 0 12px 32px rgba(0, 7, 18, 0.14);
|
|
2038
|
-
backdrop-filter: blur(16px);
|
|
2039
|
-
}
|
|
2040
|
-
|
|
2041
|
-
.operations-tab-button {
|
|
2042
|
-
flex: 0 1 150px;
|
|
2043
|
-
min-height: 36px;
|
|
2044
|
-
border: 0;
|
|
2045
|
-
border-radius: 9px;
|
|
2046
|
-
color: var(--muted);
|
|
2047
|
-
font-size: 12px;
|
|
2048
|
-
font-weight: 620;
|
|
2049
|
-
}
|
|
2050
|
-
|
|
2051
|
-
.operations-tab-button:hover {
|
|
2052
|
-
background: rgba(84, 133, 181, 0.09);
|
|
2053
|
-
color: var(--text);
|
|
2054
|
-
}
|
|
2055
|
-
|
|
2056
|
-
.operations-tab-button.active {
|
|
2057
|
-
background: rgba(76, 136, 218, 0.16);
|
|
2058
|
-
color: #dceaff;
|
|
2059
|
-
}
|
|
2060
|
-
|
|
2061
|
-
.operations-tab-page {
|
|
2062
|
-
display: none;
|
|
2063
|
-
width: min(1260px, 100%);
|
|
2064
|
-
min-height: 0;
|
|
2065
|
-
}
|
|
2066
|
-
|
|
2067
|
-
.operations-tab-page.active {
|
|
2068
|
-
display: flex;
|
|
2069
|
-
flex-direction: column;
|
|
2070
|
-
gap: 16px;
|
|
2071
|
-
}
|
|
2072
|
-
|
|
2073
|
-
.operations-tab-page .runtime-card,
|
|
2074
|
-
.operations-tab-page .logs-view {
|
|
2075
|
-
min-height: 280px;
|
|
2076
|
-
padding: clamp(18px, 3vw, 30px);
|
|
2077
|
-
}
|
|
2078
|
-
|
|
2079
619
|
/* Rail state hooks shared by full workspace destinations. */
|
|
2080
620
|
|
|
2081
621
|
.workspace-rail .rail-button[aria-current="page"] {
|
|
@@ -2102,7 +642,7 @@
|
|
|
2102
642
|
color: #a8bdd2;
|
|
2103
643
|
text-overflow: clip;
|
|
2104
644
|
white-space: nowrap;
|
|
2105
|
-
font-size:
|
|
645
|
+
font-size: var(--font-size-xs);
|
|
2106
646
|
font-weight: 650;
|
|
2107
647
|
letter-spacing: 0.035em;
|
|
2108
648
|
}
|