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,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"factory": "budget-preflight-dry-run",
|
|
3
|
+
"description": "Smoke manifest for the deterministic budget preflight dry-run helper and read-only no-execution assertions.",
|
|
4
|
+
"items": [
|
|
5
|
+
{
|
|
6
|
+
"id": "budget-preflight-helper",
|
|
7
|
+
"path": ".pi/extensions/zob-harness/index.ts",
|
|
8
|
+
"metadata": {
|
|
9
|
+
"helper": "evaluateBudgetPreflightDryRun",
|
|
10
|
+
"schema": "zob.budget-preflight-result.v1",
|
|
11
|
+
"caps": [
|
|
12
|
+
"maxCostUsd",
|
|
13
|
+
"maxRuns",
|
|
14
|
+
"maxDurationMs",
|
|
15
|
+
"maxParallelChildren"
|
|
16
|
+
],
|
|
17
|
+
"advisory_flags": {
|
|
18
|
+
"mode": "advisory",
|
|
19
|
+
"advisory": true,
|
|
20
|
+
"strictEnabled": false,
|
|
21
|
+
"budgetEnforced": false,
|
|
22
|
+
"wouldBlockDispatch": false,
|
|
23
|
+
"defaultDispatchDecision": "allow"
|
|
24
|
+
},
|
|
25
|
+
"no_execution_flags": {
|
|
26
|
+
"dryRun": true,
|
|
27
|
+
"modelRouterUsed": false,
|
|
28
|
+
"daemonStarted": false,
|
|
29
|
+
"childDispatchAllowed": false,
|
|
30
|
+
"noExecution": true
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
],
|
|
35
|
+
"expectedArtifacts": [
|
|
36
|
+
"patterns.canonical.json",
|
|
37
|
+
"risks.canonical.json",
|
|
38
|
+
"workflow-rules.md",
|
|
39
|
+
"agent-instructions.md",
|
|
40
|
+
"quality-gates.json",
|
|
41
|
+
"dashboard-summary.md"
|
|
42
|
+
]
|
|
43
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"factory": "code-review-matrix",
|
|
3
|
+
"description": "Batch manifest for read-only multi-lane code review across safe local harness source files. Batch remains gated by pilot proof, persisted oracle review, and explicit concurrency cap; no autofix or source writes are permitted.",
|
|
4
|
+
"items": [
|
|
5
|
+
{
|
|
6
|
+
"id": "factory-run-batch-review",
|
|
7
|
+
"path": ".pi/extensions/zob-harness/src/factory/run.ts",
|
|
8
|
+
"metadata": {
|
|
9
|
+
"source": "local-source",
|
|
10
|
+
"batch": true,
|
|
11
|
+
"read_only": true,
|
|
12
|
+
"autofix": false,
|
|
13
|
+
"review_lanes": ["architecture", "correctness", "security", "qa", "synthesis", "oracle-merge"]
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"id": "factory-validation-batch-review",
|
|
18
|
+
"path": ".pi/extensions/zob-harness/src/factory/validation.ts",
|
|
19
|
+
"metadata": {
|
|
20
|
+
"source": "local-source",
|
|
21
|
+
"batch": true,
|
|
22
|
+
"read_only": true,
|
|
23
|
+
"autofix": false,
|
|
24
|
+
"review_lanes": ["architecture", "correctness", "security", "qa", "synthesis", "oracle-merge"]
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"id": "factory-agentic-plan-batch-review",
|
|
29
|
+
"path": ".pi/extensions/zob-harness/src/factory/agentic-plan.ts",
|
|
30
|
+
"metadata": {
|
|
31
|
+
"source": "local-source",
|
|
32
|
+
"batch": true,
|
|
33
|
+
"read_only": true,
|
|
34
|
+
"autofix": false,
|
|
35
|
+
"review_lanes": ["architecture", "correctness", "security", "qa", "synthesis", "oracle-merge"]
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"id": "child-runner-batch-review",
|
|
40
|
+
"path": ".pi/extensions/zob-harness/src/child-runner.ts",
|
|
41
|
+
"metadata": {
|
|
42
|
+
"source": "local-source",
|
|
43
|
+
"batch": true,
|
|
44
|
+
"read_only": true,
|
|
45
|
+
"autofix": false,
|
|
46
|
+
"review_lanes": ["architecture", "correctness", "security", "qa", "synthesis", "oracle-merge"]
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
],
|
|
50
|
+
"expectedArtifacts": [
|
|
51
|
+
"patterns.canonical.json",
|
|
52
|
+
"risks.canonical.json",
|
|
53
|
+
"workflow-rules.md",
|
|
54
|
+
"agent-instructions.md",
|
|
55
|
+
"quality-gates.json",
|
|
56
|
+
"dashboard-summary.md",
|
|
57
|
+
"code-review-matrix.json",
|
|
58
|
+
"code-review-blockers.md",
|
|
59
|
+
"code-review-evidence.md"
|
|
60
|
+
]
|
|
61
|
+
}
|
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "code-review-matrix",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Read-only smoke factory for multi-lane code review matrices covering architecture, correctness, security, QA, synthesis, and oracle merge without autofix behavior.",
|
|
5
|
+
"defaultMode": "smoke",
|
|
6
|
+
"requiredStages": [
|
|
7
|
+
"manifest_loaded",
|
|
8
|
+
"agentic_plan_written",
|
|
9
|
+
"item_processed",
|
|
10
|
+
"patterns_canonicalized",
|
|
11
|
+
"risks_canonicalized",
|
|
12
|
+
"quality_gates_written",
|
|
13
|
+
"validation",
|
|
14
|
+
"sentinel"
|
|
15
|
+
],
|
|
16
|
+
"expectedArtifacts": [
|
|
17
|
+
"patterns.canonical.json",
|
|
18
|
+
"risks.canonical.json",
|
|
19
|
+
"workflow-rules.md",
|
|
20
|
+
"agent-instructions.md",
|
|
21
|
+
"quality-gates.json",
|
|
22
|
+
"dashboard-summary.md",
|
|
23
|
+
"code-review-matrix.json",
|
|
24
|
+
"code-review-blockers.md",
|
|
25
|
+
"code-review-evidence.md"
|
|
26
|
+
],
|
|
27
|
+
"stages": [
|
|
28
|
+
{
|
|
29
|
+
"name": "map-architecture-lane",
|
|
30
|
+
"type": "map",
|
|
31
|
+
"agent": "explore",
|
|
32
|
+
"outputContract": "explore.v1",
|
|
33
|
+
"requiredTools": ["read", "grep", "find", "ls"],
|
|
34
|
+
"expectedOutcome": "Assess architecture boundaries, coupling, maintainability, and evidence for one input item without modifying code.",
|
|
35
|
+
"promptTemplate": "Review code-review item {item.id} at {item.path} for architecture concerns only. Produce PASS/FAIL/WARN, blockers, recommended patches as text only, evidence, risks/blockers, compliance, and deliverable_delivered. Do not edit, write, autofix, call cloud/browser/GitHub, or access secrets.",
|
|
36
|
+
"mustDo": [
|
|
37
|
+
"Read the item path before conclusions.",
|
|
38
|
+
"Classify architecture findings as PASS, FAIL, or WARN.",
|
|
39
|
+
"Provide recommended patches as prose only, not applied changes.",
|
|
40
|
+
"Cite concrete file evidence."
|
|
41
|
+
],
|
|
42
|
+
"mustNotDo": [
|
|
43
|
+
"No edits, writes, autofix, or source modifications.",
|
|
44
|
+
"No GitHub, browser, daemon, or cloud actions.",
|
|
45
|
+
"No secrets or .env reads.",
|
|
46
|
+
"No pilot or batch activation."
|
|
47
|
+
],
|
|
48
|
+
"context": "Factory {factory.name} run {run.id}; architecture lane for {item.id} at {item.path}. Outputs directory: {outputs.dir}."
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"name": "map-correctness-lane",
|
|
52
|
+
"type": "map",
|
|
53
|
+
"agent": "oracle",
|
|
54
|
+
"outputContract": "oracle.v1",
|
|
55
|
+
"requiredTools": ["read", "grep", "find", "ls"],
|
|
56
|
+
"expectedOutcome": "Assess correctness risks, edge cases, and behavioral regressions for one input item without modifying code.",
|
|
57
|
+
"promptTemplate": "Review code-review item {item.id} at {item.path} for correctness only. Return PASS/FAIL/WARN verdict, confidence, blockers, notes, evidence, risks/blockers, compliance, and deliverable_delivered. Recommended patches must be textual suggestions only; do not edit or autofix.",
|
|
58
|
+
"mustDo": [
|
|
59
|
+
"Read the item path before conclusions.",
|
|
60
|
+
"Check behavior, edge cases, invariants, and regression risk.",
|
|
61
|
+
"Separate blockers from non-blocking warnings.",
|
|
62
|
+
"Cite exact evidence."
|
|
63
|
+
],
|
|
64
|
+
"mustNotDo": [
|
|
65
|
+
"No edits, writes, autofix, or source modifications.",
|
|
66
|
+
"No GitHub, browser, daemon, or cloud actions.",
|
|
67
|
+
"No secrets or .env reads.",
|
|
68
|
+
"No mandatory budget gate."
|
|
69
|
+
],
|
|
70
|
+
"context": "Factory {factory.name} run {run.id}; correctness lane for {item.id} at {item.path}. Outputs directory: {outputs.dir}."
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"name": "map-security-lane",
|
|
74
|
+
"type": "map",
|
|
75
|
+
"agent": "oracle",
|
|
76
|
+
"outputContract": "oracle.v1",
|
|
77
|
+
"requiredTools": ["read", "grep", "find", "ls"],
|
|
78
|
+
"expectedOutcome": "Assess security, secrets, injection, data exposure, and dangerous operation risks without modifying code.",
|
|
79
|
+
"promptTemplate": "Review code-review item {item.id} at {item.path} for security only. Return PASS/FAIL/WARN verdict, confidence, blockers, notes, evidence, risks/blockers, compliance, and deliverable_delivered. Do not read secrets or .env; recommended patches are prose only.",
|
|
80
|
+
"mustDo": [
|
|
81
|
+
"Read only the declared item path and non-secret supporting files if needed.",
|
|
82
|
+
"Check for secret exposure, unsafe shell/path operations, injection, and external action risk.",
|
|
83
|
+
"Fail on evidence of unsafe write/cloud/browser/GitHub behavior.",
|
|
84
|
+
"Cite exact evidence."
|
|
85
|
+
],
|
|
86
|
+
"mustNotDo": [
|
|
87
|
+
"No edits, writes, autofix, or source modifications.",
|
|
88
|
+
"No GitHub, browser, daemon, or cloud actions.",
|
|
89
|
+
"No secrets or .env reads.",
|
|
90
|
+
"No destructive commands."
|
|
91
|
+
],
|
|
92
|
+
"context": "Factory {factory.name} run {run.id}; security lane for {item.id} at {item.path}. Outputs directory: {outputs.dir}."
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"name": "map-qa-lane",
|
|
96
|
+
"type": "map",
|
|
97
|
+
"agent": "qa",
|
|
98
|
+
"outputContract": "qa.v1",
|
|
99
|
+
"requiredTools": ["read", "grep", "find", "ls"],
|
|
100
|
+
"expectedOutcome": "Assess test coverage, validation gaps, and reproducible QA checks without running writes or modifications.",
|
|
101
|
+
"promptTemplate": "Review code-review item {item.id} at {item.path} for QA and testability only. Return explicit sections/headings: verdict, command/cwd, exit code or important output, reproduction steps, tested, failures, coverage_notes, evidence, risks/blockers, compliance, and deliverable_delivered. If no command is executed, state command/cwd: not executed (read-only review) and exit code or important output: not applicable, then provide reproduction steps for how to re-check manually. Recommend tests as prose only; do not edit or execute write-capable tools.",
|
|
102
|
+
"mustDo": [
|
|
103
|
+
"Read the item path before conclusions.",
|
|
104
|
+
"Identify existing tests and missing coverage from available files only.",
|
|
105
|
+
"Classify QA result as PASS, FAIL, WARN, or INCONCLUSIVE.",
|
|
106
|
+
"Include the exact words command/cwd, exit code or important output, and reproduction steps.",
|
|
107
|
+
"Cite exact evidence."
|
|
108
|
+
],
|
|
109
|
+
"mustNotDo": [
|
|
110
|
+
"No edits, writes, autofix, or source modifications.",
|
|
111
|
+
"No GitHub, browser, daemon, or cloud actions.",
|
|
112
|
+
"No secrets or .env reads.",
|
|
113
|
+
"No pilot or batch activation."
|
|
114
|
+
],
|
|
115
|
+
"context": "Factory {factory.name} run {run.id}; QA lane for {item.id} at {item.path}. Outputs directory: {outputs.dir}."
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"name": "reduce-code-review-matrix",
|
|
119
|
+
"type": "reduce",
|
|
120
|
+
"agent": "synthesis",
|
|
121
|
+
"outputContract": "synthesis.v1",
|
|
122
|
+
"requiredTools": ["read", "grep", "find", "ls"],
|
|
123
|
+
"expectedOutcome": "Merge lane outputs into a read-only review matrix with consensus, conflicts, blockers, recommended textual patches, and evidence.",
|
|
124
|
+
"promptTemplate": "Synthesize code-review lane outputs for factory {factory.name} run {run.id}. Read outputs from {outputs.dir}. Produce consensus, conflicts, missing_evidence, recommended_next_action, tasks_to_rerun, evidence, risks/blockers, compliance, and deliverable_delivered. Preserve PASS/FAIL/WARN per lane and keep recommendations as text only.",
|
|
125
|
+
"mustDo": [
|
|
126
|
+
"Separate architecture, correctness, security, and QA lane verdicts.",
|
|
127
|
+
"Preserve blockers and evidence paths.",
|
|
128
|
+
"Mark recommended patches as advisory text only.",
|
|
129
|
+
"Identify missing evidence and rerun needs."
|
|
130
|
+
],
|
|
131
|
+
"mustNotDo": [
|
|
132
|
+
"No edits, writes, autofix, or source modifications.",
|
|
133
|
+
"No invented evidence.",
|
|
134
|
+
"No GitHub, browser, daemon, or cloud actions.",
|
|
135
|
+
"No mandatory budget gate."
|
|
136
|
+
],
|
|
137
|
+
"context": "Factory {factory.name} reduce stage for run {run.id}."
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"name": "validate-code-review-matrix",
|
|
141
|
+
"type": "validate",
|
|
142
|
+
"agent": "oracle-merge",
|
|
143
|
+
"outputContract": "oracle-merge.v1",
|
|
144
|
+
"requiredTools": ["read", "grep", "find", "ls"],
|
|
145
|
+
"expectedOutcome": "Validate the review matrix and produce a global PASS/FAIL/WARN with no_ship, blockers, evidence, and safe sentinel decision.",
|
|
146
|
+
"promptTemplate": "Validate factory {factory.name} run {run.id} before the parent final gate writes phase/DONE sentinels. Check manifest, outputs, checkpoints, validation.json, final-report.md, and telemetry.json under {run.dir}; treat final phase/DONE sentinels as pending unless the parent final gate has already written them. Return verdict, confidence, no_ship, blockers, notes, evidence, merged_lanes, risks/blockers, compliance, and deliverable_delivered. Fail if review lanes imply edits/autofix/cloud/browser/GitHub actions.",
|
|
147
|
+
"mustDo": [
|
|
148
|
+
"Fail if validation evidence or required non-sentinel artifacts are missing.",
|
|
149
|
+
"Do not fail merely because final phase/DONE sentinels are pending before the parent final gate.",
|
|
150
|
+
"Fail if any lane claims applied patches, writes, autofix, cloud/browser/GitHub, or secret access.",
|
|
151
|
+
"Confirm budget remains advisory and no mandatory gate is used.",
|
|
152
|
+
"Cite exact artifact paths."
|
|
153
|
+
],
|
|
154
|
+
"mustNotDo": [
|
|
155
|
+
"No patches.",
|
|
156
|
+
"No commits.",
|
|
157
|
+
"No secrets or .env reads.",
|
|
158
|
+
"No pilot, batch, daemon, browser, cloud, or GitHub actions."
|
|
159
|
+
],
|
|
160
|
+
"context": "Factory {factory.name} validation stage for run {run.id}."
|
|
161
|
+
}
|
|
162
|
+
]
|
|
163
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"factory": "code-review-matrix",
|
|
3
|
+
"description": "Pilot manifest for read-only multi-lane code review across local harness factory/runtime source files. Pilot remains gated by registered smoke proof and persisted oracle review; recommendations are prose only.",
|
|
4
|
+
"items": [
|
|
5
|
+
{
|
|
6
|
+
"id": "factory-run-pilot-review",
|
|
7
|
+
"path": ".pi/extensions/zob-harness/src/factory/run.ts",
|
|
8
|
+
"metadata": {
|
|
9
|
+
"source": "local-source",
|
|
10
|
+
"pilot": true,
|
|
11
|
+
"read_only": true,
|
|
12
|
+
"autofix": false,
|
|
13
|
+
"review_lanes": ["architecture", "correctness", "security", "qa", "synthesis", "oracle-merge"],
|
|
14
|
+
"focus": "factory execution lifecycle, sentinels, and agentic dispatch safety"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"id": "factory-validation-pilot-review",
|
|
19
|
+
"path": ".pi/extensions/zob-harness/src/factory/validation.ts",
|
|
20
|
+
"metadata": {
|
|
21
|
+
"source": "local-source",
|
|
22
|
+
"pilot": true,
|
|
23
|
+
"read_only": true,
|
|
24
|
+
"autofix": false,
|
|
25
|
+
"review_lanes": ["architecture", "correctness", "security", "qa", "synthesis", "oracle-merge"],
|
|
26
|
+
"focus": "mode gates, sentinel validation, oracle review, and batch promotion safety"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
],
|
|
30
|
+
"expectedArtifacts": [
|
|
31
|
+
"patterns.canonical.json",
|
|
32
|
+
"risks.canonical.json",
|
|
33
|
+
"workflow-rules.md",
|
|
34
|
+
"agent-instructions.md",
|
|
35
|
+
"quality-gates.json",
|
|
36
|
+
"dashboard-summary.md",
|
|
37
|
+
"code-review-matrix.json",
|
|
38
|
+
"code-review-blockers.md",
|
|
39
|
+
"code-review-evidence.md"
|
|
40
|
+
]
|
|
41
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"factory": "code-review-matrix",
|
|
3
|
+
"description": "Smoke manifest for the read-only code-review-matrix product using a local harness source file as deterministic input.",
|
|
4
|
+
"items": [
|
|
5
|
+
{
|
|
6
|
+
"id": "zob-harness-extension-smoke",
|
|
7
|
+
"path": ".pi/extensions/zob-harness/index.ts",
|
|
8
|
+
"metadata": {
|
|
9
|
+
"source": "local-source",
|
|
10
|
+
"review_lanes": [
|
|
11
|
+
"architecture",
|
|
12
|
+
"correctness",
|
|
13
|
+
"security",
|
|
14
|
+
"qa",
|
|
15
|
+
"synthesis",
|
|
16
|
+
"oracle-merge"
|
|
17
|
+
],
|
|
18
|
+
"read_only": true,
|
|
19
|
+
"autofix": false,
|
|
20
|
+
"budget": "optional-advisory"
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
],
|
|
24
|
+
"expectedArtifacts": [
|
|
25
|
+
"patterns.canonical.json",
|
|
26
|
+
"risks.canonical.json",
|
|
27
|
+
"workflow-rules.md",
|
|
28
|
+
"agent-instructions.md",
|
|
29
|
+
"quality-gates.json",
|
|
30
|
+
"dashboard-summary.md",
|
|
31
|
+
"code-review-matrix.json",
|
|
32
|
+
"code-review-blockers.md",
|
|
33
|
+
"code-review-evidence.md"
|
|
34
|
+
]
|
|
35
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"factory": "factory-forge",
|
|
3
|
+
"description": "Batch manifest for deterministic quarantined factory scaffold generation across safe local harness inputs. Batch remains gated by pilot proof and oracle review; no activation or registration is permitted.",
|
|
4
|
+
"items": [
|
|
5
|
+
{
|
|
6
|
+
"id": "quarantined-batch-factory-request",
|
|
7
|
+
"path": "AGENTS.md",
|
|
8
|
+
"metadata": {
|
|
9
|
+
"generatedName": "generated-batch-factory",
|
|
10
|
+
"status": "quarantined",
|
|
11
|
+
"autoActivation": false,
|
|
12
|
+
"manualActivationRequired": true,
|
|
13
|
+
"batch": true
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"id": "quarantine-policy-batch-reference",
|
|
18
|
+
"path": "docs/AUTONOMOUS_SUPER_FACTORY_GOAL.md",
|
|
19
|
+
"metadata": {
|
|
20
|
+
"generatedName": "generated-batch-factory",
|
|
21
|
+
"status": "quarantined",
|
|
22
|
+
"autoActivation": false,
|
|
23
|
+
"manualActivationRequired": true,
|
|
24
|
+
"batch": true,
|
|
25
|
+
"focus": "quarantine-only policy and manual activation gates"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"id": "forge-runtime-batch-review",
|
|
30
|
+
"path": ".pi/extensions/zob-harness/src/factory/run.ts",
|
|
31
|
+
"metadata": {
|
|
32
|
+
"generatedName": "generated-batch-factory",
|
|
33
|
+
"status": "quarantined",
|
|
34
|
+
"autoActivation": false,
|
|
35
|
+
"manualActivationRequired": true,
|
|
36
|
+
"batch": true,
|
|
37
|
+
"focus": "factory-forge deterministic scaffold generation and sentinel lifecycle"
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"id": "forge-quarantine-batch-review",
|
|
42
|
+
"path": ".pi/extensions/zob-harness/src/factory/quarantine.ts",
|
|
43
|
+
"metadata": {
|
|
44
|
+
"generatedName": "generated-batch-factory",
|
|
45
|
+
"status": "quarantined",
|
|
46
|
+
"autoActivation": false,
|
|
47
|
+
"manualActivationRequired": true,
|
|
48
|
+
"batch": true,
|
|
49
|
+
"focus": "manual review, activation, and verification gates"
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
],
|
|
53
|
+
"expectedArtifacts": [
|
|
54
|
+
"factory-forge-summary.json"
|
|
55
|
+
]
|
|
56
|
+
}
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "factory-forge",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Deterministically generate a quarantined factory scaffold inside a factory_run directory for manual review only.",
|
|
5
|
+
"status": "quarantined-generator",
|
|
6
|
+
"autoActivation": false,
|
|
7
|
+
"manualActivationRequired": true,
|
|
8
|
+
"defaultMode": "smoke",
|
|
9
|
+
"requiredStages": [
|
|
10
|
+
"manifest_loaded",
|
|
11
|
+
"agentic_plan_written",
|
|
12
|
+
"item_processed",
|
|
13
|
+
"validation",
|
|
14
|
+
"sentinel"
|
|
15
|
+
],
|
|
16
|
+
"expectedArtifacts": [
|
|
17
|
+
"factory-forge-summary.json"
|
|
18
|
+
],
|
|
19
|
+
"stages": [
|
|
20
|
+
{
|
|
21
|
+
"name": "map-forge-request",
|
|
22
|
+
"type": "map",
|
|
23
|
+
"agent": "explore",
|
|
24
|
+
"outputContract": "explore.v1",
|
|
25
|
+
"requiredTools": ["read", "grep", "find", "ls"],
|
|
26
|
+
"expectedOutcome": "Extract deterministic scaffold requirements from one factory-forge input item.",
|
|
27
|
+
"promptTemplate": "Read factory-forge item {item.id} at {item.path}. Identify the requested generated factory name and quarantine-only constraints. Return explore.v1 with evidence and risks.",
|
|
28
|
+
"mustDo": [
|
|
29
|
+
"Read the input item before conclusions.",
|
|
30
|
+
"Confirm generated output must stay under {run.dir}/quarantine/.",
|
|
31
|
+
"Cite evidence."
|
|
32
|
+
],
|
|
33
|
+
"mustNotDo": [
|
|
34
|
+
"No edits outside the run directory.",
|
|
35
|
+
"No auto-activation.",
|
|
36
|
+
"No secrets."
|
|
37
|
+
],
|
|
38
|
+
"context": "Factory {factory.name} run {run.id}; map stage for quarantined scaffold request {item.id}."
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"name": "reduce-quarantine-scaffold",
|
|
42
|
+
"type": "reduce",
|
|
43
|
+
"agent": "synthesis",
|
|
44
|
+
"outputContract": "synthesis.v1",
|
|
45
|
+
"requiredTools": ["read", "grep", "find", "ls"],
|
|
46
|
+
"expectedOutcome": "Synthesize the deterministic quarantined scaffold plan without activation.",
|
|
47
|
+
"promptTemplate": "Synthesize factory-forge outputs for run {run.id}. Confirm scaffold stays under {run.dir}/quarantine/ and is not registered under .pi/factories. Return explicit synthesis.v1 sections/headings: consensus, conflicts, missing_evidence, recommended_next_action, tasks_to_rerun, evidence, risks/blockers, compliance, and deliverable_delivered.",
|
|
48
|
+
"mustDo": [
|
|
49
|
+
"Keep the generated factory quarantined.",
|
|
50
|
+
"Require manual activation.",
|
|
51
|
+
"Include the exact words consensus, conflicts, missing_evidence, recommended_next_action, and tasks_to_rerun.",
|
|
52
|
+
"Cite run-directory evidence."
|
|
53
|
+
],
|
|
54
|
+
"mustNotDo": [
|
|
55
|
+
"No auto-activation.",
|
|
56
|
+
"No generated registration under .pi/factories.",
|
|
57
|
+
"No secrets."
|
|
58
|
+
],
|
|
59
|
+
"context": "Factory {factory.name} reduce stage for run {run.id}."
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"name": "validate-quarantine-only",
|
|
63
|
+
"type": "validate",
|
|
64
|
+
"agent": "oracle-merge",
|
|
65
|
+
"outputContract": "oracle-merge.v1",
|
|
66
|
+
"requiredTools": ["read", "grep", "find", "ls"],
|
|
67
|
+
"expectedOutcome": "Validate quarantine metadata, no auto-activation, and DONE.sentinel only after validation.",
|
|
68
|
+
"promptTemplate": "Validate factory-forge run {run.id} before the parent final gate writes phase/DONE sentinels. Check validation.json and quarantine scaffold under {run.dir}/quarantine/; treat final phase/DONE sentinels as pending unless the parent final gate has already written them. Fail if generated factory is registered under .pi/factories or autoActivation is true. Return explicit oracle-merge.v1 sections/headings: verdict, confidence, no_ship, blocking_issues, merged_lanes, evidence, risks/blockers, compliance, and deliverable_delivered.",
|
|
69
|
+
"mustDo": [
|
|
70
|
+
"Verify quarantine path is inside the run directory.",
|
|
71
|
+
"Verify generatedFactoryRegistered=false and autoActivation=false.",
|
|
72
|
+
"Verify manualActivationRequired=true.",
|
|
73
|
+
"Do not fail merely because final phase/DONE sentinels are pending before the parent final gate.",
|
|
74
|
+
"Include the exact words verdict, confidence, no_ship, blocking_issues, and merged_lanes."
|
|
75
|
+
],
|
|
76
|
+
"mustNotDo": [
|
|
77
|
+
"No patches.",
|
|
78
|
+
"No commits.",
|
|
79
|
+
"No secrets."
|
|
80
|
+
],
|
|
81
|
+
"context": "Factory {factory.name} validation stage for run {run.id}."
|
|
82
|
+
}
|
|
83
|
+
]
|
|
84
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"factory": "factory-forge",
|
|
3
|
+
"description": "Pilot manifest for deterministic quarantined factory scaffold generation. Keeps all generated content under the run quarantine directory; no activation or registration is permitted.",
|
|
4
|
+
"items": [
|
|
5
|
+
{
|
|
6
|
+
"id": "quarantined-pilot-factory-request",
|
|
7
|
+
"path": "AGENTS.md",
|
|
8
|
+
"metadata": {
|
|
9
|
+
"generatedName": "generated-pilot-factory",
|
|
10
|
+
"status": "quarantined",
|
|
11
|
+
"autoActivation": false,
|
|
12
|
+
"manualActivationRequired": true,
|
|
13
|
+
"pilot": true
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"id": "quarantine-policy-pilot-reference",
|
|
18
|
+
"path": "docs/AUTONOMOUS_SUPER_FACTORY_GOAL.md",
|
|
19
|
+
"metadata": {
|
|
20
|
+
"generatedName": "generated-pilot-factory",
|
|
21
|
+
"status": "quarantined",
|
|
22
|
+
"autoActivation": false,
|
|
23
|
+
"manualActivationRequired": true,
|
|
24
|
+
"pilot": true,
|
|
25
|
+
"focus": "quarantine-only policy and no autonomous activation"
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
],
|
|
29
|
+
"expectedArtifacts": [
|
|
30
|
+
"factory-forge-summary.json"
|
|
31
|
+
]
|
|
32
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"factory": "factory-forge",
|
|
3
|
+
"description": "Smoke manifest for deterministic quarantined factory scaffold generation.",
|
|
4
|
+
"items": [
|
|
5
|
+
{
|
|
6
|
+
"id": "quarantined-smoke-factory",
|
|
7
|
+
"path": "AGENTS.md",
|
|
8
|
+
"metadata": {
|
|
9
|
+
"generatedName": "generated-smoke-factory",
|
|
10
|
+
"status": "quarantined",
|
|
11
|
+
"autoActivation": false,
|
|
12
|
+
"manualActivationRequired": true
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
],
|
|
16
|
+
"expectedArtifacts": [
|
|
17
|
+
"factory-forge-summary.json"
|
|
18
|
+
]
|
|
19
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"factory": "opencode-pattern-canonizer",
|
|
3
|
+
"description": "Batch manifest for deterministic registered agentic proof across safe local documentation inputs. Batch remains gated by smoke, pilot, persisted oracle review, and explicit concurrency cap.",
|
|
4
|
+
"items": [
|
|
5
|
+
{
|
|
6
|
+
"id": "harness-plan-batch",
|
|
7
|
+
"path": "docs/AGENTIC_HARNESS_IMPLEMENTATION_PLAN.md",
|
|
8
|
+
"metadata": { "source": "local-doc", "batch": true }
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"id": "operating-model-batch",
|
|
12
|
+
"path": "docs/OPERATING_MODEL.md",
|
|
13
|
+
"metadata": { "source": "local-doc", "batch": true }
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"id": "roadmap-batch",
|
|
17
|
+
"path": "docs/ROADMAP.md",
|
|
18
|
+
"metadata": { "source": "local-doc", "batch": true }
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"id": "roadmap-lots-batch",
|
|
22
|
+
"path": "docs/ROADMAP_FACTORY_LOTS.md",
|
|
23
|
+
"metadata": { "source": "local-doc", "batch": true }
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"id": "architecture-batch",
|
|
27
|
+
"path": "docs/ARCHITECTURE.md",
|
|
28
|
+
"metadata": { "source": "local-doc", "batch": true }
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"id": "factory-plan-batch",
|
|
32
|
+
"path": "docs/AGENTIC_ENGINEERING_SOFTWARE_FACTORY_PLAN.md",
|
|
33
|
+
"metadata": { "source": "local-doc", "batch": true }
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"id": "zob-rules-batch",
|
|
37
|
+
"path": "docs/ZOB_RULES_SYSTEM.md",
|
|
38
|
+
"metadata": { "source": "local-doc", "batch": true }
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"id": "factory-mode-batch",
|
|
42
|
+
"path": "docs/ZOB_SOFTWARE_FACTORY_MODE.md",
|
|
43
|
+
"metadata": { "source": "local-doc", "batch": true }
|
|
44
|
+
}
|
|
45
|
+
],
|
|
46
|
+
"expectedArtifacts": [
|
|
47
|
+
"patterns.canonical.json",
|
|
48
|
+
"risks.canonical.json",
|
|
49
|
+
"workflow-rules.md",
|
|
50
|
+
"agent-instructions.md",
|
|
51
|
+
"quality-gates.json",
|
|
52
|
+
"dashboard-summary.md"
|
|
53
|
+
]
|
|
54
|
+
}
|