@interf/compiler 0.13.0 → 0.18.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/LICENSE.md +1 -0
- package/README.md +50 -7
- package/TRADEMARKS.md +4 -4
- package/agent-skills/interf-actions/SKILL.md +51 -5
- package/agent-skills/interf-actions/references/cli.md +82 -82
- package/builtin-methods/interf-default/README.md +6 -7
- package/builtin-methods/interf-default/method.json +7 -68
- package/builtin-methods/interf-default/method.schema.json +52 -50
- package/dist/cli/commands/agents.d.ts +2 -0
- package/dist/cli/commands/agents.js +213 -0
- package/dist/cli/commands/compile.js +10 -1
- package/dist/cli/commands/doctor.js +1 -1
- package/dist/cli/commands/login.js +1 -1
- package/dist/cli/commands/logout.js +1 -1
- package/dist/cli/commands/mcp.d.ts +42 -0
- package/dist/cli/commands/mcp.js +239 -0
- package/dist/cli/commands/method.js +1 -1
- package/dist/cli/commands/prep.js +81 -7
- package/dist/cli/commands/reset.js +1 -1
- package/dist/cli/commands/runs.js +1 -1
- package/dist/cli/commands/status.js +1 -1
- package/dist/cli/commands/verify.d.ts +10 -0
- package/dist/cli/commands/{test.js → verify.js} +30 -15
- package/dist/cli/commands/web.js +71 -18
- package/dist/cli/commands/wizard.js +462 -107
- package/dist/cli/index.d.ts +4 -2
- package/dist/cli/index.js +7 -3
- package/dist/compiler-ui/404.html +1 -1
- package/dist/compiler-ui/__next.__PAGE__.txt +2 -2
- package/dist/compiler-ui/__next._full.txt +3 -3
- package/dist/compiler-ui/__next._head.txt +1 -1
- package/dist/compiler-ui/__next._index.txt +2 -2
- package/dist/compiler-ui/__next._tree.txt +2 -2
- package/dist/compiler-ui/_next/static/chunks/{045gole2ojo3g.css → 0_c_tvh-cukjz.css} +1 -1
- package/dist/compiler-ui/_next/static/chunks/0f_geuwdesg_c.js +114 -0
- package/dist/compiler-ui/_not-found/__next._full.txt +2 -2
- package/dist/compiler-ui/_not-found/__next._head.txt +1 -1
- package/dist/compiler-ui/_not-found/__next._index.txt +2 -2
- package/dist/compiler-ui/_not-found/__next._not-found.__PAGE__.txt +1 -1
- package/dist/compiler-ui/_not-found/__next._not-found.txt +1 -1
- package/dist/compiler-ui/_not-found/__next._tree.txt +2 -2
- package/dist/compiler-ui/_not-found.html +1 -1
- package/dist/compiler-ui/_not-found.txt +2 -2
- package/dist/compiler-ui/index.html +1 -1
- package/dist/compiler-ui/index.txt +3 -3
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/packages/contracts/index.d.ts +2 -1
- package/dist/packages/contracts/index.js +1 -0
- package/dist/packages/contracts/lib/schema.d.ts +324 -31
- package/dist/packages/contracts/lib/schema.js +281 -21
- package/dist/packages/{local-service → engine}/action-definitions.js +9 -2
- package/dist/packages/{local-service → engine}/action-planner.d.ts +1 -1
- package/dist/packages/{local-service → engine}/action-planner.js +1 -1
- package/dist/packages/{agents → engine/agents}/index.d.ts +3 -0
- package/dist/packages/{agents → engine/agents}/index.js +3 -0
- package/dist/packages/{agents → engine/agents}/lib/compiled-bootstrap.js +2 -2
- package/dist/packages/engine/agents/lib/detection.d.ts +13 -0
- package/dist/packages/{agents → engine/agents}/lib/detection.js +11 -0
- package/dist/packages/{agents → engine/agents}/lib/executors.d.ts +2 -2
- package/dist/packages/{agents → engine/agents}/lib/shells.d.ts +14 -6
- package/dist/packages/{agents → engine/agents}/lib/shells.js +133 -126
- package/dist/packages/{agents → engine/agents}/lib/user-config.js +2 -2
- package/dist/packages/engine/agents/registry.d.ts +91 -0
- package/dist/packages/engine/agents/registry.js +321 -0
- package/dist/packages/engine/agents/role-executors.d.ts +35 -0
- package/dist/packages/engine/agents/role-executors.js +88 -0
- package/dist/packages/engine/agents/role-router.d.ts +66 -0
- package/dist/packages/engine/agents/role-router.js +73 -0
- package/dist/packages/{local-service → engine}/client.d.ts +9 -9
- package/dist/packages/{local-service → engine}/client.js +11 -11
- package/dist/packages/engine/cloud-seams.d.ts +115 -0
- package/dist/packages/engine/cloud-seams.js +84 -0
- package/dist/packages/engine/compile/artifact-counts.d.ts +1 -0
- package/dist/packages/{compiler → engine/compile}/artifact-counts.js +4 -4
- package/dist/packages/engine/compile/artifact-status.d.ts +41 -0
- package/dist/packages/engine/compile/artifact-status.js +166 -0
- package/dist/packages/engine/compile/billing-events.d.ts +89 -0
- package/dist/packages/engine/compile/billing-events.js +74 -0
- package/dist/packages/engine/compile/check-evaluator.d.ts +66 -0
- package/dist/packages/engine/compile/check-evaluator.js +298 -0
- package/dist/packages/{compiler → engine/compile}/compiled-pipeline.d.ts +12 -1
- package/dist/packages/{compiler → engine/compile}/compiled-pipeline.js +16 -6
- package/dist/packages/engine/compile/compiled-schema.d.ts +21 -0
- package/dist/packages/engine/compile/compiled-schema.js +126 -0
- package/dist/packages/{compiler → engine/compile}/compiled-stage-plan.d.ts +2 -1
- package/dist/packages/{compiler → engine/compile}/compiled-stage-plan.js +35 -18
- package/dist/packages/{compiler → engine/compile}/compiled-stage-runner.d.ts +1 -1
- package/dist/packages/{compiler → engine/compile}/compiled-stage-runner.js +4 -4
- package/dist/packages/{compiler → engine/compile}/compiled-target.d.ts +2 -2
- package/dist/packages/{compiler → engine/compile}/compiled-target.js +2 -2
- package/dist/packages/{compiler → engine/compile}/discovery.js +1 -1
- package/dist/packages/{compiler → engine/compile}/index.d.ts +0 -1
- package/dist/packages/{compiler → engine/compile}/index.js +0 -1
- package/dist/packages/{compiler → engine/compile}/lib/schema.d.ts +113 -94
- package/dist/packages/{compiler → engine/compile}/lib/schema.js +35 -39
- package/dist/packages/engine/compile/method-primitives.d.ts +2 -0
- package/dist/packages/{compiler → engine/compile}/method-primitives.js +1 -1
- package/dist/packages/{compiler → engine/compile}/method-runs.d.ts +3 -3
- package/dist/packages/{compiler → engine/compile}/method-runs.js +3 -3
- package/dist/packages/{compiler → engine/compile}/reset.js +4 -4
- package/dist/packages/{compiler → engine/compile}/runtime-contracts.js +2 -1
- package/dist/packages/{compiler → engine/compile}/runtime-prompt.js +3 -2
- package/dist/packages/{compiler → engine/compile}/runtime-reconcile.d.ts +1 -1
- package/dist/packages/{compiler → engine/compile}/runtime-reconcile.js +47 -45
- package/dist/packages/{compiler → engine/compile}/runtime-runs.d.ts +1 -2
- package/dist/packages/{compiler → engine/compile}/runtime-runs.js +3 -44
- package/dist/packages/{compiler → engine/compile}/runtime-types.d.ts +7 -12
- package/dist/packages/engine/compile/runtime.d.ts +5 -0
- package/dist/packages/{compiler → engine/compile}/runtime.js +1 -2
- package/dist/packages/{compiler → engine/compile}/source-files.d.ts +1 -1
- package/dist/packages/{compiler → engine/compile}/source-files.js +3 -3
- package/dist/packages/{compiler → engine/compile}/state-health.js +8 -8
- package/dist/packages/{compiler → engine/compile}/state-io.js +2 -2
- package/dist/packages/{compiler → engine/compile}/state-view.js +9 -8
- package/dist/packages/{compiler → engine/compile}/validate-compiled.js +63 -32
- package/dist/packages/{compiler → engine/compile}/validate.d.ts +1 -1
- package/dist/packages/{compiler → engine/compile}/validate.js +29 -27
- package/dist/packages/{execution → engine/execution}/lib/schema.d.ts +81 -55
- package/dist/packages/{execution → engine/execution}/lib/schema.js +14 -6
- package/dist/packages/engine/index.d.ts +22 -0
- package/dist/packages/engine/index.js +15 -0
- package/dist/packages/{local-service → engine}/lib/schema.d.ts +620 -435
- package/dist/packages/{local-service → engine}/lib/schema.js +103 -63
- package/dist/packages/{local-service → engine}/native-run-handlers.d.ts +7 -5
- package/dist/packages/{local-service → engine}/native-run-handlers.js +81 -29
- package/dist/packages/{local-service → engine}/preparation-store.d.ts +22 -4
- package/dist/packages/{local-service → engine}/preparation-store.js +56 -25
- package/dist/packages/{local-service → engine}/readiness-check-draft.d.ts +2 -2
- package/dist/packages/{local-service → engine}/routes.d.ts +36 -1
- package/dist/packages/{local-service → engine}/routes.js +38 -1
- package/dist/packages/{local-service → engine}/run-observability.d.ts +3 -3
- package/dist/packages/{local-service → engine}/run-observability.js +15 -15
- package/dist/packages/{local-service → engine}/runtime-event-applier.d.ts +1 -1
- package/dist/packages/{local-service → engine}/runtime-event-applier.js +7 -0
- package/dist/packages/{local-service → engine}/runtime-persistence.d.ts +6 -6
- package/dist/packages/{local-service → engine}/runtime-persistence.js +9 -9
- package/dist/packages/{local-service → engine}/runtime-proposal-helpers.d.ts +1 -1
- package/dist/packages/{local-service → engine}/runtime-proposal-helpers.js +5 -5
- package/dist/packages/{local-service → engine}/runtime-resource-builders.d.ts +12 -12
- package/dist/packages/{local-service → engine}/runtime-resource-builders.js +6 -5
- package/dist/packages/{local-service → engine}/runtime.d.ts +147 -56
- package/dist/packages/{local-service → engine}/runtime.js +333 -205
- package/dist/packages/{local-service → engine}/server.d.ts +25 -0
- package/dist/packages/{local-service → engine}/server.js +338 -17
- package/dist/packages/engine/verify/index.d.ts +13 -0
- package/dist/packages/engine/verify/index.js +10 -0
- package/dist/packages/{testing → engine/verify}/lib/schema.d.ts +1 -1
- package/dist/packages/{testing → engine/verify}/lib/schema.js +1 -1
- package/dist/packages/{testing → engine/verify}/readiness-check-run.d.ts +27 -11
- package/dist/packages/{testing → engine/verify}/readiness-check-run.js +72 -60
- package/dist/packages/{testing/test-execution.d.ts → engine/verify/verify-execution.d.ts} +2 -2
- package/dist/packages/{testing/test-execution.js → engine/verify/verify-execution.js} +2 -2
- package/dist/packages/{testing/test-paths.d.ts → engine/verify/verify-paths.d.ts} +1 -1
- package/dist/packages/{testing/test-paths.js → engine/verify/verify-paths.js} +2 -2
- package/dist/packages/{testing/test-sandbox.d.ts → engine/verify/verify-sandbox.d.ts} +1 -1
- package/dist/packages/{testing/test-sandbox.js → engine/verify/verify-sandbox.js} +6 -6
- package/dist/packages/{testing/test-specs.d.ts → engine/verify/verify-specs.d.ts} +1 -1
- package/dist/packages/{testing/test-specs.js → engine/verify/verify-specs.js} +2 -2
- package/dist/packages/{testing/test-targets.d.ts → engine/verify/verify-targets.d.ts} +1 -1
- package/dist/packages/{testing/test-targets.js → engine/verify/verify-targets.js} +3 -3
- package/dist/packages/{testing/test.d.ts → engine/verify/verify.d.ts} +4 -4
- package/dist/packages/{testing/test.js → engine/verify/verify.js} +3 -3
- package/dist/packages/engine/wire-schemas.d.ts +545 -0
- package/dist/packages/engine/wire-schemas.js +59 -0
- package/dist/packages/methods/authoring/method-authoring.d.ts +34 -0
- package/dist/packages/methods/authoring/method-authoring.js +260 -0
- package/dist/packages/{method-authoring → methods/authoring}/method-edit-session.d.ts +2 -2
- package/dist/packages/{method-authoring → methods/authoring}/method-edit-session.js +5 -5
- package/dist/packages/{method-authoring → methods/authoring}/method-improvement.d.ts +4 -4
- package/dist/packages/{method-authoring → methods/authoring}/method-improvement.js +16 -10
- package/dist/packages/{method-package → methods/package}/builtin-compiled-method.d.ts +12 -12
- package/dist/packages/{method-package → methods/package}/builtin-compiled-method.js +27 -24
- package/dist/packages/methods/package/context-interface.d.ts +73 -0
- package/dist/packages/{method-package → methods/package}/context-interface.js +50 -41
- package/dist/packages/{method-package → methods/package}/interf-method-package.js +31 -49
- package/dist/packages/{method-package → methods/package}/lib/package-root.js +2 -2
- package/dist/packages/{method-package → methods/package}/local-methods.d.ts +10 -5
- package/dist/packages/{method-package → methods/package}/local-methods.js +41 -68
- package/dist/packages/{method-package → methods/package}/method-definitions.d.ts +11 -7
- package/dist/packages/{method-package → methods/package}/method-definitions.js +5 -8
- package/dist/packages/{method-package → methods/package}/method-helpers.d.ts +1 -3
- package/dist/packages/{method-package → methods/package}/method-helpers.js +4 -8
- package/dist/packages/{method-package → methods/package}/method-review-paths.d.ts +1 -1
- package/dist/packages/{method-package → methods/package}/method-review-paths.js +1 -1
- package/dist/packages/{method-package → methods/package}/method-stage-runner.d.ts +4 -9
- package/dist/packages/{method-package → methods/package}/method-stage-runner.js +1 -29
- package/dist/packages/{method-package → methods/package}/user-methods.js +2 -2
- package/dist/packages/{project-model → project}/interf-bootstrap.d.ts +1 -1
- package/dist/packages/{project-model → project}/interf-bootstrap.js +1 -1
- package/dist/packages/{project-model → project}/interf-detect.js +4 -4
- package/dist/packages/{project-model → project}/interf-scaffold.js +18 -18
- package/dist/packages/{project-model → project}/lib/schema.d.ts +2 -2
- package/dist/packages/{project-model → project}/lib/schema.js +1 -1
- package/dist/packages/{project-model → project}/source-config.d.ts +1 -1
- package/dist/packages/{project-model → project}/source-config.js +9 -8
- package/dist/packages/{project-model → project}/source-folders.js +2 -2
- package/package.json +7 -16
- package/dist/cli/commands/test.d.ts +0 -9
- package/dist/compiler-ui/_next/static/chunks/17t-lulmyawg5.js +0 -89
- package/dist/packages/agents/lib/detection.d.ts +0 -7
- package/dist/packages/compiler/artifact-counts.d.ts +0 -1
- package/dist/packages/compiler/compiled-schema.d.ts +0 -31
- package/dist/packages/compiler/compiled-schema.js +0 -141
- package/dist/packages/compiler/method-primitives.d.ts +0 -2
- package/dist/packages/compiler/runtime-acceptance.d.ts +0 -9
- package/dist/packages/compiler/runtime-acceptance.js +0 -262
- package/dist/packages/compiler/runtime.d.ts +0 -6
- package/dist/packages/local-service/index.d.ts +0 -22
- package/dist/packages/local-service/index.js +0 -15
- package/dist/packages/method-authoring/method-authoring.d.ts +0 -24
- package/dist/packages/method-authoring/method-authoring.js +0 -116
- package/dist/packages/method-package/context-interface.d.ts +0 -60
- package/dist/packages/testing/index.d.ts +0 -13
- package/dist/packages/testing/index.js +0 -10
- /package/dist/compiler-ui/_next/static/{C6vVfy3aeYuIO3d2AoNvC → 6qyE1u9m_oBUkvAhhoCmO}/_buildManifest.js +0 -0
- /package/dist/compiler-ui/_next/static/{C6vVfy3aeYuIO3d2AoNvC → 6qyE1u9m_oBUkvAhhoCmO}/_clientMiddlewareManifest.js +0 -0
- /package/dist/compiler-ui/_next/static/{C6vVfy3aeYuIO3d2AoNvC → 6qyE1u9m_oBUkvAhhoCmO}/_ssgManifest.js +0 -0
- /package/dist/packages/{shared → contracts/utils}/file-types.d.ts +0 -0
- /package/dist/packages/{shared → contracts/utils}/file-types.js +0 -0
- /package/dist/packages/{shared → contracts/utils}/filesystem.d.ts +0 -0
- /package/dist/packages/{shared → contracts/utils}/filesystem.js +0 -0
- /package/dist/packages/{shared → contracts/utils}/logger.d.ts +0 -0
- /package/dist/packages/{shared → contracts/utils}/logger.js +0 -0
- /package/dist/packages/{shared → contracts/utils}/naming.d.ts +0 -0
- /package/dist/packages/{shared → contracts/utils}/naming.js +0 -0
- /package/dist/packages/{shared → contracts/utils}/parse.d.ts +0 -0
- /package/dist/packages/{shared → contracts/utils}/parse.js +0 -0
- /package/dist/packages/{shared → contracts/utils}/path-guards.d.ts +0 -0
- /package/dist/packages/{shared → contracts/utils}/path-guards.js +0 -0
- /package/dist/packages/{local-service → engine}/action-definitions.d.ts +0 -0
- /package/dist/packages/{local-service → engine}/action-values.d.ts +0 -0
- /package/dist/packages/{local-service → engine}/action-values.js +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/agents.d.ts +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/agents.js +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/args.d.ts +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/args.js +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/chart-guidance.d.ts +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/chart-guidance.js +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/compiled-bootstrap.d.ts +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/constants.d.ts +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/constants.js +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/execution-profile.d.ts +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/execution-profile.js +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/execution.d.ts +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/execution.js +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/executors.js +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/logs.d.ts +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/logs.js +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/preflight.d.ts +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/preflight.js +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/render.d.ts +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/render.js +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/schema.d.ts +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/schema.js +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/status.d.ts +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/status.js +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/types.d.ts +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/types.js +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/user-config.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/compiled-compile.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/compiled-compile.js +0 -0
- /package/dist/packages/{compiler → engine/compile}/compiled-paths.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/compiled-paths.js +0 -0
- /package/dist/packages/{compiler → engine/compile}/discovery.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/reset.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/runtime-contracts.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/runtime-inventory.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/runtime-inventory.js +0 -0
- /package/dist/packages/{compiler → engine/compile}/runtime-paths.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/runtime-paths.js +0 -0
- /package/dist/packages/{compiler → engine/compile}/runtime-prompt.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/runtime-types.js +0 -0
- /package/dist/packages/{compiler → engine/compile}/state-artifacts.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/state-artifacts.js +0 -0
- /package/dist/packages/{compiler → engine/compile}/state-health.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/state-io.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/state-paths.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/state-paths.js +0 -0
- /package/dist/packages/{compiler → engine/compile}/state-view.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/state.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/state.js +0 -0
- /package/dist/packages/{compiler → engine/compile}/validate-compiled.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/validate-helpers.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/validate-helpers.js +0 -0
- /package/dist/packages/{local-service → engine}/connection-config.d.ts +0 -0
- /package/dist/packages/{local-service → engine}/connection-config.js +0 -0
- /package/dist/packages/{execution → engine/execution}/adapters.d.ts +0 -0
- /package/dist/packages/{execution → engine/execution}/adapters.js +0 -0
- /package/dist/packages/{execution → engine/execution}/events.d.ts +0 -0
- /package/dist/packages/{execution → engine/execution}/events.js +0 -0
- /package/dist/packages/{execution → engine/execution}/index.d.ts +0 -0
- /package/dist/packages/{execution → engine/execution}/index.js +0 -0
- /package/dist/packages/{local-service → engine}/instance-paths.d.ts +0 -0
- /package/dist/packages/{local-service → engine}/instance-paths.js +0 -0
- /package/dist/packages/{local-service → engine}/readiness-check-draft.js +0 -0
- /package/dist/packages/{local-service → engine}/runtime-caches.d.ts +0 -0
- /package/dist/packages/{local-service → engine}/runtime-caches.js +0 -0
- /package/dist/packages/{local-service → engine}/service-registry.d.ts +0 -0
- /package/dist/packages/{local-service → engine}/service-registry.js +0 -0
- /package/dist/packages/{testing/test-profile-presets.d.ts → engine/verify/verify-profile-presets.d.ts} +0 -0
- /package/dist/packages/{testing/test-profile-presets.js → engine/verify/verify-profile-presets.js} +0 -0
- /package/dist/packages/{testing/test-types.d.ts → engine/verify/verify-types.d.ts} +0 -0
- /package/dist/packages/{testing/test-types.js → engine/verify/verify-types.js} +0 -0
- /package/dist/packages/{method-authoring → methods/authoring}/index.d.ts +0 -0
- /package/dist/packages/{method-authoring → methods/authoring}/index.js +0 -0
- /package/dist/packages/{method-authoring → methods/authoring}/lib/method-edit-utils.d.ts +0 -0
- /package/dist/packages/{method-authoring → methods/authoring}/lib/method-edit-utils.js +0 -0
- /package/dist/packages/{method-package → methods/package}/interf-method-package.d.ts +0 -0
- /package/dist/packages/{method-package → methods/package}/lib/package-root.d.ts +0 -0
- /package/dist/packages/{method-package → methods/package}/user-methods.d.ts +0 -0
- /package/dist/packages/{project-model → project}/index.d.ts +0 -0
- /package/dist/packages/{project-model → project}/index.js +0 -0
- /package/dist/packages/{project-model → project}/interf-detect.d.ts +0 -0
- /package/dist/packages/{project-model → project}/interf-scaffold.d.ts +0 -0
- /package/dist/packages/{project-model → project}/interf.d.ts +0 -0
- /package/dist/packages/{project-model → project}/interf.js +0 -0
- /package/dist/packages/{project-model → project}/preparation-entries.d.ts +0 -0
- /package/dist/packages/{project-model → project}/preparation-entries.js +0 -0
- /package/dist/packages/{project-model → project}/source-folders.d.ts +0 -0
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { existsSync, mkdirSync, writeFileSync } from "node:fs";
|
|
2
2
|
import { dirname, join } from "node:path";
|
|
3
|
-
import { buildTestSpecFromCompiledPreparationConfig, buildTestSpecFromSourceFolderConfig, fingerprintReadinessChecks, resolveSourcePreparationPath, } from "
|
|
4
|
-
import { asPreparationDataDir, preparationLatestReadinessRunPath, preparationLatestReadinessSummaryPath, preparationTestRunPath, preparationTestRunsRoot, normalizePreparationTestRunId, preparationPortableContextPath, } from "
|
|
5
|
-
import { testRootForCompiled } from "../
|
|
6
|
-
import { readJsonFileWithSchema } from "
|
|
7
|
-
import { resolveMethodId } from "
|
|
8
|
-
import { createCompiledTestTarget, createSourceFilesTestTarget, runTargetTestsAuto, saveTargetTestRun, } from "./
|
|
3
|
+
import { buildTestSpecFromCompiledPreparationConfig, buildTestSpecFromSourceFolderConfig, fingerprintReadinessChecks, resolveConfiguredSourceFolderPath, resolveSourcePreparationPath, } from "../../project/source-config.js";
|
|
4
|
+
import { asPreparationDataDir, preparationLatestReadinessRunPath, preparationLatestReadinessSummaryPath, preparationTestRunPath, preparationTestRunsRoot, preparationTestsRoot, normalizePreparationTestRunId, preparationPortableContextPath, } from "../../contracts/lib/preparation-paths.js";
|
|
5
|
+
import { testRootForCompiled } from "../compile/compiled-paths.js";
|
|
6
|
+
import { readJsonFileWithSchema } from "../../contracts/utils/parse.js";
|
|
7
|
+
import { resolveMethodId } from "../../methods/method-resolution.js";
|
|
8
|
+
import { createCompiledTestTarget, createSourceFilesTestTarget, runTargetTestsAuto, saveTargetTestRun, } from "./verify.js";
|
|
9
9
|
import { ReadinessCheckRunSchema, } from "./lib/schema.js";
|
|
10
10
|
export function readinessPassRate(outcome) {
|
|
11
11
|
return outcome.result.totalCases > 0
|
|
@@ -80,30 +80,37 @@ export function readCurrentSavedReadinessCheckRun(options) {
|
|
|
80
80
|
}
|
|
81
81
|
return { readinessRun: latestRun, stale: false };
|
|
82
82
|
}
|
|
83
|
+
function modeForOutcomes(sourceFilesOutcome, compiledOutcome) {
|
|
84
|
+
if (sourceFilesOutcome && compiledOutcome)
|
|
85
|
+
return "both";
|
|
86
|
+
if (sourceFilesOutcome)
|
|
87
|
+
return "source-files";
|
|
88
|
+
return "compiled";
|
|
89
|
+
}
|
|
90
|
+
function passRateOf(summary) {
|
|
91
|
+
if (!summary)
|
|
92
|
+
return null;
|
|
93
|
+
if (summary.total_cases <= 0)
|
|
94
|
+
return 0;
|
|
95
|
+
return Math.round((summary.passed_cases / summary.total_cases) * 100);
|
|
96
|
+
}
|
|
83
97
|
export function saveReadinessCheckRun(options) {
|
|
84
98
|
const generatedAt = new Date().toISOString();
|
|
85
|
-
const
|
|
86
|
-
|
|
99
|
+
const sourceFilesOutcome = options.sourceFilesOutcome ?? null;
|
|
100
|
+
const sourceFilesSummary = sourceFilesOutcome
|
|
101
|
+
? summarizeSavedTestOutcome("Source Files", sourceFilesOutcome)
|
|
87
102
|
: null;
|
|
88
103
|
const compiledSummary = options.compiledOutcome
|
|
89
104
|
? summarizeSavedTestOutcome("Portable Context", options.compiledOutcome)
|
|
90
105
|
: null;
|
|
91
|
-
const effectiveMode = sourceFilesSummary && compiledSummary
|
|
92
|
-
? "both"
|
|
93
|
-
: sourceFilesSummary
|
|
94
|
-
? "source-files"
|
|
95
|
-
: "compiled";
|
|
96
|
-
const sourceFilesPassRate = sourceFilesSummary
|
|
97
|
-
? Math.round((sourceFilesSummary.passed_cases / sourceFilesSummary.total_cases) * 100)
|
|
98
|
-
: null;
|
|
99
|
-
const compiledPassRate = compiledSummary
|
|
100
|
-
? Math.round((compiledSummary.passed_cases / compiledSummary.total_cases) * 100)
|
|
101
|
-
: null;
|
|
102
106
|
const payload = {
|
|
103
107
|
kind: "interf-readiness-check-run",
|
|
104
108
|
version: 1,
|
|
105
109
|
generated_at: generatedAt,
|
|
106
|
-
|
|
110
|
+
// 0.17 — verify carries the target it ran against on the wire so
|
|
111
|
+
// dashboards and the UI can show source-files baselines alongside
|
|
112
|
+
// compiled judgments. `both` is reserved for future combined runs.
|
|
113
|
+
mode: modeForOutcomes(sourceFilesOutcome, options.compiledOutcome),
|
|
107
114
|
source_path: options.sourcePath,
|
|
108
115
|
checks_fingerprint: options.checksFingerprint,
|
|
109
116
|
preparation: {
|
|
@@ -113,8 +120,8 @@ export function saveReadinessCheckRun(options) {
|
|
|
113
120
|
source_files: sourceFilesSummary,
|
|
114
121
|
compiled: compiledSummary,
|
|
115
122
|
summary: {
|
|
116
|
-
source_files_pass_rate:
|
|
117
|
-
portable_context_pass_rate:
|
|
123
|
+
source_files_pass_rate: passRateOf(sourceFilesSummary),
|
|
124
|
+
portable_context_pass_rate: passRateOf(compiledSummary),
|
|
118
125
|
},
|
|
119
126
|
};
|
|
120
127
|
const latestStatePath = preparationLatestReadinessRunPath(asPreparationDataDir(options.sourcePath), options.preparationName);
|
|
@@ -127,101 +134,108 @@ export function saveReadinessCheckRun(options) {
|
|
|
127
134
|
}
|
|
128
135
|
return latestStatePath;
|
|
129
136
|
}
|
|
130
|
-
export async function
|
|
131
|
-
const
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
137
|
+
export async function runSavedPortableContextCheck(options) {
|
|
138
|
+
const portableContextPath = options.portableContextPath
|
|
139
|
+
?? portableContextPathForPreparation(options.sourcePath, options.preparationConfig.name);
|
|
140
|
+
const spec = buildTestSpecFromCompiledPreparationConfig({
|
|
141
|
+
compiledPath: portableContextPath,
|
|
142
|
+
targetType: "compiled",
|
|
135
143
|
});
|
|
136
144
|
if (!spec)
|
|
137
145
|
return null;
|
|
138
|
-
const
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
const run = await runTargetTestsAuto(
|
|
146
|
+
const target = createCompiledTestTarget(portableContextPath, options.preparationConfig.name, resolveMethodId(options.preparationConfig));
|
|
147
|
+
if (!target.eligible)
|
|
148
|
+
return null;
|
|
149
|
+
const run = await runTargetTestsAuto(options.sourcePath, spec, [target], {
|
|
142
150
|
executor: options.executor,
|
|
143
151
|
preserveSandboxes: options.preserveSandboxes ?? "on-failure",
|
|
144
|
-
artifactRootPath:
|
|
152
|
+
artifactRootPath: portableContextPath,
|
|
145
153
|
});
|
|
146
154
|
const result = run.results[0];
|
|
147
155
|
if (!result)
|
|
148
156
|
return null;
|
|
157
|
+
const compiledRunPath = saveTargetTestRun(portableContextPath, run);
|
|
149
158
|
const preparationRunPath = writePreparationTargetRun({
|
|
150
159
|
prepDataDir: options.sourcePath,
|
|
151
160
|
preparationName: options.preparationConfig.name,
|
|
152
|
-
target: "
|
|
161
|
+
target: "compiled",
|
|
153
162
|
generatedAt: run.generated_at,
|
|
154
163
|
runId: normalizePreparationTestRunId(spec.id),
|
|
155
164
|
runSuffix: options.runSuffix,
|
|
156
165
|
payload: run,
|
|
157
166
|
});
|
|
158
167
|
return {
|
|
159
|
-
runPath:
|
|
168
|
+
runPath: compiledRunPath,
|
|
169
|
+
displayRunPath: preparationRunPath,
|
|
160
170
|
target,
|
|
161
171
|
result,
|
|
162
172
|
};
|
|
163
173
|
}
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
174
|
+
/**
|
|
175
|
+
* 0.17 — restored. Runs the saved readiness checks against the source
|
|
176
|
+
* folder baseline (no portable-context indirection) so users can see how
|
|
177
|
+
* much value the Method actually adds. The lower-level `verify-execution`
|
|
178
|
+
* + `verify-sandbox` source-files paths have stayed in tree since 0.13;
|
|
179
|
+
* this is the orchestrator hook that was missing.
|
|
180
|
+
*/
|
|
181
|
+
export async function runSavedSourceFilesCheck(options) {
|
|
182
|
+
const spec = buildTestSpecFromSourceFolderConfig({
|
|
183
|
+
prepDataDir: options.sourcePath,
|
|
184
|
+
targetName: options.preparationConfig.name,
|
|
185
|
+
targetType: "source-files",
|
|
170
186
|
});
|
|
171
187
|
if (!spec)
|
|
172
188
|
return null;
|
|
173
|
-
const
|
|
189
|
+
const sourceFolderPath = resolveConfiguredSourceFolderPath(options.sourcePath) ??
|
|
190
|
+
resolveSourcePreparationPath(options.sourcePath, options.preparationConfig);
|
|
191
|
+
const target = createSourceFilesTestTarget(sourceFolderPath);
|
|
174
192
|
if (!target.eligible)
|
|
175
193
|
return null;
|
|
176
|
-
const run = await runTargetTestsAuto(
|
|
194
|
+
const run = await runTargetTestsAuto(sourceFolderPath, spec, [target], {
|
|
177
195
|
executor: options.executor,
|
|
178
196
|
preserveSandboxes: options.preserveSandboxes ?? "on-failure",
|
|
179
|
-
artifactRootPath:
|
|
197
|
+
artifactRootPath: preparationTestsRoot(asPreparationDataDir(options.sourcePath), options.preparationConfig.name),
|
|
180
198
|
});
|
|
181
199
|
const result = run.results[0];
|
|
182
200
|
if (!result)
|
|
183
201
|
return null;
|
|
184
|
-
const compiledRunPath = saveTargetTestRun(portableContextPath, run);
|
|
185
202
|
const preparationRunPath = writePreparationTargetRun({
|
|
186
203
|
prepDataDir: options.sourcePath,
|
|
187
204
|
preparationName: options.preparationConfig.name,
|
|
188
|
-
target: "
|
|
205
|
+
target: "source-files",
|
|
189
206
|
generatedAt: run.generated_at,
|
|
190
207
|
runId: normalizePreparationTestRunId(spec.id),
|
|
191
208
|
runSuffix: options.runSuffix,
|
|
192
209
|
payload: run,
|
|
193
210
|
});
|
|
194
211
|
return {
|
|
195
|
-
runPath:
|
|
196
|
-
displayRunPath: preparationRunPath,
|
|
212
|
+
runPath: preparationRunPath,
|
|
197
213
|
target,
|
|
198
214
|
result,
|
|
199
215
|
};
|
|
200
216
|
}
|
|
201
217
|
export async function runReadinessChecksForExecutor(options) {
|
|
202
|
-
const
|
|
203
|
-
|
|
218
|
+
const target = options.target ?? "compiled";
|
|
219
|
+
const compiledOutcome = target === "compiled"
|
|
220
|
+
? await runSavedPortableContextCheck({
|
|
204
221
|
sourcePath: options.sourcePath,
|
|
205
222
|
preparationConfig: options.preparationConfig,
|
|
206
223
|
executor: options.executor,
|
|
224
|
+
portableContextPath: options.portableContextPath,
|
|
207
225
|
preserveSandboxes: options.preserveSandboxes,
|
|
208
226
|
runSuffix: options.runSuffix,
|
|
209
227
|
})
|
|
210
|
-
:
|
|
211
|
-
const
|
|
212
|
-
?
|
|
228
|
+
: null;
|
|
229
|
+
const sourceFilesOutcome = target === "source-files"
|
|
230
|
+
? await runSavedSourceFilesCheck({
|
|
213
231
|
sourcePath: options.sourcePath,
|
|
214
232
|
preparationConfig: options.preparationConfig,
|
|
215
233
|
executor: options.executor,
|
|
216
|
-
portableContextPath: options.portableContextPath,
|
|
217
234
|
preserveSandboxes: options.preserveSandboxes,
|
|
218
235
|
runSuffix: options.runSuffix,
|
|
219
236
|
})
|
|
220
|
-
:
|
|
221
|
-
const
|
|
222
|
-
const modeSatisfied = (options.mode !== "source-files" || Boolean(sourceFilesOutcome)) &&
|
|
223
|
-
(options.mode !== "compiled" || Boolean(compiledOutcome)) &&
|
|
224
|
-
(options.mode !== "both" || (Boolean(sourceFilesOutcome) && Boolean(compiledOutcome)));
|
|
237
|
+
: null;
|
|
238
|
+
const modeSatisfied = Boolean(compiledOutcome) || Boolean(sourceFilesOutcome);
|
|
225
239
|
const shouldSave = options.saveLatest !== false;
|
|
226
240
|
const readinessRunPath = shouldSave && modeSatisfied
|
|
227
241
|
? saveReadinessCheckRun({
|
|
@@ -229,7 +243,6 @@ export async function runReadinessChecksForExecutor(options) {
|
|
|
229
243
|
portableContextPath: options.portableContextPath,
|
|
230
244
|
preparationName: options.preparationConfig.name,
|
|
231
245
|
checksFingerprint: fingerprintReadinessChecks(options.preparationConfig.checks),
|
|
232
|
-
mode: options.mode,
|
|
233
246
|
sourceFilesOutcome,
|
|
234
247
|
compiledOutcome,
|
|
235
248
|
})
|
|
@@ -241,7 +254,6 @@ export async function runReadinessChecksForExecutor(options) {
|
|
|
241
254
|
sourcePath: options.sourcePath,
|
|
242
255
|
preparationConfig: options.preparationConfig,
|
|
243
256
|
portableContextPath: options.portableContextPath,
|
|
244
|
-
mode: options.mode,
|
|
245
257
|
sourceFilesOutcome,
|
|
246
258
|
compiledOutcome,
|
|
247
259
|
readinessRunPath,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type MethodExecutor } from "../agents/lib/executors.js";
|
|
2
|
-
import type { TestTargetRun, TestTargetCandidate, LoadedTestSpec } from "./
|
|
3
|
-
import { type TestSandboxRetentionMode } from "./
|
|
2
|
+
import type { TestTargetRun, TestTargetCandidate, LoadedTestSpec } from "./verify-types.js";
|
|
3
|
+
import { type TestSandboxRetentionMode } from "./verify-sandbox.js";
|
|
4
4
|
export declare function runTargetTests(sourcePath: string, spec: LoadedTestSpec, targets: TestTargetCandidate[]): TestTargetRun;
|
|
5
5
|
export declare function runTargetTestsWithJudge(sourcePath: string, spec: LoadedTestSpec, targets: TestTargetCandidate[], executor: MethodExecutor, options?: {
|
|
6
6
|
preserveSandboxes?: TestSandboxRetentionMode;
|
|
@@ -2,8 +2,8 @@ import { existsSync, mkdirSync, mkdtempSync, readFileSync, rmSync, writeFileSync
|
|
|
2
2
|
import { join } from "node:path";
|
|
3
3
|
import { tmpdir } from "node:os";
|
|
4
4
|
import { buildRuntimeExecutorInfo } from "../agents/lib/executors.js";
|
|
5
|
-
import { targetTestRunGitignorePath, targetTestRunsPath, targetTestSandboxGitignorePath, targetTestSandboxesPath, normalizeTestId, } from "./
|
|
6
|
-
import { createTestSandbox, } from "./
|
|
5
|
+
import { targetTestRunGitignorePath, targetTestRunsPath, targetTestSandboxGitignorePath, targetTestSandboxesPath, normalizeTestId, } from "./verify-paths.js";
|
|
6
|
+
import { createTestSandbox, } from "./verify-sandbox.js";
|
|
7
7
|
function parseWords(content) {
|
|
8
8
|
return content.trim().split(/\s+/).filter(Boolean).length;
|
|
9
9
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { TestTargetType } from "./
|
|
1
|
+
import type { TestTargetType } from "./verify-types.js";
|
|
2
2
|
export declare const TEST_SPEC_EXTENSIONS: Set<string>;
|
|
3
3
|
export declare function testSpecRootPath(sourcePath: string): string;
|
|
4
4
|
export declare function testSpecTypePath(sourcePath: string, type: TestTargetType): string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { existsSync } from "node:fs";
|
|
2
2
|
import { basename, dirname, join } from "node:path";
|
|
3
|
-
import { targetTestRunsRootForCompiled, targetTestSandboxesRootForCompiled, compiledInterfConfigPath, } from "../
|
|
4
|
-
import { asPreparationDataDir, preparationTestsSpecsRoot, } from "
|
|
3
|
+
import { targetTestRunsRootForCompiled, targetTestSandboxesRootForCompiled, compiledInterfConfigPath, } from "../compile/compiled-paths.js";
|
|
4
|
+
import { asPreparationDataDir, preparationTestsSpecsRoot, } from "../../contracts/lib/preparation-paths.js";
|
|
5
5
|
const TEST_ID_PATTERN = /^[a-z0-9][a-z0-9-]{0,79}$/;
|
|
6
6
|
export const TEST_SPEC_EXTENSIONS = new Set([".json"]);
|
|
7
7
|
export function testSpecRootPath(sourcePath) {
|
|
@@ -2,13 +2,13 @@ import { cpSync, mkdirSync, mkdtempSync, renameSync, rmSync, writeFileSync, } fr
|
|
|
2
2
|
import { tmpdir } from "node:os";
|
|
3
3
|
import { dirname, join } from "node:path";
|
|
4
4
|
import { refreshCompiledBootstrapGuidance } from "../agents/lib/compiled-bootstrap.js";
|
|
5
|
-
import { readInterfConfig, resolveSourceInputPath } from "
|
|
5
|
+
import { readInterfConfig, resolveSourceInputPath } from "../../project/interf.js";
|
|
6
6
|
import { projectSourceFilesTestQueryShell } from "../agents/lib/shells.js";
|
|
7
|
-
import { asPreparationDataDir, preparationPortableContextPath, } from "
|
|
8
|
-
import { saveCompiledInterfConfig } from "
|
|
9
|
-
import { buildCompiledSourceFiles } from "../
|
|
10
|
-
import { refreshCompiledArtifacts } from "../
|
|
11
|
-
import { testRootForCompiled, stageExecutionShellsRoot, targetTestSandboxesRootForCompiled, methodImprovementLoopsRoot, compiledQueryAcceptanceRoot, compiledRuntimeLogsRoot, } from "../
|
|
7
|
+
import { asPreparationDataDir, preparationPortableContextPath, } from "../../contracts/lib/preparation-paths.js";
|
|
8
|
+
import { saveCompiledInterfConfig } from "../../project/source-config.js";
|
|
9
|
+
import { buildCompiledSourceFiles } from "../compile/source-files.js";
|
|
10
|
+
import { refreshCompiledArtifacts } from "../compile/state.js";
|
|
11
|
+
import { testRootForCompiled, stageExecutionShellsRoot, targetTestSandboxesRootForCompiled, methodImprovementLoopsRoot, compiledQueryAcceptanceRoot, compiledRuntimeLogsRoot, } from "../compile/compiled-paths.js";
|
|
12
12
|
function sanitizeCompiledArtifacts(compiledPath) {
|
|
13
13
|
for (const absolutePath of [
|
|
14
14
|
testRootForCompiled(compiledPath),
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { TestSpec, TestTargetType, LoadedTestSpec } from "./
|
|
1
|
+
import type { TestSpec, TestTargetType, LoadedTestSpec } from "./verify-types.js";
|
|
2
2
|
export declare function listTestSpecs(sourcePath: string, type: TestTargetType): LoadedTestSpec[];
|
|
3
3
|
export declare function loadTestSpec(sourcePath: string, type: TestTargetType, id: string): LoadedTestSpec | null;
|
|
4
4
|
export declare function loadTestSpecFromFile(filePath: string): LoadedTestSpec | null;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { existsSync, mkdirSync, readdirSync, writeFileSync, } from "node:fs";
|
|
2
2
|
import { basename, extname, join } from "node:path";
|
|
3
|
-
import { readJsonFileWithSchema } from "
|
|
3
|
+
import { readJsonFileWithSchema } from "../../contracts/utils/parse.js";
|
|
4
4
|
import { TestSpecSchema } from "./lib/schema.js";
|
|
5
|
-
import { TEST_SPEC_EXTENSIONS, assertTestId, assertWritableTestSpecPath, testSpecFilePath, testSpecTypePath, normalizeTestId, } from "./
|
|
5
|
+
import { TEST_SPEC_EXTENSIONS, assertTestId, assertWritableTestSpecPath, testSpecFilePath, testSpecTypePath, normalizeTestId, } from "./verify-paths.js";
|
|
6
6
|
function readTestSpecFile(filePath) {
|
|
7
7
|
const extension = extname(filePath).toLowerCase();
|
|
8
8
|
if (!TEST_SPEC_EXTENSIONS.has(extension))
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { TestTargetCandidate } from "./
|
|
1
|
+
import type { TestTargetCandidate } from "./verify-types.js";
|
|
2
2
|
export declare function listCompiledTestTargets(sourcePath: string): TestTargetCandidate[];
|
|
3
3
|
export declare function createCompiledTestTarget(compiledPath: string, compiledName: string, methodId?: string): TestTargetCandidate;
|
|
4
4
|
export declare function createSourceFilesTestTarget(sourcePath: string): TestTargetCandidate;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { listPortableContextsForSourceFolder } from "
|
|
2
|
-
import { computeCompiledHealth } from "../
|
|
3
|
-
import { DEFAULT_METHOD_ID, resolveMethodId } from "
|
|
1
|
+
import { listPortableContextsForSourceFolder } from "../../project/interf-detect.js";
|
|
2
|
+
import { computeCompiledHealth } from "../compile/state.js";
|
|
3
|
+
import { DEFAULT_METHOD_ID, resolveMethodId } from "../../methods/method-resolution.js";
|
|
4
4
|
function summarizeTargetSortKey(target) {
|
|
5
5
|
return `${target.name}\u0000${target.method}`;
|
|
6
6
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export type { TestCaseExpect, TestCase, TestSpec, TestCheckResult, TestCaseResult, TestTargetResult, TestTargetRun, TestTargetType, LoadedTestSpec, TestTargetCandidate, } from "./
|
|
2
|
-
export { listTestSpecs, loadTestSpec, loadTestSpecFromFile, writeTestSpec, } from "./
|
|
3
|
-
export { createSourceFilesTestTarget, createCompiledTestTarget, listCompiledTestTargets, listTestTargets, } from "./
|
|
4
|
-
export { runTargetTests, runTargetTestsWithJudge, runTargetTestsAuto, saveTargetTestRun, } from "./
|
|
1
|
+
export type { TestCaseExpect, TestCase, TestSpec, TestCheckResult, TestCaseResult, TestTargetResult, TestTargetRun, TestTargetType, LoadedTestSpec, TestTargetCandidate, } from "./verify-types.js";
|
|
2
|
+
export { listTestSpecs, loadTestSpec, loadTestSpecFromFile, writeTestSpec, } from "./verify-specs.js";
|
|
3
|
+
export { createSourceFilesTestTarget, createCompiledTestTarget, listCompiledTestTargets, listTestTargets, } from "./verify-targets.js";
|
|
4
|
+
export { runTargetTests, runTargetTestsWithJudge, runTargetTestsAuto, saveTargetTestRun, } from "./verify-execution.js";
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { listTestSpecs, loadTestSpec, loadTestSpecFromFile, writeTestSpec, } from "./
|
|
2
|
-
export { createSourceFilesTestTarget, createCompiledTestTarget, listCompiledTestTargets, listTestTargets, } from "./
|
|
3
|
-
export { runTargetTests, runTargetTestsWithJudge, runTargetTestsAuto, saveTargetTestRun, } from "./
|
|
1
|
+
export { listTestSpecs, loadTestSpec, loadTestSpecFromFile, writeTestSpec, } from "./verify-specs.js";
|
|
2
|
+
export { createSourceFilesTestTarget, createCompiledTestTarget, listCompiledTestTargets, listTestTargets, } from "./verify-targets.js";
|
|
3
|
+
export { runTargetTests, runTargetTestsWithJudge, runTargetTestsAuto, saveTargetTestRun, } from "./verify-execution.js";
|