@zhushanwen/subagent-core 0.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 +114 -0
- package/dist/chunk-3VOERJPJ.js +22 -0
- package/dist/chunk-A4IVZWVX.js +31 -0
- package/dist/execution/engine/engines/zcode/constants.cjs +54 -0
- package/dist/execution/engine/engines/zcode/constants.d.cts +31 -0
- package/dist/execution/engine/engines/zcode/constants.d.ts +31 -0
- package/dist/execution/engine/engines/zcode/constants.js +22 -0
- package/dist/execution/engine/engines/zcode/reader.cjs +276 -0
- package/dist/execution/engine/engines/zcode/reader.d.cts +20 -0
- package/dist/execution/engine/engines/zcode/reader.d.ts +20 -0
- package/dist/execution/engine/engines/zcode/reader.js +239 -0
- package/dist/execution/engine/paths.cjs +55 -0
- package/dist/execution/engine/paths.d.cts +8 -0
- package/dist/execution/engine/paths.d.ts +8 -0
- package/dist/execution/engine/paths.js +26 -0
- package/dist/execution/relay-env.cjs +62 -0
- package/dist/execution/relay-env.d.cts +33 -0
- package/dist/execution/relay-env.d.ts +33 -0
- package/dist/execution/relay-env.js +20 -0
- package/dist/index.cjs +1852 -0
- package/dist/index.d.cts +1184 -0
- package/dist/index.d.ts +1184 -0
- package/dist/index.js +1810 -0
- package/dist/types-BxyAidGf.d.cts +875 -0
- package/dist/types-BxyAidGf.d.ts +875 -0
- package/package.json +99 -0
- package/src/__tests__/agent-opts-resolver-schema-prompt.test.ts +142 -0
- package/src/__tests__/append-system-prompt-assembly.test.ts +242 -0
- package/src/__tests__/builtin-workflows-structure.test.ts +180 -0
- package/src/__tests__/derive-closed-display-parity.test.ts +93 -0
- package/src/__tests__/fr4-get-state-handshake.test.ts +125 -0
- package/src/__tests__/fr8-orphan-recovery.test.ts +259 -0
- package/src/__tests__/m2-append-content-probe.test.ts +73 -0
- package/src/__tests__/manifest-store.test.ts +368 -0
- package/src/__tests__/record-store-cache.test.ts +335 -0
- package/src/__tests__/record-store-index.test.ts +560 -0
- package/src/__tests__/record-store-last-line.test.ts +129 -0
- package/src/__tests__/review-fix-loop-script.test.ts +288 -0
- package/src/__tests__/review-fix-loop-utils.test.ts +2377 -0
- package/src/__tests__/robustness-low-batch1.test.ts +286 -0
- package/src/__tests__/robustness-medium-batch1.test.ts +69 -0
- package/src/__tests__/robustness-medium-batch2.test.ts +65 -0
- package/src/__tests__/robustness-medium-batch3.test.ts +30 -0
- package/src/__tests__/robustness-medium-batch4.test.ts +358 -0
- package/src/__tests__/session-runner.test.ts +69 -0
- package/src/__tests__/smoke.test.ts +9 -0
- package/src/__tests__/stream-sink.test.ts +203 -0
- package/src/core/__tests__/host-services.test.ts +144 -0
- package/src/core/__tests__/logger.test.ts +78 -0
- package/src/core/__tests__/notify-ports.test.ts +104 -0
- package/src/core/host-services.ts +97 -0
- package/src/core/logger.ts +47 -0
- package/src/core/notify-ports.ts +126 -0
- package/src/execution/__tests__/__fixtures__/notifier-golden-snapshots.json +53 -0
- package/src/execution/__tests__/__fixtures__/truncline.snapshot.json +1 -0
- package/src/execution/__tests__/agent-result-mapper.test.ts +150 -0
- package/src/execution/__tests__/alive-store.test.ts +147 -0
- package/src/execution/__tests__/ask-user-transit-e2e.test.ts +490 -0
- package/src/execution/__tests__/channel-registry-handshake.test.ts +242 -0
- package/src/execution/__tests__/chat-engine-routing.test.ts +610 -0
- package/src/execution/__tests__/chatmode-first-round-closure-spawn.test.ts +190 -0
- package/src/execution/__tests__/concurrency-pool.test.ts +250 -0
- package/src/execution/__tests__/config.test.ts +302 -0
- package/src/execution/__tests__/delivery-methods.test.ts +424 -0
- package/src/execution/__tests__/dialog-queue.test.ts +299 -0
- package/src/execution/__tests__/epipe-fallback.test.ts +241 -0
- package/src/execution/__tests__/execute-and-await-worktree.test.ts +243 -0
- package/src/execution/__tests__/execute-nesting.test.ts +323 -0
- package/src/execution/__tests__/execute-options-mapper.test.ts +200 -0
- package/src/execution/__tests__/execution-record.test.ts +1394 -0
- package/src/execution/__tests__/explicit-agent-ref-guard.test.ts +171 -0
- package/src/execution/__tests__/finalize-record.test.ts +367 -0
- package/src/execution/__tests__/finalized-marker.test.ts +104 -0
- package/src/execution/__tests__/format-schema-instruction.test.ts +169 -0
- package/src/execution/__tests__/gc-timer.test.ts +184 -0
- package/src/execution/__tests__/get-record-for-action-restart.test.ts +254 -0
- package/src/execution/__tests__/helpers/mock-extension-api.ts +30 -0
- package/src/execution/__tests__/helpers/spawn-mock.ts +242 -0
- package/src/execution/__tests__/host-mode.test.ts +87 -0
- package/src/execution/__tests__/lifecycle-manager-lock.test.ts +211 -0
- package/src/execution/__tests__/lifecycle-manager.test.ts +383 -0
- package/src/execution/__tests__/lifecycle-predicates.test.ts +116 -0
- package/src/execution/__tests__/manifest-parentid.test.ts +117 -0
- package/src/execution/__tests__/model-resolver.test.ts +465 -0
- package/src/execution/__tests__/nested-visibility-env-propagation.test.ts +287 -0
- package/src/execution/__tests__/nested-visibility.test.ts +325 -0
- package/src/execution/__tests__/output-collector.test.ts +358 -0
- package/src/execution/__tests__/path-encoding.test.ts +104 -0
- package/src/execution/__tests__/pi-invocation.test.ts +134 -0
- package/src/execution/__tests__/record-store.test.ts +1057 -0
- package/src/execution/__tests__/records-cwd-isolation.test.ts +91 -0
- package/src/execution/__tests__/recursive-visibility-baseline.test.ts +339 -0
- package/src/execution/__tests__/recursive-visibility-env.test.ts +273 -0
- package/src/execution/__tests__/relay-env.test.ts +42 -0
- package/src/execution/__tests__/resource-policy.test.ts +109 -0
- package/src/execution/__tests__/rpc-mode.test.ts +89 -0
- package/src/execution/__tests__/run-and-finalize-chatmode.test.ts +267 -0
- package/src/execution/__tests__/run-spawn-chatmode-settled.test.ts +253 -0
- package/src/execution/__tests__/run-spawn-edges.test.ts +687 -0
- package/src/execution/__tests__/run-spawn-integration.test.ts +933 -0
- package/src/execution/__tests__/run-spawn-resume.test.ts +322 -0
- package/src/execution/__tests__/run-spawn-rpc-mode.test.ts +196 -0
- package/src/execution/__tests__/run-spawn-stdout-callback-throw.test.ts +199 -0
- package/src/execution/__tests__/session-context-resolver.test.ts +167 -0
- package/src/execution/__tests__/session-file-gc.test.ts +293 -0
- package/src/execution/__tests__/session-reconstructor.test.ts +379 -0
- package/src/execution/__tests__/session-runner-epipe.test.ts +178 -0
- package/src/execution/__tests__/session-runner-schema-env.test.ts +350 -0
- package/src/execution/__tests__/spawn-args.test.ts +445 -0
- package/src/execution/__tests__/spawn-event-adapter-rpc.test.ts +189 -0
- package/src/execution/__tests__/spawn-event-adapter.test.ts +167 -0
- package/src/execution/__tests__/spawn-worktree-guidance.test.ts +207 -0
- package/src/execution/__tests__/spawned-children.test.ts +92 -0
- package/src/execution/__tests__/start-sync-model-guard.test.ts +150 -0
- package/src/execution/__tests__/stdin-writer.test.ts +462 -0
- package/src/execution/__tests__/stream-sink-retirement.test.ts +261 -0
- package/src/execution/__tests__/subagent-service-abort.test.ts +60 -0
- package/src/execution/__tests__/subagent-service-message-close.test.ts +629 -0
- package/src/execution/__tests__/subagent-service-parent-guard.test.ts +180 -0
- package/src/execution/__tests__/subagent-service.test.ts +788 -0
- package/src/execution/__tests__/subprocess-agent-runner-routing.test.ts +310 -0
- package/src/execution/__tests__/subprocess-agent-runner.test.ts +612 -0
- package/src/execution/__tests__/temp-prompt.test.ts +53 -0
- package/src/execution/__tests__/timeout-integration.test.ts +615 -0
- package/src/execution/__tests__/tombstone-store.test.ts +73 -0
- package/src/execution/__tests__/turn-limiter-semantics.test.ts +194 -0
- package/src/execution/__tests__/turn-limiter.test.ts +65 -0
- package/src/execution/__tests__/ui-channels.test.ts +187 -0
- package/src/execution/__tests__/ui-interaction-model.test.ts +67 -0
- package/src/execution/__tests__/ui-request-handler-factory.test.ts +369 -0
- package/src/execution/__tests__/ui-request-handler.test.ts +204 -0
- package/src/execution/__tests__/ui-request-observability.test.ts +113 -0
- package/src/execution/__tests__/ui-request-queue.test.ts +133 -0
- package/src/execution/__tests__/worktree-manager.test.ts +633 -0
- package/src/execution/__tests__/worktree-pid-registration.integration.test.ts +229 -0
- package/src/execution/__tests__/worktree-reconcile.integration.test.ts +181 -0
- package/src/execution/__tests__/worktree-registry.test.ts +199 -0
- package/src/execution/agent-registry.ts +199 -0
- package/src/execution/agent-result-mapper.ts +90 -0
- package/src/execution/alive-store.ts +119 -0
- package/src/execution/argv-mirror.ts +113 -0
- package/src/execution/best-effort.ts +38 -0
- package/src/execution/channel-registry-access.ts +144 -0
- package/src/execution/concurrency-pool.ts +116 -0
- package/src/execution/config.ts +165 -0
- package/src/execution/dialog-queue.ts +330 -0
- package/src/execution/engine/__tests__/common/data-dir.test.ts +78 -0
- package/src/execution/engine/__tests__/common/errors.test.ts +132 -0
- package/src/execution/engine/__tests__/common/event-journal.test.ts +177 -0
- package/src/execution/engine/__tests__/common/kill-chain.test.ts +192 -0
- package/src/execution/engine/__tests__/common/nesting-guard.test.ts +81 -0
- package/src/execution/engine/__tests__/common/persona-router.test.ts +123 -0
- package/src/execution/engine/__tests__/common/pool-manager.test.ts +154 -0
- package/src/execution/engine/__tests__/common/schema-emulation.test.ts +128 -0
- package/src/execution/engine/__tests__/conformance/__fixtures__/pi-golden-events.json +28 -0
- package/src/execution/engine/__tests__/conformance/agent-event-invariants.ts +141 -0
- package/src/execution/engine/__tests__/conformance/contract.abort.test.ts +109 -0
- package/src/execution/engine/__tests__/conformance/contract.agent-events.test.ts +101 -0
- package/src/execution/engine/__tests__/conformance/contract.probe.test.ts +77 -0
- package/src/execution/engine/__tests__/conformance/contract.read-degradation.test.ts +104 -0
- package/src/execution/engine/__tests__/conformance/engine-conformance.live.test.ts +201 -0
- package/src/execution/engine/__tests__/conformance/golden-replay.pi.test.ts +76 -0
- package/src/execution/engine/__tests__/conformance/golden-replay.zcode.test.ts +79 -0
- package/src/execution/engine/__tests__/engine-discovery.test.ts +87 -0
- package/src/execution/engine/__tests__/model-prompt.test.ts +197 -0
- package/src/execution/engine/__tests__/paths.test.ts +39 -0
- package/src/execution/engine/__tests__/registry.test.ts +120 -0
- package/src/execution/engine/__tests__/routing.test.ts +231 -0
- package/src/execution/engine/common/data-dir.ts +66 -0
- package/src/execution/engine/common/errors.ts +183 -0
- package/src/execution/engine/common/event-journal.ts +254 -0
- package/src/execution/engine/common/journal-replay.ts +62 -0
- package/src/execution/engine/common/kill-chain.ts +221 -0
- package/src/execution/engine/common/nesting-guard.ts +50 -0
- package/src/execution/engine/common/persona-router.ts +108 -0
- package/src/execution/engine/common/pool-manager.ts +226 -0
- package/src/execution/engine/common/schema-emulation.ts +189 -0
- package/src/execution/engine/common/session-view-projection.ts +51 -0
- package/src/execution/engine/engine-discovery.ts +65 -0
- package/src/execution/engine/engines/pi/__tests__/pi-engine.test.ts +469 -0
- package/src/execution/engine/engines/pi/__tests__/reader.test.ts +155 -0
- package/src/execution/engine/engines/pi/__tests__/task-spec-mapper.test.ts +164 -0
- package/src/execution/engine/engines/pi/pi-engine.ts +415 -0
- package/src/execution/engine/engines/pi/reader.ts +48 -0
- package/src/execution/engine/engines/pi/registration.ts +35 -0
- package/src/execution/engine/engines/pi/task-spec-mapper.ts +100 -0
- package/src/execution/engine/engines/zcode/__tests__/__fixtures__/zcode-golden-spawn.json +39 -0
- package/src/execution/engine/engines/zcode/__tests__/launcher.test.ts +150 -0
- package/src/execution/engine/engines/zcode/__tests__/parser.test.ts +246 -0
- package/src/execution/engine/engines/zcode/__tests__/preparer.test.ts +228 -0
- package/src/execution/engine/engines/zcode/__tests__/reader.test.ts +210 -0
- package/src/execution/engine/engines/zcode/__tests__/registration.test.ts +71 -0
- package/src/execution/engine/engines/zcode/__tests__/zcode-engine.live.test.ts +127 -0
- package/src/execution/engine/engines/zcode/__tests__/zcode-engine.test.ts +580 -0
- package/src/execution/engine/engines/zcode/constants.ts +43 -0
- package/src/execution/engine/engines/zcode/golden-sample.ts +39 -0
- package/src/execution/engine/engines/zcode/launcher.ts +161 -0
- package/src/execution/engine/engines/zcode/parser.ts +436 -0
- package/src/execution/engine/engines/zcode/preparer.ts +363 -0
- package/src/execution/engine/engines/zcode/reader.ts +381 -0
- package/src/execution/engine/engines/zcode/registration.ts +37 -0
- package/src/execution/engine/engines/zcode/zcode-engine.ts +658 -0
- package/src/execution/engine/host-task-spec.ts +47 -0
- package/src/execution/engine/model-prompt.ts +158 -0
- package/src/execution/engine/paths.ts +42 -0
- package/src/execution/engine/port.ts +153 -0
- package/src/execution/engine/registry.ts +133 -0
- package/src/execution/engine/routing.ts +218 -0
- package/src/execution/engine/types.ts +309 -0
- package/src/execution/execute-options-mapper.ts +115 -0
- package/src/execution/execution-record.ts +984 -0
- package/src/execution/finalize-record.ts +254 -0
- package/src/execution/finalized-marker.ts +70 -0
- package/src/execution/get-state-handshake.ts +104 -0
- package/src/execution/host-mode.ts +56 -0
- package/src/execution/idle-gc.ts +47 -0
- package/src/execution/lifecycle-manager.ts +513 -0
- package/src/execution/lifecycle-predicates.ts +65 -0
- package/src/execution/manifest-store.ts +256 -0
- package/src/execution/model-config-service.ts +250 -0
- package/src/execution/model-resolver.ts +248 -0
- package/src/execution/notifier.ts +372 -0
- package/src/execution/notify-ledger.ts +580 -0
- package/src/execution/output-collector.ts +228 -0
- package/src/execution/path-encoding.ts +60 -0
- package/src/execution/pi-invocation.ts +120 -0
- package/src/execution/record-entry.ts +132 -0
- package/src/execution/record-store.ts +1265 -0
- package/src/execution/relay-env.ts +37 -0
- package/src/execution/session-context-resolver.ts +64 -0
- package/src/execution/session-file-gc.ts +120 -0
- package/src/execution/session-pending.ts +170 -0
- package/src/execution/session-reconstructor.ts +678 -0
- package/src/execution/session-runner.ts +1789 -0
- package/src/execution/sessions-index.ts +304 -0
- package/src/execution/spawn-event-adapter.ts +363 -0
- package/src/execution/stdin-writer.ts +198 -0
- package/src/execution/stream-sink.ts +126 -0
- package/src/execution/subagent-service.ts +2268 -0
- package/src/execution/subprocess-agent-runner.ts +317 -0
- package/src/execution/temp-prompt.ts +62 -0
- package/src/execution/tombstone-store.ts +72 -0
- package/src/execution/turn-limiter.ts +102 -0
- package/src/execution/types.ts +1023 -0
- package/src/execution/ui-channels.ts +216 -0
- package/src/execution/ui-interaction-model.ts +48 -0
- package/src/execution/ui-request-handler-factory.ts +243 -0
- package/src/execution/ui-request-observability.ts +81 -0
- package/src/execution/ui-request-queue.ts +184 -0
- package/src/execution/worktree-manager.ts +688 -0
- package/src/execution/worktree-registry.ts +279 -0
- package/src/index.ts +87 -0
- package/src/orchestration/__tests__/__fixtures__/worker-template.snapshot.txt +349 -0
- package/src/orchestration/__tests__/agent-call-catch-fallback.test.ts +202 -0
- package/src/orchestration/__tests__/agent-call-stream.test.ts +152 -0
- package/src/orchestration/__tests__/args-validator.test.ts +143 -0
- package/src/orchestration/__tests__/config-loader.test.ts +503 -0
- package/src/orchestration/__tests__/error-recovery-handlers.test.ts +809 -0
- package/src/orchestration/__tests__/error-recovery-postmessage-defense.test.ts +404 -0
- package/src/orchestration/__tests__/error-recovery-serialize-failed-result.test.ts +56 -0
- package/src/orchestration/__tests__/error-recovery-workflow-call.test.ts +166 -0
- package/src/orchestration/__tests__/execute-agent-call.test.ts +451 -0
- package/src/orchestration/__tests__/launcher-nested-workflow.test.ts +600 -0
- package/src/orchestration/__tests__/lifecycle-runid-injection.test.ts +96 -0
- package/src/orchestration/__tests__/lifecycle.test.ts +659 -0
- package/src/orchestration/__tests__/non-cloneable-return-e2e.test.ts +95 -0
- package/src/orchestration/__tests__/review-fix-loop-scriptpath-failfast.test.ts +183 -0
- package/src/orchestration/__tests__/script-lint.test.ts +831 -0
- package/src/orchestration/__tests__/skill-discovery.test.ts +210 -0
- package/src/orchestration/__tests__/test-mocks.ts +197 -0
- package/src/orchestration/__tests__/worker-exit-without-result.test.ts +368 -0
- package/src/orchestration/__tests__/worker-host.test.ts +120 -0
- package/src/orchestration/__tests__/worker-returnmeta-passthrough.test.ts +164 -0
- package/src/orchestration/__tests__/worker-script-builder-runtime.test.ts +563 -0
- package/src/orchestration/__tests__/worker-script-builder.test.ts +309 -0
- package/src/orchestration/__tests__/worker-script-template-snapshot.test.ts +129 -0
- package/src/orchestration/__tests__/workflow-nesting-e2e.test.ts +317 -0
- package/src/orchestration/__tests__/workflow-script-lint-memo.test.ts +110 -0
- package/src/orchestration/agent-opts-resolver.ts +174 -0
- package/src/orchestration/args-validator.ts +127 -0
- package/src/orchestration/config-loader.ts +316 -0
- package/src/orchestration/error-recovery.ts +1018 -0
- package/src/orchestration/execute-agent-call.ts +256 -0
- package/src/orchestration/launcher.ts +455 -0
- package/src/orchestration/lifecycle.ts +399 -0
- package/src/orchestration/models/__tests__/budget.test.ts +307 -0
- package/src/orchestration/models/agent-call.ts +83 -0
- package/src/orchestration/models/budget.ts +118 -0
- package/src/orchestration/models/ports.ts +164 -0
- package/src/orchestration/models/run-runtime.ts +104 -0
- package/src/orchestration/models/run-spec.ts +83 -0
- package/src/orchestration/models/run-state.ts +44 -0
- package/src/orchestration/models/trace.ts +183 -0
- package/src/orchestration/models/types.ts +301 -0
- package/src/orchestration/models/workflow-run.ts +254 -0
- package/src/orchestration/models/workflow-script-registry.ts +35 -0
- package/src/orchestration/models/workflow-script.ts +117 -0
- package/src/orchestration/script-lint.ts +766 -0
- package/src/orchestration/skill-discovery.ts +135 -0
- package/src/orchestration/worker-handle.ts +115 -0
- package/src/orchestration/worker-host.ts +98 -0
- package/src/orchestration/worker-script-builder.ts +421 -0
- package/src/orchestration/workflow-files.ts +85 -0
- package/src/orchestration/workflow-script-registry-impl.ts +133 -0
- package/src/shared/__tests__/agent-ref.test.ts +34 -0
- package/src/shared/__tests__/meta-parser.test.ts +304 -0
- package/src/shared/__tests__/model-ref.test.ts +306 -0
- package/src/shared/__tests__/resource-discovery-manifest-cache.test.ts +288 -0
- package/src/shared/__tests__/resource-discovery.test.ts +749 -0
- package/src/shared/__tests__/resource-meta.test.ts +51 -0
- package/src/shared/__tests__/schema-jsonify.test.ts +81 -0
- package/src/shared/__tests__/timer-delay.test.ts +61 -0
- package/src/shared/agent-event.ts +13 -0
- package/src/shared/agent-ref.ts +57 -0
- package/src/shared/meta-parser.ts +261 -0
- package/src/shared/model-ref.ts +286 -0
- package/src/shared/resource-discovery.ts +835 -0
- package/src/shared/resource-meta.ts +65 -0
- package/src/shared/schema-env.ts +44 -0
- package/src/shared/schema-jsonify.ts +58 -0
- package/src/shared/timer-delay.ts +54 -0
- package/src/shared/xml-injection.ts +35 -0
- package/workflows/README.md +81 -0
- package/workflows/_shared/agent-refs.cjs +40 -0
- package/workflows/chain.js +137 -0
- package/workflows/map-reduce.js +180 -0
- package/workflows/parallel.js +154 -0
- package/workflows/review-fix-loop-utils.cjs +1542 -0
- package/workflows/review-fix-loop.js +1605 -0
- package/workflows/scatter-gather.js +184 -0
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
// src/orchestration/args-validator.ts
|
|
2
|
+
//
|
|
3
|
+
// m3:参数校验单一 chokepoint(IF3 validateRunArgs + IF4 ArgsValidationError)。
|
|
4
|
+
// lifecycle.runWorkflow 首行调用——§5.3 fail-fast:参数错误在 worker 启动前返回,
|
|
5
|
+
// 带「read 脚本重看」指引。
|
|
6
|
+
//
|
|
7
|
+
// 设计决策(m3 design-review 探针实证):
|
|
8
|
+
// - ajv 选项钉死 { coerceTypes:true, strictSchema:false, allErrors:true, useDefaults:false }:
|
|
9
|
+
// coerceTypes 原地规范化弱 LLM 的字符串参数('false'→false、'10'→10,m2 MAJOR-1 闭环);
|
|
10
|
+
// strictSchema:false 容忍用户 workflow 的自定义关键字/format(默认 strict:true 会误判畸形);
|
|
11
|
+
// useDefaults:false 不注入 schema default(脚本 fallback 语义不变)。
|
|
12
|
+
// - 无缓存:ajv.compile 实测 0.006ms/次([P-compile]),v5 §6.5 的 Map 缓存被探针证据推翻。
|
|
13
|
+
// - null-scan + required 空串复查:coerceTypes 下 {target:null} 会被 coerce 成 "" 放行
|
|
14
|
+
// required(required 只查属性存在性)——null 视为缺失、必填字符串空串视为失败,
|
|
15
|
+
// 与 review-fix-loop 脚本的 !target 语义对齐,保住「启动前 fail-fast」承诺。
|
|
16
|
+
|
|
17
|
+
import Ajv from "ajv";
|
|
18
|
+
|
|
19
|
+
import type { RunSpec } from "./models/run-spec.ts";
|
|
20
|
+
|
|
21
|
+
/** 参数校验失败(§5.3)。三调用方各自 catch 并映射到返回类型。 */
|
|
22
|
+
export class ArgsValidationError extends Error {
|
|
23
|
+
readonly workflowName: string;
|
|
24
|
+
/** ajv 校验错误数组(畸形 schema 时为 undefined)。 */
|
|
25
|
+
readonly errors?: readonly unknown[];
|
|
26
|
+
|
|
27
|
+
constructor(workflowName: string, message: string, errors?: readonly unknown[]) {
|
|
28
|
+
super(message);
|
|
29
|
+
this.name = "ArgsValidationError";
|
|
30
|
+
this.workflowName = workflowName;
|
|
31
|
+
this.errors = errors;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
const ajv = new Ajv({
|
|
36
|
+
coerceTypes: true,
|
|
37
|
+
strictSchema: false,
|
|
38
|
+
allErrors: true,
|
|
39
|
+
useDefaults: false,
|
|
40
|
+
});
|
|
41
|
+
|
|
42
|
+
/** §5.3 错误文案:workflow 名 + errors 摘要 + info 指引。 */
|
|
43
|
+
function formatMessage(name: string, errors: readonly unknown[]): string {
|
|
44
|
+
const lines = errors.map((e) => {
|
|
45
|
+
let path = "/";
|
|
46
|
+
let msg = "invalid";
|
|
47
|
+
if (e !== null && typeof e === "object") {
|
|
48
|
+
const err = e as Record<string, unknown>;
|
|
49
|
+
if (typeof err.instancePath === "string" && err.instancePath) path = err.instancePath;
|
|
50
|
+
if (typeof err.message === "string") msg = err.message;
|
|
51
|
+
}
|
|
52
|
+
return `- ${path}: ${msg}`;
|
|
53
|
+
});
|
|
54
|
+
return (
|
|
55
|
+
`Invalid args for workflow '${name}': ${errors.length} error(s)\n` +
|
|
56
|
+
`${lines.join("\n")}\n` +
|
|
57
|
+
`Read the workflow script file (location from <available_workflows>) for the parameter schema and usage.`
|
|
58
|
+
);
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
/**
|
|
62
|
+
* 校验 spec.parameters(JSON Schema draft-07)对 spec.args 的约束。
|
|
63
|
+
*
|
|
64
|
+
* - spec.parameters === undefined → 跳过(安全退化:漏拷 parameters 退化是「不校验」非「校验错」)
|
|
65
|
+
* - coerceTypes 原地规范化 spec.args(worker 启动 + 崩溃重建重跑共用同一对象,
|
|
66
|
+
* run.spec === spec,保证重跑路径参数一致)
|
|
67
|
+
* - 失败 throw ArgsValidationError(非原始 ajv 错误)
|
|
68
|
+
*
|
|
69
|
+
* @throws ArgsValidationError 参数不合法或 schema 无效
|
|
70
|
+
*/
|
|
71
|
+
export function validateRunArgs(spec: RunSpec): void {
|
|
72
|
+
const { parameters, args, scriptName } = spec;
|
|
73
|
+
if (parameters === undefined) return;
|
|
74
|
+
|
|
75
|
+
if (parameters === null || typeof parameters !== "object" || Array.isArray(parameters)) {
|
|
76
|
+
throw new ArgsValidationError(
|
|
77
|
+
scriptName,
|
|
78
|
+
`Workflow '${scriptName}' has an invalid parameter schema (expected object). Read the workflow script file (location from <available_workflows>) to inspect it.`,
|
|
79
|
+
);
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
// null-scan:null 值视为缺失(coerceTypes 会把 null→"" 放行 required,绕过 fail-fast)。
|
|
83
|
+
// 只删 schema 未声明 nullable 的键——type 含 "null"(如 ["string","null"])的合法 null
|
|
84
|
+
// 输入保留(m3 exec-review M1 探针实证:全键删除会拒掉 nullable required 的合法值)。
|
|
85
|
+
const schema = parameters as Record<string, unknown>;
|
|
86
|
+
const properties =
|
|
87
|
+
schema.properties !== null && typeof schema.properties === "object"
|
|
88
|
+
? (schema.properties as Record<string, unknown>)
|
|
89
|
+
: {};
|
|
90
|
+
for (const key of Object.keys(args)) {
|
|
91
|
+
if (args[key] !== null) continue;
|
|
92
|
+
const prop = properties[key];
|
|
93
|
+
let isNullable = false;
|
|
94
|
+
if (prop !== null && typeof prop === "object") {
|
|
95
|
+
const propType = (prop as Record<string, unknown>).type;
|
|
96
|
+
isNullable = Array.isArray(propType)
|
|
97
|
+
? (propType as unknown[]).includes("null")
|
|
98
|
+
: propType === "null";
|
|
99
|
+
}
|
|
100
|
+
if (!isNullable) delete args[key];
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
let validate: ReturnType<Ajv["compile"]>;
|
|
104
|
+
try {
|
|
105
|
+
validate = ajv.compile(parameters);
|
|
106
|
+
} catch (err) {
|
|
107
|
+
// 真畸形 schema(如 type:'not-a-type')→ 结构化 ArgsValidationError,不泄漏原始 throw
|
|
108
|
+
const detail = err instanceof Error ? err.message : String(err);
|
|
109
|
+
throw new ArgsValidationError(
|
|
110
|
+
scriptName,
|
|
111
|
+
`Workflow '${scriptName}' has an invalid parameter schema: ${detail}. Read the workflow script file (location from <available_workflows>) to inspect it.`,
|
|
112
|
+
);
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
if (!validate(args)) {
|
|
116
|
+
throw new ArgsValidationError(
|
|
117
|
+
scriptName,
|
|
118
|
+
formatMessage(scriptName, validate.errors ?? []),
|
|
119
|
+
validate.errors ?? undefined,
|
|
120
|
+
);
|
|
121
|
+
}
|
|
122
|
+
// 注:非空约束由 schema 声明(minLength/pattern),chokepoint 不发明约束——
|
|
123
|
+
// m3 exec-review M2:硬编码 trim 空串复查与 schema 显式语义(enum 含 ''/minLength:0)
|
|
124
|
+
// 矛盾。review-fix-loop 的 target 用 { minLength: 1, pattern: '\\S' } 表达。
|
|
125
|
+
// 校验失败时 spec.args 可能已被 null-scan/coerce 部分 mutate(文档化行为:失败后
|
|
126
|
+
// 调用方不应复用该 args 对象)。
|
|
127
|
+
}
|
|
@@ -0,0 +1,316 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Workflow Config Loader — 统一资源发现版(ADR-031)
|
|
3
|
+
*
|
|
4
|
+
* 扫描逻辑委托给 shared/resource-discovery(与 agent 发现共享同一套扫描源)。
|
|
5
|
+
* 本文件只保留 workflow 专属的 meta 提取(经 shared/meta-parser.ts IF1 统一 parser)+ 60s TTL 缓存。
|
|
6
|
+
*
|
|
7
|
+
* m2 收敛:删 extractMetaViaRegex + safeEvalObject(new Function),改调 parseResourceMeta
|
|
8
|
+
* (真实 YAML 解析 @pi-meta 块注释,发现期不执行作者代码,v5 原则 6 no-eval)。
|
|
9
|
+
* toCachedMeta 整对象透传(...meta),不再 {name,description,phases} 解构——消灭第 1 处重映射。
|
|
10
|
+
*
|
|
11
|
+
* Failed imports are marked available=false — the loader never throws.
|
|
12
|
+
*/
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
import { resolve } from "node:path";
|
|
16
|
+
|
|
17
|
+
// WorkflowMeta 规范来源是 shared/resource-meta.ts(m1 DM1);WorkflowSource 来自 workflow-script
|
|
18
|
+
import type { WorkflowSource } from "./models/workflow-script.ts";
|
|
19
|
+
import { clearLintMemo } from "./models/workflow-script.ts";
|
|
20
|
+
import type { WorkflowMeta } from "../shared/resource-meta.ts";
|
|
21
|
+
import { getCachedFile, getCachedFileContent, clearFileCache } from "../shared/resource-discovery.ts";
|
|
22
|
+
import { parseResourceMeta } from "../shared/meta-parser.ts";
|
|
23
|
+
import { normalizeRef, WORKFLOW_REF_EXT } from "../shared/agent-ref.ts";
|
|
24
|
+
export type { WorkflowMeta, WorkflowSource };
|
|
25
|
+
|
|
26
|
+
import { getHostServices } from "../core/host-services.ts";
|
|
27
|
+
import { getLogger } from "../core/logger.ts";
|
|
28
|
+
|
|
29
|
+
const logger = getLogger("config-loader");
|
|
30
|
+
|
|
31
|
+
import {
|
|
32
|
+
discoverResources,
|
|
33
|
+
findWorkspaceRoot,
|
|
34
|
+
type ResourceSource,
|
|
35
|
+
type ScanConfig,
|
|
36
|
+
} from "../shared/resource-discovery.ts";
|
|
37
|
+
|
|
38
|
+
// ── Public types ──────────────────────────────────────────────
|
|
39
|
+
|
|
40
|
+
export interface CachedWorkflowMeta extends WorkflowMeta {
|
|
41
|
+
/** Absolute path to the script file */
|
|
42
|
+
path: string;
|
|
43
|
+
/** false when the script failed to load or has no valid meta export */
|
|
44
|
+
available: boolean;
|
|
45
|
+
/** Whether this is a saved (fixed) or temporary (ad-hoc) workflow */
|
|
46
|
+
source: WorkflowSource;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
// ── Internal types ────────────────────────────────────────────
|
|
50
|
+
|
|
51
|
+
interface CacheEntry {
|
|
52
|
+
meta: CachedWorkflowMeta;
|
|
53
|
+
/** 文件 mtime(m5:mtime 键控判失效——删 60s TTL,mtime 未变即命中)。 */
|
|
54
|
+
mtimeMs: number;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
// ── Constants ─────────────────────────────────────────────────
|
|
58
|
+
|
|
59
|
+
// m5:删 60s TTL——mtime 键控判失效(TTL 只服务 getWorkflow 且造成 60s 陈旧窗口)。
|
|
60
|
+
|
|
61
|
+
// ── Cache ─────────────────────────────────────────────────────
|
|
62
|
+
|
|
63
|
+
// Keyed by workspace root so that switching projects does not serve stale entries.
|
|
64
|
+
const cache = new Map<string, Map<string, CacheEntry>>();
|
|
65
|
+
|
|
66
|
+
function getCacheBucket(workspaceRoot: string): Map<string, CacheEntry> {
|
|
67
|
+
let bucket = cache.get(workspaceRoot);
|
|
68
|
+
if (!bucket) {
|
|
69
|
+
bucket = new Map<string, CacheEntry>();
|
|
70
|
+
cache.set(workspaceRoot, bucket);
|
|
71
|
+
}
|
|
72
|
+
return bucket;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
function isCacheValid(entry: CacheEntry): boolean {
|
|
76
|
+
// m5:mtime 判变——文件 mtime 未变即命中(删 TTL 后文件变更立即反映)
|
|
77
|
+
const file = getCachedFile(entry.meta.path);
|
|
78
|
+
return file !== null && file.mtimeMs === entry.mtimeMs;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
// ── Helpers ───────────────────────────────────────────────────
|
|
82
|
+
|
|
83
|
+
/** Extract filename stem (no directory, no extension). */
|
|
84
|
+
function stem(filePath: string): string {
|
|
85
|
+
const base = filePath.split("/").pop() ?? filePath;
|
|
86
|
+
const dot = base.lastIndexOf(".");
|
|
87
|
+
return dot > 0 ? base.slice(0, dot) : base;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
// ── ResourceSource → WorkflowSource 映射 ─────────────────────
|
|
91
|
+
|
|
92
|
+
/** 统一模块的 ResourceSource 映射为 workflow 的 saved/tmp 语义 */
|
|
93
|
+
function toWorkflowSource(source: ResourceSource): WorkflowSource {
|
|
94
|
+
return source === "project-pi-tmp" ? "tmp" : "saved";
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
/**
|
|
98
|
+
* 按路径推导 ResourceSource(IF4/外部 #5 残留)。
|
|
99
|
+
*
|
|
100
|
+
* getWorkflowByPath 可加载任意绝对路径(不限扫描源),此前硬编码 "user-pi"
|
|
101
|
+
* 使 workspaceRoot/.pi/workflows/.tmp/ 下的临时脚本按路径加载被错标 saved
|
|
102
|
+
* (discoverWorkflows 对同文件正确标 tmp,两路径不一致)。修正:路径落在
|
|
103
|
+
* tmp 目录前缀内 → "project-pi-tmp",其余 → "user-pi"(非 tmp 路径输出不变,DS4)。
|
|
104
|
+
*/
|
|
105
|
+
function deriveResourceSource(filePath: string, workspaceRoot: string): ResourceSource {
|
|
106
|
+
const tmpDir = resolve(workspaceRoot, ".pi/workflows/.tmp");
|
|
107
|
+
const normalized = resolve(filePath);
|
|
108
|
+
return normalized === tmpDir || normalized.startsWith(`${tmpDir}/`) ? "project-pi-tmp" : "user-pi";
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
// ── 单文件 → CachedWorkflowMeta(IF1 parseResourceMeta + 整对象透传)──
|
|
112
|
+
|
|
113
|
+
/**
|
|
114
|
+
* 提取单个文件的 meta(经 IF1 parseResourceMeta),失败时标 available=false(fail-safe 不抛)。
|
|
115
|
+
*
|
|
116
|
+
* m2:整对象透传(...meta),不再 {name,description,phases} 解构——消灭第 1 处重映射,
|
|
117
|
+
* parameters/usage/when/notFor 一路流到 script.meta。仅认 @pi-meta 新格式(D1 无 adapter)。
|
|
118
|
+
*/
|
|
119
|
+
async function toCachedMeta(
|
|
120
|
+
filePath: string,
|
|
121
|
+
source: ResourceSource,
|
|
122
|
+
): Promise<CachedWorkflowMeta> {
|
|
123
|
+
const fallbackName = stem(filePath);
|
|
124
|
+
const wfSource = toWorkflowSource(source);
|
|
125
|
+
try {
|
|
126
|
+
const content = getCachedFileContent(filePath); // m5:统一 mtime 缓存层
|
|
127
|
+
if (content === null) throw new Error("file not readable");
|
|
128
|
+
const meta = parseResourceMeta(content, "workflow");
|
|
129
|
+
if (meta && meta.kind === "workflow") {
|
|
130
|
+
return { ...meta, path: filePath, available: true, source: wfSource };
|
|
131
|
+
}
|
|
132
|
+
// m2 exec-review MINOR-4:文件可读但 meta=null → 旧 const meta 格式或格式错误,
|
|
133
|
+
// 静默 available=false(D1 无 adapter)。warn 帮助用户定位需迁移到 @pi-meta 的存量 workflow。
|
|
134
|
+
logger.warn(
|
|
135
|
+
`[config-loader] ${filePath}: 未解析到 @pi-meta 元数据(旧 const meta 格式需迁移)→ available=false`,
|
|
136
|
+
);
|
|
137
|
+
} catch (err) {
|
|
138
|
+
// 读失败 → available=false(fail-safe 不抛,与原行为一致)
|
|
139
|
+
logger.debug(`[config-loader] skip unreadable workflow file ${filePath}`, {
|
|
140
|
+
reason: err instanceof Error ? err.message : String(err),
|
|
141
|
+
});
|
|
142
|
+
}
|
|
143
|
+
return {
|
|
144
|
+
kind: "workflow",
|
|
145
|
+
name: fallbackName,
|
|
146
|
+
description: "",
|
|
147
|
+
phases: [],
|
|
148
|
+
path: filePath,
|
|
149
|
+
available: false,
|
|
150
|
+
source: wfSource,
|
|
151
|
+
};
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
// ── Public API ────────────────────────────────────────────────
|
|
155
|
+
|
|
156
|
+
/**
|
|
157
|
+
* workflow 发现的扫描配置。每个字段显式声明一个扫描源目录。
|
|
158
|
+
*
|
|
159
|
+
* 生产环境用 defaultScanConfig() 构造默认值(全局 ~/.pi/agent/* 目录)。
|
|
160
|
+
* 测试/隔离环境构造完整 config 指向 tmp 目录,完全不碰全局文件系统。
|
|
161
|
+
*/
|
|
162
|
+
export interface WorkflowScanConfig {
|
|
163
|
+
/** 项目级脚本目录(workspaceRoot/.pi/workflows) */
|
|
164
|
+
projectDir: string;
|
|
165
|
+
/** user 级脚本目录(~/.pi/agent/workflows) */
|
|
166
|
+
userDir: string;
|
|
167
|
+
/** 临时脚本目录(workspaceRoot/.pi/workflows/.tmp) */
|
|
168
|
+
tmpDir: string;
|
|
169
|
+
/** npm 包扫描目录(~/.pi/agent/npm/node_modules 等) */
|
|
170
|
+
npmDirs: string[];
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
/**
|
|
174
|
+
* 把 WorkflowScanConfig 转为统一模块的 ScanConfig。
|
|
175
|
+
*
|
|
176
|
+
* 测试隔离场景下传入完整 config——此时按声明的 projectDir/tmpDir 反推
|
|
177
|
+
* workspaceRoot(与原行为一致:resolve(config.projectDir, "../..")),hostRoots
|
|
178
|
+
* 置空(隔离 = 不注入宿主根,仅 project 根可命中)。
|
|
179
|
+
* 生产场景(省略或部分 config)走 findWorkspaceRoot(cwd) + 宿主注入 workflows 根。
|
|
180
|
+
*/
|
|
181
|
+
function toScanConfig(
|
|
182
|
+
configOrCwd: Partial<WorkflowScanConfig> & { cwd?: string } | undefined,
|
|
183
|
+
): ScanConfig {
|
|
184
|
+
// 测试隔离:传入了 projectDir,直接反推 workspaceRoot
|
|
185
|
+
if (configOrCwd?.projectDir) {
|
|
186
|
+
const workspaceRoot = resolve(configOrCwd.projectDir, "../..");
|
|
187
|
+
return {
|
|
188
|
+
kind: "workflows",
|
|
189
|
+
workspaceRoot,
|
|
190
|
+
hostRoots: [],
|
|
191
|
+
includeTmp: true,
|
|
192
|
+
};
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
// 生产默认(hostRoots 现取——pi 壳 discoveryRoots 每次现取 getAgentDir,实例隔离)
|
|
196
|
+
const cwd = configOrCwd?.cwd;
|
|
197
|
+
const workspaceRoot = findWorkspaceRoot(cwd);
|
|
198
|
+
return {
|
|
199
|
+
kind: "workflows",
|
|
200
|
+
workspaceRoot,
|
|
201
|
+
hostRoots: getHostServices().discoveryRoots?.()?.workflows ?? [],
|
|
202
|
+
includeTmp: true,
|
|
203
|
+
};
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
/**
|
|
207
|
+
* 从指定 config 扫描所有 workflow 脚本,按 tmp>project>npm>user 优先级
|
|
208
|
+
* 去重,60s TTL 缓存(按 workspaceRoot 分桶)。
|
|
209
|
+
*
|
|
210
|
+
* 扫描逻辑委托给 shared/resource-discovery(与 agent 发现共享同一套扫描源)。
|
|
211
|
+
*
|
|
212
|
+
* Never throws. 解析失败的脚本以 available=false 返回。
|
|
213
|
+
*
|
|
214
|
+
* @param configOrCwd 完整 WorkflowScanConfig(隔离用)、部分字段(覆盖默认)、
|
|
215
|
+
* 或省略(纯生产默认)。可选 cwd 用于推导 workspaceRoot。
|
|
216
|
+
*/
|
|
217
|
+
export async function discoverWorkflows(
|
|
218
|
+
configOrCwd?: Partial<WorkflowScanConfig> & { cwd?: string },
|
|
219
|
+
): Promise<CachedWorkflowMeta[]> {
|
|
220
|
+
const scanConfig = toScanConfig(configOrCwd);
|
|
221
|
+
const workspaceRoot = scanConfig.workspaceRoot;
|
|
222
|
+
|
|
223
|
+
// 统一发现:返回已去重的资源列表(按优先级合并)
|
|
224
|
+
const resources = await discoverResources(scanConfig);
|
|
225
|
+
|
|
226
|
+
// 提取 meta(逐文件)
|
|
227
|
+
const mergedMap = new Map<string, CachedWorkflowMeta>();
|
|
228
|
+
for (const resource of resources) {
|
|
229
|
+
const cachedMeta = await toCachedMeta(resource.path, resource.source);
|
|
230
|
+
// available=false 的不覆盖已有的 available=true(与统一模块逻辑一致)
|
|
231
|
+
if (!cachedMeta.available && mergedMap.has(cachedMeta.name)) {
|
|
232
|
+
continue;
|
|
233
|
+
}
|
|
234
|
+
mergedMap.set(cachedMeta.name, cachedMeta);
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
// 按 name 码点序输出(KV-cache 契约,与 injector 层一致):不依赖发现层
|
|
238
|
+
// 优先级迭代序 / readdir 枚举序,重建结果顺序稳定。
|
|
239
|
+
const merged = Array.from(mergedMap.values()).sort((a, b) =>
|
|
240
|
+
a.name < b.name ? -1 : a.name > b.name ? 1 : 0,
|
|
241
|
+
);
|
|
242
|
+
|
|
243
|
+
// Update cache (scoped to current workspace root)
|
|
244
|
+
const bucket = getCacheBucket(workspaceRoot);
|
|
245
|
+
for (const wf of merged) {
|
|
246
|
+
const file = getCachedFile(wf.path);
|
|
247
|
+
bucket.set(wf.name, { meta: wf, mtimeMs: file?.mtimeMs ?? 0 });
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
return merged;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
/**
|
|
254
|
+
* Load and cache all available workflow scripts from project-level
|
|
255
|
+
* (.pi/workflows/) and user-level (~/.pi/agent/workflows/) directories.
|
|
256
|
+
*
|
|
257
|
+
* discoverWorkflows() 的生产 preset——用全局默认目录。
|
|
258
|
+
*
|
|
259
|
+
* Never throws. Failed imports are returned with available=false.
|
|
260
|
+
*/
|
|
261
|
+
export async function loadWorkflows(): Promise<CachedWorkflowMeta[]> {
|
|
262
|
+
return discoverWorkflows();
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
/**
|
|
266
|
+
* Get a specific workflow by name.
|
|
267
|
+
* Returns cached result if still valid, otherwise triggers a fresh load.
|
|
268
|
+
*/
|
|
269
|
+
export async function getWorkflow(name: string): Promise<CachedWorkflowMeta | undefined> {
|
|
270
|
+
const workspaceRoot = findWorkspaceRoot();
|
|
271
|
+
const bucket = getCacheBucket(workspaceRoot);
|
|
272
|
+
const cached = bucket.get(name);
|
|
273
|
+
if (cached && isCacheValid(cached)) {
|
|
274
|
+
return cached.meta;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
const workflows = await loadWorkflows();
|
|
278
|
+
return workflows.find((wf) => wf.name === name);
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
/**
|
|
282
|
+
* 按绝对路径加载单个 workflow(workflowRef 统一解析入口——S2 路径统一)。
|
|
283
|
+
*
|
|
284
|
+
* - ~/ 前缀展开;相对路径/非 .js 引用返回 undefined(引用唯一形态 = 绝对路径)
|
|
285
|
+
* - 任意路径(不限扫描源):内置包内脚本、用户任意位置脚本均可执行
|
|
286
|
+
* - meta 提取失败/文件不可读 → available=false(fail-safe,不抛)
|
|
287
|
+
* - [perf] 与 getWorkflow(name) 对称走 bucket 缓存(key=绝对路径,与 stem 名不冲突),
|
|
288
|
+
* 消除 workflow tool 主路径每次 run 的全文 regex + YAML.parse(mtime 判变失效)
|
|
289
|
+
*/
|
|
290
|
+
export async function getWorkflowByPath(ref: string): Promise<CachedWorkflowMeta | undefined> {
|
|
291
|
+
const filePath = normalizeRef(ref, WORKFLOW_REF_EXT);
|
|
292
|
+
if (filePath === null) return undefined;
|
|
293
|
+
const workspaceRoot = findWorkspaceRoot();
|
|
294
|
+
const bucket = getCacheBucket(workspaceRoot);
|
|
295
|
+
const cached = bucket.get(filePath);
|
|
296
|
+
if (cached && isCacheValid(cached)) {
|
|
297
|
+
return cached.meta;
|
|
298
|
+
}
|
|
299
|
+
// IF4:source 按路径推导——.tmp 前缀 → project-pi-tmp(→ "tmp"),其余 user-pi 维持现值
|
|
300
|
+
const meta = await toCachedMeta(filePath, deriveResourceSource(filePath, workspaceRoot));
|
|
301
|
+
const file = getCachedFile(filePath);
|
|
302
|
+
if (file) bucket.set(filePath, { meta, mtimeMs: file.mtimeMs });
|
|
303
|
+
return meta;
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
/**
|
|
307
|
+
* Invalidate the internal meta cache.
|
|
308
|
+
* The next call to loadWorkflows or getWorkflow will re-scan directories.
|
|
309
|
+
*/
|
|
310
|
+
export function invalidateCache(): void {
|
|
311
|
+
// m5:清统一 mtime 缓存层 + bucket(测试隔离 + mtime 漏判场景手动刷新兜底)
|
|
312
|
+
// IF9:连带清 workflow-script validate 的 lint memo(同源文件缓存,测试隔离统一走它)
|
|
313
|
+
clearFileCache();
|
|
314
|
+
cache.clear();
|
|
315
|
+
clearLintMemo();
|
|
316
|
+
}
|