zob-harness 0.1.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/.pi/adapters/registry.json +103 -0
- package/.pi/agents/architecture-cartographer.md +53 -0
- package/.pi/agents/chief-vision.md +39 -0
- package/.pi/agents/clarifier.md +58 -0
- package/.pi/agents/context-steward.md +52 -0
- package/.pi/agents/doc-steward.md +34 -0
- package/.pi/agents/explore.md +49 -0
- package/.pi/agents/factory.md +41 -0
- package/.pi/agents/implementer.md +44 -0
- package/.pi/agents/librarian.md +32 -0
- package/.pi/agents/oracle-merge.md +50 -0
- package/.pi/agents/oracle.md +55 -0
- package/.pi/agents/pattern-miner.md +53 -0
- package/.pi/agents/planner.md +39 -0
- package/.pi/agents/project-dna-golden-evaluator.md +32 -0
- package/.pi/agents/project-dna-ontology-steward.md +30 -0
- package/.pi/agents/project-dna-oracle.md +56 -0
- package/.pi/agents/project-dna-orchestrator.md +60 -0
- package/.pi/agents/project-dna-query-steward.md +38 -0
- package/.pi/agents/project-dna-safety-preflight.md +54 -0
- package/.pi/agents/project-dna-test-linker.md +27 -0
- package/.pi/agents/qa.md +38 -0
- package/.pi/agents/refactor-cartographer.md +28 -0
- package/.pi/agents/refactor-mover.md +31 -0
- package/.pi/agents/refactor-oracle.md +49 -0
- package/.pi/agents/repo-scout.md +60 -0
- package/.pi/agents/sample-architect.md +48 -0
- package/.pi/agents/specifier.md +57 -0
- package/.pi/agents/symbol-range-curator.md +41 -0
- package/.pi/agents/synthesis.md +52 -0
- package/.pi/agents/temp-agent-creator.md +35 -0
- package/.pi/autonomy-policy.json +67 -0
- package/.pi/budget-policy.json +54 -0
- package/.pi/capabilities/zob-public-runtime-capabilities.json +1700 -0
- package/.pi/chains/explore-plan-oracle.json +78 -0
- package/.pi/chains/explore-spec-clarify-plan-oracle.json +64 -0
- package/.pi/chains/explore-spec-plan-oracle.json +53 -0
- package/.pi/chains/spec-clarify-plan-oracle.json +53 -0
- package/.pi/chains/spec-factory-oracle.json +42 -0
- package/.pi/chains/spec-plan-oracle.json +42 -0
- package/.pi/compute-profiles/defaults.json +19 -0
- package/.pi/compute-profiles/overrides.json +13 -0
- package/.pi/compute-profiles/risk-rules.json +16 -0
- package/.pi/daemon-policy.json +80 -0
- package/.pi/damage-control-rules.json +45 -0
- package/.pi/extensions/zob-child-safety/index.ts +212 -0
- package/.pi/extensions/zob-harness/AGENTS.md +28 -0
- package/.pi/extensions/zob-harness/index.ts +391 -0
- package/.pi/extensions/zob-harness/src/AGENTS.md +25 -0
- package/.pi/extensions/zob-harness/src/agents.ts +82 -0
- package/.pi/extensions/zob-harness/src/autonomous-runtime.ts +2912 -0
- package/.pi/extensions/zob-harness/src/autonomy-readiness.ts +778 -0
- package/.pi/extensions/zob-harness/src/budget-policy.ts +308 -0
- package/.pi/extensions/zob-harness/src/capabilities.ts +249 -0
- package/.pi/extensions/zob-harness/src/child-runner.ts +249 -0
- package/.pi/extensions/zob-harness/src/chronicle.ts +262 -0
- package/.pi/extensions/zob-harness/src/compute-profile.ts +602 -0
- package/.pi/extensions/zob-harness/src/compute-workflow-shape.ts +168 -0
- package/.pi/extensions/zob-harness/src/coms-v2/AGENTS.md +16 -0
- package/.pi/extensions/zob-harness/src/coms-v2/envelope.ts +121 -0
- package/.pi/extensions/zob-harness/src/coms-v2/identity.ts +53 -0
- package/.pi/extensions/zob-harness/src/coms-v2/ledger-bridge.ts +67 -0
- package/.pi/extensions/zob-harness/src/coms-v2/local-transport.ts +147 -0
- package/.pi/extensions/zob-harness/src/coms-v2/pending-replies.ts +80 -0
- package/.pi/extensions/zob-harness/src/coms-v2/policy.ts +125 -0
- package/.pi/extensions/zob-harness/src/coms-v2/presence.ts +55 -0
- package/.pi/extensions/zob-harness/src/coms-v2/registry.ts +113 -0
- package/.pi/extensions/zob-harness/src/coms-v2/response-capture.ts +50 -0
- package/.pi/extensions/zob-harness/src/coms-v2/transcript-capture.ts +164 -0
- package/.pi/extensions/zob-harness/src/coms-v2/types.ts +149 -0
- package/.pi/extensions/zob-harness/src/coms-v2/zpeer-profile.ts +140 -0
- package/.pi/extensions/zob-harness/src/coms-v2/zpeer.ts +452 -0
- package/.pi/extensions/zob-harness/src/constants.ts +108 -0
- package/.pi/extensions/zob-harness/src/context-gbrain.ts +465 -0
- package/.pi/extensions/zob-harness/src/daemon-policy.ts +223 -0
- package/.pi/extensions/zob-harness/src/daemon-readiness.ts +134 -0
- package/.pi/extensions/zob-harness/src/daemon-runtime.ts +393 -0
- package/.pi/extensions/zob-harness/src/factory/AGENTS.md +24 -0
- package/.pi/extensions/zob-harness/src/factory/agentic-plan.ts +65 -0
- package/.pi/extensions/zob-harness/src/factory/quarantine.ts +319 -0
- package/.pi/extensions/zob-harness/src/factory/run.ts +520 -0
- package/.pi/extensions/zob-harness/src/factory/validation.ts +454 -0
- package/.pi/extensions/zob-harness/src/factory-selector.ts +318 -0
- package/.pi/extensions/zob-harness/src/full-autonomy-test.ts +226 -0
- package/.pi/extensions/zob-harness/src/git-ops.ts +868 -0
- package/.pi/extensions/zob-harness/src/goal-room.ts +178 -0
- package/.pi/extensions/zob-harness/src/goal-runtime.ts +1569 -0
- package/.pi/extensions/zob-harness/src/goal-todo-imports.ts +111 -0
- package/.pi/extensions/zob-harness/src/goal-todo-types.ts +231 -0
- package/.pi/extensions/zob-harness/src/goal-todos.ts +1410 -0
- package/.pi/extensions/zob-harness/src/goal.ts +152 -0
- package/.pi/extensions/zob-harness/src/governed-requests.ts +436 -0
- package/.pi/extensions/zob-harness/src/interactive-autonomy.ts +595 -0
- package/.pi/extensions/zob-harness/src/launch-apply.ts +313 -0
- package/.pi/extensions/zob-harness/src/merge-queue.ts +290 -0
- package/.pi/extensions/zob-harness/src/mission-control.ts +573 -0
- package/.pi/extensions/zob-harness/src/model-availability.ts +52 -0
- package/.pi/extensions/zob-harness/src/model-routing.ts +429 -0
- package/.pi/extensions/zob-harness/src/orchestration/AGENTS.md +23 -0
- package/.pi/extensions/zob-harness/src/orchestration/adaptive-delegation.ts +547 -0
- package/.pi/extensions/zob-harness/src/orchestration/adaptive-workflow.ts +585 -0
- package/.pi/extensions/zob-harness/src/orchestration/lead-plan.ts +192 -0
- package/.pi/extensions/zob-harness/src/orchestration/plan.ts +168 -0
- package/.pi/extensions/zob-harness/src/orchestration/room.ts +346 -0
- package/.pi/extensions/zob-harness/src/orchestration/run.ts +134 -0
- package/.pi/extensions/zob-harness/src/orchestration/supervised-readonly.ts +1147 -0
- package/.pi/extensions/zob-harness/src/orchestration/widget-readers.ts +132 -0
- package/.pi/extensions/zob-harness/src/output-contracts.ts +656 -0
- package/.pi/extensions/zob-harness/src/project-dna.ts +533 -0
- package/.pi/extensions/zob-harness/src/promotion/AGENTS.md +24 -0
- package/.pi/extensions/zob-harness/src/promotion/candidate.ts +336 -0
- package/.pi/extensions/zob-harness/src/promotion/coms.ts +127 -0
- package/.pi/extensions/zob-harness/src/promotion/documentation.ts +142 -0
- package/.pi/extensions/zob-harness/src/promotion/factory.ts +107 -0
- package/.pi/extensions/zob-harness/src/promotion/ledger.ts +2 -0
- package/.pi/extensions/zob-harness/src/promotion/temp-agent.ts +151 -0
- package/.pi/extensions/zob-harness/src/promotion/types.ts +149 -0
- package/.pi/extensions/zob-harness/src/promotion/validate.ts +6 -0
- package/.pi/extensions/zob-harness/src/promotion/write-lane.ts +162 -0
- package/.pi/extensions/zob-harness/src/prompt-packs.ts +239 -0
- package/.pi/extensions/zob-harness/src/queue.ts +386 -0
- package/.pi/extensions/zob-harness/src/rules.ts +225 -0
- package/.pi/extensions/zob-harness/src/runtime/AGENTS.md +26 -0
- package/.pi/extensions/zob-harness/src/runtime/adaptive-zmode.ts +116 -0
- package/.pi/extensions/zob-harness/src/runtime/auto-compaction.ts +715 -0
- package/.pi/extensions/zob-harness/src/runtime/commands.ts +1315 -0
- package/.pi/extensions/zob-harness/src/runtime/compaction-policy.ts +516 -0
- package/.pi/extensions/zob-harness/src/runtime/delegation-click-markers.ts +141 -0
- package/.pi/extensions/zob-harness/src/runtime/delegation-feed.ts +415 -0
- package/.pi/extensions/zob-harness/src/runtime/delegation-markdown.ts +97 -0
- package/.pi/extensions/zob-harness/src/runtime/delegation-monitor.ts +553 -0
- package/.pi/extensions/zob-harness/src/runtime/delegation-mouse.ts +205 -0
- package/.pi/extensions/zob-harness/src/runtime/delegation-overlay.ts +434 -0
- package/.pi/extensions/zob-harness/src/runtime/events.ts +736 -0
- package/.pi/extensions/zob-harness/src/runtime/goal-todo-overlay.ts +214 -0
- package/.pi/extensions/zob-harness/src/runtime/mode-intent.ts +144 -0
- package/.pi/extensions/zob-harness/src/runtime/plan-capture.ts +270 -0
- package/.pi/extensions/zob-harness/src/runtime/state.ts +403 -0
- package/.pi/extensions/zob-harness/src/runtime/tools-autonomous.ts +117 -0
- package/.pi/extensions/zob-harness/src/runtime/tools-compute.ts +136 -0
- package/.pi/extensions/zob-harness/src/runtime/tools-coms.ts +365 -0
- package/.pi/extensions/zob-harness/src/runtime/tools-context.ts +70 -0
- package/.pi/extensions/zob-harness/src/runtime/tools-delegation.ts +1854 -0
- package/.pi/extensions/zob-harness/src/runtime/tools-factory.ts +810 -0
- package/.pi/extensions/zob-harness/src/runtime/tools-goal-room.ts +46 -0
- package/.pi/extensions/zob-harness/src/runtime/tools-governed-requests.ts +38 -0
- package/.pi/extensions/zob-harness/src/runtime/tools-merge-queue.ts +61 -0
- package/.pi/extensions/zob-harness/src/runtime/tools-mission-control.ts +77 -0
- package/.pi/extensions/zob-harness/src/runtime/tools-orchestration.ts +106 -0
- package/.pi/extensions/zob-harness/src/runtime/tools-project-dna.ts +123 -0
- package/.pi/extensions/zob-harness/src/runtime/tools-worker-pool.ts +93 -0
- package/.pi/extensions/zob-harness/src/runtime/tools-workspace-claims.ts +62 -0
- package/.pi/extensions/zob-harness/src/runtime/tools-zcommit.ts +147 -0
- package/.pi/extensions/zob-harness/src/runtime/widget.ts +353 -0
- package/.pi/extensions/zob-harness/src/runtime/zobHarness.ts +60 -0
- package/.pi/extensions/zob-harness/src/safety.ts +338 -0
- package/.pi/extensions/zob-harness/src/sandbox.ts +1508 -0
- package/.pi/extensions/zob-harness/src/schemas-project-dna.ts +47 -0
- package/.pi/extensions/zob-harness/src/schemas.ts +695 -0
- package/.pi/extensions/zob-harness/src/telemetry.ts +373 -0
- package/.pi/extensions/zob-harness/src/topology/AGENTS.md +22 -0
- package/.pi/extensions/zob-harness/src/topology/chains.ts +236 -0
- package/.pi/extensions/zob-harness/src/topology/coms.ts +211 -0
- package/.pi/extensions/zob-harness/src/topology/orchestration-profiles.ts +204 -0
- package/.pi/extensions/zob-harness/src/topology/teams.ts +113 -0
- package/.pi/extensions/zob-harness/src/types/core.ts +47 -0
- package/.pi/extensions/zob-harness/src/types.ts +939 -0
- package/.pi/extensions/zob-harness/src/utils/AGENTS.md +22 -0
- package/.pi/extensions/zob-harness/src/utils/formatting.ts +34 -0
- package/.pi/extensions/zob-harness/src/utils/hashing.ts +11 -0
- package/.pi/extensions/zob-harness/src/utils/json.ts +28 -0
- package/.pi/extensions/zob-harness/src/utils/paths.ts +54 -0
- package/.pi/extensions/zob-harness/src/utils/records.ts +25 -0
- package/.pi/extensions/zob-harness/src/utils/resources.ts +38 -0
- package/.pi/extensions/zob-harness/src/worker-pool.ts +672 -0
- package/.pi/extensions/zob-harness/src/workspace-claims.ts +297 -0
- package/.pi/extensions/zob-switch/index.ts +180 -0
- package/.pi/factories/budget-preflight-dry-run/batch-manifest.json +59 -0
- package/.pi/factories/budget-preflight-dry-run/factory.json +94 -0
- package/.pi/factories/budget-preflight-dry-run/pilot-manifest.json +50 -0
- package/.pi/factories/budget-preflight-dry-run/smoke-manifest.json +43 -0
- package/.pi/factories/code-review-matrix/batch-manifest.json +61 -0
- package/.pi/factories/code-review-matrix/factory.json +163 -0
- package/.pi/factories/code-review-matrix/pilot-manifest.json +41 -0
- package/.pi/factories/code-review-matrix/smoke-manifest.json +35 -0
- package/.pi/factories/factory-forge/batch-manifest.json +56 -0
- package/.pi/factories/factory-forge/factory.json +84 -0
- package/.pi/factories/factory-forge/pilot-manifest.json +32 -0
- package/.pi/factories/factory-forge/smoke-manifest.json +19 -0
- package/.pi/factories/opencode-pattern-canonizer/batch-manifest.json +54 -0
- package/.pi/factories/opencode-pattern-canonizer/factory.json +86 -0
- package/.pi/factories/opencode-pattern-canonizer/pilot-manifest.json +39 -0
- package/.pi/factories/opencode-pattern-canonizer/smoke-manifest.json +26 -0
- package/.pi/factories/project-dna/README.md +182 -0
- package/.pi/factories/project-dna/batch-manifest.json +37 -0
- package/.pi/factories/project-dna/example-project-dna-manifest-v2.json +80 -0
- package/.pi/factories/project-dna/example-project-dna-manifest.json +58 -0
- package/.pi/factories/project-dna/factory.json +131 -0
- package/.pi/factories/project-dna/golden-cases-smoke.json +62 -0
- package/.pi/factories/project-dna/pi-agentic-ontology.json +88 -0
- package/.pi/factories/project-dna/pilot-manifest.json +32 -0
- package/.pi/factories/project-dna/schemas/benchmark-suite.schema.json +27 -0
- package/.pi/factories/project-dna/schemas/code-knowledge-graph.schema.json +97 -0
- package/.pi/factories/project-dna/schemas/context-pack.schema.json +43 -0
- package/.pi/factories/project-dna/schemas/golden-case.schema.json +36 -0
- package/.pi/factories/project-dna/schemas/manifest-v2.schema.json +128 -0
- package/.pi/factories/project-dna/schemas/manifest.schema.json +77 -0
- package/.pi/factories/project-dna/schemas/ontology.schema.json +45 -0
- package/.pi/factories/project-dna/schemas/project-fingerprint.schema.json +28 -0
- package/.pi/factories/project-dna/schemas/query-steward-report.schema.json +52 -0
- package/.pi/factories/project-dna/smoke-manifest.json +27 -0
- package/.pi/factories/roadmap-smoke-lots/batch-manifest.json +49 -0
- package/.pi/factories/roadmap-smoke-lots/factory.json +89 -0
- package/.pi/factories/roadmap-smoke-lots/pilot-manifest.json +50 -0
- package/.pi/factories/roadmap-smoke-lots/smoke-manifest.json +35 -0
- package/.pi/git-policy.json +120 -0
- package/.pi/mission-control/zob_coms_transport.json +64 -0
- package/.pi/model-catalog.example.json +345 -0
- package/.pi/model-economy.example.json +196 -0
- package/.pi/model-routing.json +86 -0
- package/.pi/orchestrations/adaptive-chief-vision.json +193 -0
- package/.pi/orchestrations/ceo-feature-build.json +182 -0
- package/.pi/orchestrations/readonly-dynamic-smoke.json +75 -0
- package/.pi/output-contracts/agent-event.v1.json +19 -0
- package/.pi/output-contracts/base.v1.json +24 -0
- package/.pi/output-contracts/brain-lookup.v1.json +21 -0
- package/.pi/output-contracts/clarification.v1.json +21 -0
- package/.pi/output-contracts/context-pack.v1.json +20 -0
- package/.pi/output-contracts/context-request.v1.json +21 -0
- package/.pi/output-contracts/context-steward.v1.json +19 -0
- package/.pi/output-contracts/context-writeback-proposal.v1.json +18 -0
- package/.pi/output-contracts/delegation-request.v1.json +21 -0
- package/.pi/output-contracts/explore.v1.json +52 -0
- package/.pi/output-contracts/factory.v1.json +48 -0
- package/.pi/output-contracts/guidance-steward.v1.json +18 -0
- package/.pi/output-contracts/implement.v1.json +40 -0
- package/.pi/output-contracts/launch-authorization.v1.json +21 -0
- package/.pi/output-contracts/lead-plan.v1.json +22 -0
- package/.pi/output-contracts/mission-readiness.v1.json +20 -0
- package/.pi/output-contracts/oracle-merge.v1.json +44 -0
- package/.pi/output-contracts/oracle-request.v1.json +20 -0
- package/.pi/output-contracts/oracle.v1.json +44 -0
- package/.pi/output-contracts/orchestration-profile.v1.json +22 -0
- package/.pi/output-contracts/plan.v1.json +48 -0
- package/.pi/output-contracts/prompt-pack.v1.json +20 -0
- package/.pi/output-contracts/qa.v1.json +40 -0
- package/.pi/output-contracts/research.v1.json +36 -0
- package/.pi/output-contracts/spec.v1.json +22 -0
- package/.pi/output-contracts/synthesis.v1.json +44 -0
- package/.pi/output-contracts/temp-agent-card.v1.json +23 -0
- package/.pi/output-contracts/todo-child-result.v1.json +20 -0
- package/.pi/output-contracts/todo-child-result.v2.json +22 -0
- package/.pi/output-contracts/todo-claim-validation.v1.json +22 -0
- package/.pi/output-contracts/todo-split-request.v1.json +20 -0
- package/.pi/prompts/adaptive-workflow.md +63 -0
- package/.pi/prompts/autonomous-runtime.md +15 -0
- package/.pi/prompts/benchmark-contender.md +15 -0
- package/.pi/prompts/benchmark-judge.md +19 -0
- package/.pi/prompts/clarify-spec.md +20 -0
- package/.pi/prompts/compute-plan.md +36 -0
- package/.pi/prompts/compute-preview.md +42 -0
- package/.pi/prompts/contract.md +29 -0
- package/.pi/prompts/explore.md +13 -0
- package/.pi/prompts/factory-run.md +36 -0
- package/.pi/prompts/factory.md +20 -0
- package/.pi/prompts/implement.md +27 -0
- package/.pi/prompts/model-catalog.md +68 -0
- package/.pi/prompts/model-economy.md +64 -0
- package/.pi/prompts/oracle-merge.md +18 -0
- package/.pi/prompts/oracle.md +13 -0
- package/.pi/prompts/orchestrator.md +48 -0
- package/.pi/prompts/parallel-review.md +21 -0
- package/.pi/prompts/plan.md +21 -0
- package/.pi/prompts/project-dna.md +90 -0
- package/.pi/prompts/refactor-oracle.md +23 -0
- package/.pi/prompts/refactor-slice.md +24 -0
- package/.pi/prompts/research.md +20 -0
- package/.pi/prompts/spec.md +19 -0
- package/.pi/prompts/synthesis.md +18 -0
- package/.pi/rules/always.md +38 -0
- package/.pi/rules/docs.md +32 -0
- package/.pi/rules/factory.md +44 -0
- package/.pi/rules/oracle.md +34 -0
- package/.pi/rules/orchestration.md +44 -0
- package/.pi/rules/project.md +34 -0
- package/.pi/rules/prompts.md +43 -0
- package/.pi/rules/runtime.md +43 -0
- package/.pi/rules/sandbox.md +43 -0
- package/.pi/settings.json +28 -0
- package/.pi/skills/zob-agentic-access/SKILL.md +20 -0
- package/.pi/skills/zob-autonomous-runtime/SKILL.md +41 -0
- package/.pi/skills/zob-commit/SKILL.md +79 -0
- package/.pi/skills/zob-compaction-policy/SKILL.md +92 -0
- package/.pi/skills/zob-compute-profile/SKILL.md +108 -0
- package/.pi/skills/zob-coms-safety/SKILL.md +54 -0
- package/.pi/skills/zob-coms-v2-live/SKILL.md +47 -0
- package/.pi/skills/zob-delegation-routing/SKILL.md +82 -0
- package/.pi/skills/zob-factory/SKILL.md +28 -0
- package/.pi/skills/zob-goal-todo-tree/SKILL.md +279 -0
- package/.pi/skills/zob-harness/SKILL.md +68 -0
- package/.pi/skills/zob-mission-control-coms/SKILL.md +39 -0
- package/.pi/skills/zob-oracle/SKILL.md +21 -0
- package/.pi/skills/zob-owner-pool-drill-writer/SKILL.md +244 -0
- package/.pi/skills/zob-owner-pool-launcher/SKILL.md +261 -0
- package/.pi/skills/zob-project-dna/SKILL.md +275 -0
- package/.pi/skills/zob-sandbox/SKILL.md +29 -0
- package/.pi/skills/zob-spec/SKILL.md +25 -0
- package/.pi/skills/zob-split-refactor/SKILL.md +39 -0
- package/.pi/skills/zob-tool-router/SKILL.md +104 -0
- package/.pi/teams/zob-core.json +122 -0
- package/AGENTS.md +89 -0
- package/CONTRIBUTING.md +56 -0
- package/LICENSE +21 -0
- package/README.md +360 -0
- package/SECURITY.md +35 -0
- package/SOURCE_INDEX.md +46 -0
- package/package.json +135 -0
- package/scripts/README.md +57 -0
- package/scripts/autonomy/mission-readiness-secret-smoke.mjs +90 -0
- package/scripts/compute-profile/plan-workflow.mjs +85 -0
- package/scripts/compute-profile/preview.mjs +242 -0
- package/scripts/compute-profile/regression-smoke.mjs +38 -0
- package/scripts/compute-profile/summarize.mjs +72 -0
- package/scripts/compute-profile/validate-policy.mjs +50 -0
- package/scripts/compute-profile/validate-preview.mjs +95 -0
- package/scripts/compute-profile/validate-workflow.mjs +58 -0
- package/scripts/git-ops/commit-policy-smoke.mjs +221 -0
- package/scripts/goal-todo/child-goal-ref-smoke.mjs +252 -0
- package/scripts/harness-switch/static-smoke.mjs +43 -0
- package/scripts/model-catalog/validate-economy.mjs +223 -0
- package/scripts/model-catalog/validate.mjs +199 -0
- package/scripts/package-surface/validate-script-refs.mjs +190 -0
- package/scripts/path-policy/validate-smoke.mjs +103 -0
- package/scripts/project-dna/bench-smoke.mjs +217 -0
- package/scripts/project-dna/build-capsules.mjs +207 -0
- package/scripts/project-dna/build-sample-spec.mjs +140 -0
- package/scripts/project-dna/emit-golden-cases.mjs +75 -0
- package/scripts/project-dna/emit-ontology.mjs +75 -0
- package/scripts/project-dna/generate-sample.mjs +302 -0
- package/scripts/project-dna/oracle-review-smoke.mjs +157 -0
- package/scripts/project-dna/plan-workflow.mjs +289 -0
- package/scripts/project-dna/query-context.mjs +276 -0
- package/scripts/project-dna/query-steward.mjs +149 -0
- package/scripts/project-dna/scan.mjs +553 -0
- package/scripts/project-dna/validate-5of5.mjs +159 -0
- package/scripts/project-dna/validate-golden-cases.mjs +78 -0
- package/scripts/project-dna/validate-ontology.mjs +97 -0
- package/scripts/project-dna/validate-sample-project.mjs +105 -0
- package/scripts/project-dna/validate-scaffold.mjs +383 -0
- package/scripts/project-dna/validate-scan-artifacts.mjs +187 -0
- package/scripts/project-dna/validate-workflow.mjs +166 -0
- package/scripts/start-pi.sh +4 -0
- package/scripts/worker-pool/static-smoke.mjs +54 -0
- package/scripts/zpeer-local-e2e-smoke.mjs +395 -0
- package/scripts/zpeer-static-smoke.mjs +129 -0
- package/tsconfig.json +12 -0
|
@@ -0,0 +1,319 @@
|
|
|
1
|
+
import { appendFileSync, copyFileSync, existsSync, lstatSync, mkdirSync, writeFileSync } from "node:fs";
|
|
2
|
+
import { join } from "node:path";
|
|
3
|
+
|
|
4
|
+
import type { FactoryQuarantineActivateInput, FactoryQuarantineActivateResult, FactoryQuarantineReviewInput, FactoryQuarantineReviewResult, FactoryQuarantineVerifyActivationInput, FactoryQuarantineVerifyActivationResult, FactoryRunResult } from "../types.js";
|
|
5
|
+
import { sha256Hex } from "../utils/hashing.js";
|
|
6
|
+
import { parseJsonFile, readJsonlRecords } from "../utils/json.js";
|
|
7
|
+
import { safeFileStem } from "../utils/paths.js";
|
|
8
|
+
import { isRecord } from "../utils/records.js";
|
|
9
|
+
import { runFactoryRun } from "./run.js";
|
|
10
|
+
|
|
11
|
+
export function runFactoryQuarantineReview(repoRoot: string, input: FactoryQuarantineReviewInput): FactoryQuarantineReviewResult {
|
|
12
|
+
const runId = safeFileStem(input.run_id);
|
|
13
|
+
const reviewId = safeFileStem(input.review_id ?? `review-${input.generated_factory}`);
|
|
14
|
+
const generatedFactory = safeFileStem(input.generated_factory);
|
|
15
|
+
const runDir = join(repoRoot, "reports", "factory-runs", runId);
|
|
16
|
+
const reviewDir = join(runDir, "reviews", reviewId);
|
|
17
|
+
const quarantineDir = join(runDir, "quarantine", generatedFactory);
|
|
18
|
+
const registryDir = join(repoRoot, ".pi", "factories", generatedFactory);
|
|
19
|
+
const errors: string[] = [];
|
|
20
|
+
|
|
21
|
+
if (runId !== input.run_id) errors.push(`run_id must be path-safe: ${input.run_id}`);
|
|
22
|
+
if (input.review_id && reviewId !== input.review_id) errors.push(`review_id must be path-safe: ${input.review_id}`);
|
|
23
|
+
if (generatedFactory !== input.generated_factory) errors.push(`generated_factory must be path-safe: ${input.generated_factory}`);
|
|
24
|
+
|
|
25
|
+
const factoryJsonPath = join(quarantineDir, "factory.json");
|
|
26
|
+
const smokeManifestPath = join(quarantineDir, "smoke-manifest.json");
|
|
27
|
+
const readmePath = join(quarantineDir, "README.md");
|
|
28
|
+
const validationPath = join(runDir, "validation.json");
|
|
29
|
+
const sentinelPath = join(runDir, "DONE.sentinel");
|
|
30
|
+
|
|
31
|
+
const localChecks: Array<Record<string, unknown>> = [
|
|
32
|
+
{ check: "run_dir_exists", passed: existsSync(runDir) },
|
|
33
|
+
{ check: "quarantine_factory_json_exists", passed: existsSync(factoryJsonPath) },
|
|
34
|
+
{ check: "quarantine_smoke_manifest_exists", passed: existsSync(smokeManifestPath) },
|
|
35
|
+
{ check: "quarantine_readme_exists", passed: existsSync(readmePath) },
|
|
36
|
+
{ check: "run_validation_exists", passed: existsSync(validationPath) },
|
|
37
|
+
{ check: "run_sentinel_exists", passed: existsSync(sentinelPath) },
|
|
38
|
+
];
|
|
39
|
+
|
|
40
|
+
let quarantinedFactory: Record<string, unknown> | undefined;
|
|
41
|
+
if (existsSync(factoryJsonPath)) {
|
|
42
|
+
try {
|
|
43
|
+
const parsed = parseJsonFile(factoryJsonPath);
|
|
44
|
+
if (isRecord(parsed)) quarantinedFactory = parsed;
|
|
45
|
+
else errors.push("quarantined factory.json is not an object");
|
|
46
|
+
} catch (error) {
|
|
47
|
+
errors.push(`could not parse quarantined factory.json: ${error instanceof Error ? error.message : String(error)}`);
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
let smokeManifest: Record<string, unknown> | undefined;
|
|
52
|
+
if (existsSync(smokeManifestPath)) {
|
|
53
|
+
try {
|
|
54
|
+
const parsed = parseJsonFile(smokeManifestPath);
|
|
55
|
+
if (isRecord(parsed)) smokeManifest = parsed;
|
|
56
|
+
else errors.push("quarantined smoke-manifest.json is not an object");
|
|
57
|
+
} catch (error) {
|
|
58
|
+
errors.push(`could not parse quarantined smoke-manifest.json: ${error instanceof Error ? error.message : String(error)}`);
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
let validation: Record<string, unknown> | undefined;
|
|
63
|
+
if (existsSync(validationPath)) {
|
|
64
|
+
try {
|
|
65
|
+
const parsed = parseJsonFile(validationPath);
|
|
66
|
+
if (isRecord(parsed)) validation = parsed;
|
|
67
|
+
else errors.push("run validation.json is not an object");
|
|
68
|
+
} catch (error) {
|
|
69
|
+
errors.push(`could not parse run validation.json: ${error instanceof Error ? error.message : String(error)}`);
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
const validationFactoryForge = isRecord(validation?.factoryForge) ? validation.factoryForge : undefined;
|
|
74
|
+
const generatedFactoryRegistered = existsSync(registryDir);
|
|
75
|
+
const semanticChecks = [
|
|
76
|
+
{ check: "factory_status_quarantined", passed: quarantinedFactory?.status === "quarantined" },
|
|
77
|
+
{ check: "factory_auto_activation_false", passed: quarantinedFactory?.autoActivation === false },
|
|
78
|
+
{ check: "factory_manual_activation_required", passed: quarantinedFactory?.manualActivationRequired === true },
|
|
79
|
+
{ check: "manifest_targets_generated_factory", passed: smokeManifest?.factory === generatedFactory },
|
|
80
|
+
{ check: "run_validation_passed", passed: validation?.status === "passed" },
|
|
81
|
+
{ check: "forge_validation_quarantined", passed: validationFactoryForge?.quarantineStatus === "quarantined" },
|
|
82
|
+
{ check: "forge_validation_no_registration", passed: validationFactoryForge?.generatedFactoryRegistered === false },
|
|
83
|
+
{ check: "registry_absent", passed: generatedFactoryRegistered === false },
|
|
84
|
+
];
|
|
85
|
+
|
|
86
|
+
for (const check of [...localChecks, ...semanticChecks]) {
|
|
87
|
+
if (check.passed !== true) errors.push(`local check failed: ${String(check.check)}`);
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
const oraclePassed = input.oracle_verdict === "PASS";
|
|
91
|
+
const approvalPresent = Boolean(input.approval?.approvedBy && input.approval.approvedAt && input.approval.approvalId);
|
|
92
|
+
const localChecksPassed = errors.length === 0;
|
|
93
|
+
const activationReady = localChecksPassed && oraclePassed && approvalPresent;
|
|
94
|
+
const status = activationReady ? "ready_for_manual_activation" : "review_required";
|
|
95
|
+
const activationPerformed = false as const;
|
|
96
|
+
const artifacts = ["review.json", "activation-readiness.json", "final-report.md"];
|
|
97
|
+
|
|
98
|
+
mkdirSync(reviewDir, { recursive: true });
|
|
99
|
+
const review = {
|
|
100
|
+
schema: "zob.factory-quarantine-review.v1",
|
|
101
|
+
runId,
|
|
102
|
+
reviewId,
|
|
103
|
+
generatedFactory,
|
|
104
|
+
quarantinePath: `quarantine/${generatedFactory}`,
|
|
105
|
+
status,
|
|
106
|
+
activationReady,
|
|
107
|
+
activationPerformed,
|
|
108
|
+
generatedFactoryRegistered,
|
|
109
|
+
localChecksPassed,
|
|
110
|
+
oraclePassed,
|
|
111
|
+
approvalPresent,
|
|
112
|
+
oracleVerdict: input.oracle_verdict ?? "MISSING",
|
|
113
|
+
approval: input.approval ?? null,
|
|
114
|
+
localChecks: [...localChecks, ...semanticChecks],
|
|
115
|
+
errors,
|
|
116
|
+
};
|
|
117
|
+
writeFileSync(join(reviewDir, "review.json"), JSON.stringify(review, null, 2), "utf8");
|
|
118
|
+
writeFileSync(join(reviewDir, "activation-readiness.json"), JSON.stringify({
|
|
119
|
+
schema: "zob.factory-activation-readiness.v1",
|
|
120
|
+
runId,
|
|
121
|
+
reviewId,
|
|
122
|
+
generatedFactory,
|
|
123
|
+
status,
|
|
124
|
+
activationReady,
|
|
125
|
+
activationPerformed,
|
|
126
|
+
generatedFactoryRegistered,
|
|
127
|
+
requiredForActivationReady: {
|
|
128
|
+
localChecksPassed,
|
|
129
|
+
oraclePassed,
|
|
130
|
+
approvalPresent,
|
|
131
|
+
},
|
|
132
|
+
}, null, 2), "utf8");
|
|
133
|
+
writeFileSync(join(reviewDir, "final-report.md"), [
|
|
134
|
+
`# Factory Quarantine Review`,
|
|
135
|
+
``,
|
|
136
|
+
`- runId: ${runId}`,
|
|
137
|
+
`- reviewId: ${reviewId}`,
|
|
138
|
+
`- generatedFactory: ${generatedFactory}`,
|
|
139
|
+
`- status: ${status}`,
|
|
140
|
+
`- activationReady: ${activationReady}`,
|
|
141
|
+
`- activationPerformed: false`,
|
|
142
|
+
`- generatedFactoryRegistered: ${generatedFactoryRegistered}`,
|
|
143
|
+
``,
|
|
144
|
+
].join("\n"), "utf8");
|
|
145
|
+
|
|
146
|
+
return { runId, reviewId, reviewDir, status, activationReady, activationPerformed, generatedFactoryRegistered, localChecksPassed, oraclePassed, approvalPresent, artifacts, errors };
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
export function runFactoryQuarantineActivate(repoRoot: string, input: FactoryQuarantineActivateInput): FactoryQuarantineActivateResult {
|
|
150
|
+
const runId = safeFileStem(input.run_id);
|
|
151
|
+
const reviewId = safeFileStem(input.review_id);
|
|
152
|
+
const generatedFactory = safeFileStem(input.generated_factory);
|
|
153
|
+
const activationId = safeFileStem(input.activation_id ?? `activation-${reviewId}`);
|
|
154
|
+
const runDir = join(repoRoot, "reports", "factory-runs", runId);
|
|
155
|
+
const reviewDir = join(runDir, "reviews", reviewId);
|
|
156
|
+
const readinessPath = join(reviewDir, "activation-readiness.json");
|
|
157
|
+
const quarantineDir = join(runDir, "quarantine", generatedFactory);
|
|
158
|
+
const targetDir = join(repoRoot, ".pi", "factories", generatedFactory);
|
|
159
|
+
const journalPath = join(runDir, "activation-journal.jsonl");
|
|
160
|
+
const confirmationExpected = `ACTIVATE QUARANTINED FACTORY ${generatedFactory} FROM RUN ${runId} REVIEW ${reviewId}`;
|
|
161
|
+
const confirmationMatched = input.confirmation_phrase === confirmationExpected;
|
|
162
|
+
const errors: string[] = [];
|
|
163
|
+
const copiedFiles: string[] = [];
|
|
164
|
+
|
|
165
|
+
if (runId !== input.run_id) errors.push(`run_id must be path-safe: ${input.run_id}`);
|
|
166
|
+
if (reviewId !== input.review_id) errors.push(`review_id must be path-safe: ${input.review_id}`);
|
|
167
|
+
if (generatedFactory !== input.generated_factory) errors.push(`generated_factory must be path-safe: ${input.generated_factory}`);
|
|
168
|
+
if (input.activation_id && activationId !== input.activation_id) errors.push(`activation_id must be path-safe: ${input.activation_id}`);
|
|
169
|
+
if (!confirmationMatched) errors.push("confirmation_phrase did not match exact required phrase");
|
|
170
|
+
if (existsSync(targetDir)) errors.push(`target factory already exists: .pi/factories/${generatedFactory}`);
|
|
171
|
+
|
|
172
|
+
let readiness: Record<string, unknown> | undefined;
|
|
173
|
+
if (!existsSync(readinessPath)) {
|
|
174
|
+
errors.push(`activation-readiness.json not found for review: ${reviewId}`);
|
|
175
|
+
} else {
|
|
176
|
+
try {
|
|
177
|
+
const parsed = parseJsonFile(readinessPath);
|
|
178
|
+
if (isRecord(parsed)) readiness = parsed;
|
|
179
|
+
else errors.push("activation-readiness.json is not an object");
|
|
180
|
+
} catch (error) {
|
|
181
|
+
errors.push(`could not parse activation-readiness.json: ${error instanceof Error ? error.message : String(error)}`);
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
if (readiness) {
|
|
186
|
+
if (readiness.runId !== runId) errors.push("activation-readiness.json runId does not match input run_id");
|
|
187
|
+
if (readiness.reviewId !== reviewId) errors.push("activation-readiness.json reviewId does not match input review_id");
|
|
188
|
+
if (readiness.generatedFactory !== generatedFactory) errors.push("activation-readiness.json generatedFactory does not match input generated_factory");
|
|
189
|
+
if (readiness.activationReady !== true) errors.push("activation-readiness.json activationReady must be true");
|
|
190
|
+
if (readiness.activationPerformed !== false) errors.push("activation-readiness.json activationPerformed must be false");
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
const allowlistedFiles = ["factory.json", "smoke-manifest.json", "README.md"];
|
|
194
|
+
for (const file of allowlistedFiles) {
|
|
195
|
+
const sourcePath = join(quarantineDir, file);
|
|
196
|
+
if (!existsSync(sourcePath)) {
|
|
197
|
+
errors.push(`quarantine allowlisted file missing: ${file}`);
|
|
198
|
+
continue;
|
|
199
|
+
}
|
|
200
|
+
const stat = lstatSync(sourcePath);
|
|
201
|
+
if (!stat.isFile() || stat.isSymbolicLink()) errors.push(`quarantine allowlisted file must be a regular non-symlink file: ${file}`);
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
const status = errors.length === 0 ? "activated" : "failed_preflight";
|
|
205
|
+
if (status === "activated") {
|
|
206
|
+
mkdirSync(targetDir, { recursive: false });
|
|
207
|
+
for (const file of allowlistedFiles) {
|
|
208
|
+
copyFileSync(join(quarantineDir, file), join(targetDir, file));
|
|
209
|
+
copiedFiles.push(file);
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
if (runId === input.run_id) {
|
|
214
|
+
mkdirSync(runDir, { recursive: true });
|
|
215
|
+
appendFileSync(journalPath, `${JSON.stringify({
|
|
216
|
+
schema: "zob.factory-quarantine-activation-journal.v1",
|
|
217
|
+
event: "factory_quarantine_activate",
|
|
218
|
+
activationId,
|
|
219
|
+
runId,
|
|
220
|
+
reviewId,
|
|
221
|
+
generatedFactory,
|
|
222
|
+
status,
|
|
223
|
+
activationPerformed: status === "activated",
|
|
224
|
+
confirmationMatched,
|
|
225
|
+
confirmationHash: sha256Hex(input.confirmation_phrase),
|
|
226
|
+
target: `.pi/factories/${generatedFactory}`,
|
|
227
|
+
copiedFiles,
|
|
228
|
+
errors,
|
|
229
|
+
createdAt: new Date().toISOString(),
|
|
230
|
+
})}\n`, "utf8");
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
return { runId, reviewId, activationId, generatedFactory, status, activationPerformed: status === "activated", confirmationMatched, targetDir, journalPath, copiedFiles, errors };
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
export function runFactoryQuarantineVerifyActivation(repoRoot: string, input: FactoryQuarantineVerifyActivationInput): FactoryQuarantineVerifyActivationResult {
|
|
237
|
+
const runId = safeFileStem(input.run_id);
|
|
238
|
+
const generatedFactory = safeFileStem(input.generated_factory);
|
|
239
|
+
const activationId = safeFileStem(input.activation_id);
|
|
240
|
+
const verificationId = safeFileStem(input.verification_id ?? `verify-${activationId}`);
|
|
241
|
+
const runDir = join(repoRoot, "reports", "factory-runs", runId);
|
|
242
|
+
const verificationDir = join(runDir, "verification", verificationId);
|
|
243
|
+
const journalPath = join(runDir, "activation-verification-journal.jsonl");
|
|
244
|
+
const activationJournalPath = join(runDir, "activation-journal.jsonl");
|
|
245
|
+
const targetDir = join(repoRoot, ".pi", "factories", generatedFactory);
|
|
246
|
+
const smokeManifest = `.pi/factories/${generatedFactory}/smoke-manifest.json`;
|
|
247
|
+
const factoryRunId = `${runId}-${verificationId}-factory-run`;
|
|
248
|
+
const factoryRunDir = join(repoRoot, "reports", "factory-runs", factoryRunId);
|
|
249
|
+
const errors: string[] = [];
|
|
250
|
+
const artifacts = ["verification.json", "factory-run-result.json", "final-report.md"];
|
|
251
|
+
|
|
252
|
+
if (runId !== input.run_id) errors.push(`run_id must be path-safe: ${input.run_id}`);
|
|
253
|
+
if (generatedFactory !== input.generated_factory) errors.push(`generated_factory must be path-safe: ${input.generated_factory}`);
|
|
254
|
+
if (activationId !== input.activation_id) errors.push(`activation_id must be path-safe: ${input.activation_id}`);
|
|
255
|
+
if (input.verification_id && verificationId !== input.verification_id) errors.push(`verification_id must be path-safe: ${input.verification_id}`);
|
|
256
|
+
|
|
257
|
+
const activationEntries = readJsonlRecords(activationJournalPath);
|
|
258
|
+
const matchingActivation = activationEntries.find((entry) => entry.event === "factory_quarantine_activate" && entry.activationId === activationId && entry.runId === runId && entry.generatedFactory === generatedFactory && entry.status === "activated" && entry.activationPerformed === true);
|
|
259
|
+
if (!matchingActivation) errors.push("matching successful activation journal entry not found");
|
|
260
|
+
if (!existsSync(targetDir)) errors.push(`activated factory target not found: .pi/factories/${generatedFactory}`);
|
|
261
|
+
if (!existsSync(join(targetDir, "factory.json"))) errors.push("activated factory.json not found");
|
|
262
|
+
if (!existsSync(join(targetDir, "smoke-manifest.json"))) errors.push("activated smoke-manifest.json not found");
|
|
263
|
+
if (!existsSync(join(targetDir, "README.md"))) errors.push("activated README.md not found");
|
|
264
|
+
if (existsSync(factoryRunDir)) errors.push(`Verification factory_run directory already exists: ${factoryRunDir}`);
|
|
265
|
+
|
|
266
|
+
let factoryRunResult: FactoryRunResult | undefined;
|
|
267
|
+
if (errors.length === 0) {
|
|
268
|
+
factoryRunResult = runFactoryRun(repoRoot, { factory: generatedFactory, input_manifest: smokeManifest, run_id: factoryRunId, mode: "smoke", execution: "deterministic" });
|
|
269
|
+
if (factoryRunResult.status !== "done") errors.push(`deterministic factory_run smoke did not complete: ${factoryRunResult.status}`);
|
|
270
|
+
errors.push(...factoryRunResult.errors);
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
const status: FactoryQuarantineVerifyActivationResult["status"] = errors.length > 0 ? (factoryRunResult ? "failed_verification" : "failed_preflight") : "verified";
|
|
274
|
+
mkdirSync(verificationDir, { recursive: true });
|
|
275
|
+
const verification = {
|
|
276
|
+
schema: "zob.factory-quarantine-activation-verification.v1",
|
|
277
|
+
runId,
|
|
278
|
+
activationId,
|
|
279
|
+
verificationId,
|
|
280
|
+
generatedFactory,
|
|
281
|
+
status,
|
|
282
|
+
activationJournalPath,
|
|
283
|
+
matchingActivationFound: Boolean(matchingActivation),
|
|
284
|
+
deterministicFactoryRun: factoryRunResult ?? null,
|
|
285
|
+
requiredFactoryRun: { factory: generatedFactory, input_manifest: smokeManifest, run_id: factoryRunId, mode: "smoke", execution: "deterministic" },
|
|
286
|
+
errors,
|
|
287
|
+
createdAt: new Date().toISOString(),
|
|
288
|
+
};
|
|
289
|
+
writeFileSync(join(verificationDir, "verification.json"), JSON.stringify(verification, null, 2), "utf8");
|
|
290
|
+
writeFileSync(join(verificationDir, "factory-run-result.json"), JSON.stringify(factoryRunResult ?? null, null, 2), "utf8");
|
|
291
|
+
writeFileSync(join(verificationDir, "final-report.md"), [
|
|
292
|
+
`# Factory Activation Verification`,
|
|
293
|
+
``,
|
|
294
|
+
`- runId: ${runId}`,
|
|
295
|
+
`- activationId: ${activationId}`,
|
|
296
|
+
`- verificationId: ${verificationId}`,
|
|
297
|
+
`- generatedFactory: ${generatedFactory}`,
|
|
298
|
+
`- status: ${status}`,
|
|
299
|
+
`- factoryRunId: ${factoryRunId}`,
|
|
300
|
+
`- deterministicFactoryRunStatus: ${factoryRunResult?.status ?? "not-run"}`,
|
|
301
|
+
``,
|
|
302
|
+
].join("\n"), "utf8");
|
|
303
|
+
appendFileSync(journalPath, `${JSON.stringify({
|
|
304
|
+
schema: "zob.factory-quarantine-activation-verification-journal.v1",
|
|
305
|
+
event: "factory_quarantine_verify_activation",
|
|
306
|
+
runId,
|
|
307
|
+
activationId,
|
|
308
|
+
verificationId,
|
|
309
|
+
generatedFactory,
|
|
310
|
+
status,
|
|
311
|
+
matchingActivationFound: Boolean(matchingActivation),
|
|
312
|
+
factoryRunId,
|
|
313
|
+
factoryRunStatus: factoryRunResult?.status ?? "not-run",
|
|
314
|
+
errors,
|
|
315
|
+
createdAt: new Date().toISOString(),
|
|
316
|
+
})}\n`, "utf8");
|
|
317
|
+
|
|
318
|
+
return { runId, activationId, verificationId, generatedFactory, status, verificationDir, journalPath, factoryRunId, factoryRunDir, artifacts, errors };
|
|
319
|
+
}
|