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,1700 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"description": "Machine-readable registry for public ZOB harness runtime tools and commands. Keep in sync with registerTool/registerCommand and constants.ts mode allowlists.",
|
|
4
|
+
"defaultSkillRefs": [
|
|
5
|
+
".pi/skills/zob-harness/SKILL.md",
|
|
6
|
+
".pi/skills/zob-tool-router/SKILL.md",
|
|
7
|
+
".pi/skills/zob-compaction-policy/SKILL.md"
|
|
8
|
+
],
|
|
9
|
+
"defaultDocRefs": [
|
|
10
|
+
"docs/HARNESS_CAPABILITY_MATRIX.md",
|
|
11
|
+
".pi/extensions/zob-harness/AGENTS.md",
|
|
12
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
13
|
+
],
|
|
14
|
+
"tools": [
|
|
15
|
+
{
|
|
16
|
+
"name": "get_goal",
|
|
17
|
+
"family": "goal",
|
|
18
|
+
"modes": [
|
|
19
|
+
"explore",
|
|
20
|
+
"plan",
|
|
21
|
+
"implement",
|
|
22
|
+
"oracle",
|
|
23
|
+
"factory",
|
|
24
|
+
"orchestrator"
|
|
25
|
+
],
|
|
26
|
+
"skillRefs": [
|
|
27
|
+
".pi/skills/zob-harness/SKILL.md",
|
|
28
|
+
".pi/skills/zob-goal-todo-tree/SKILL.md"
|
|
29
|
+
],
|
|
30
|
+
"docRefs": [
|
|
31
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
32
|
+
],
|
|
33
|
+
"noShipNotes": "Read current goal only."
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"name": "get_goal_todos",
|
|
37
|
+
"family": "goal",
|
|
38
|
+
"modes": [
|
|
39
|
+
"explore",
|
|
40
|
+
"plan",
|
|
41
|
+
"implement",
|
|
42
|
+
"oracle",
|
|
43
|
+
"factory",
|
|
44
|
+
"orchestrator"
|
|
45
|
+
],
|
|
46
|
+
"skillRefs": [
|
|
47
|
+
".pi/skills/zob-goal-todo-tree/SKILL.md"
|
|
48
|
+
],
|
|
49
|
+
"docRefs": [
|
|
50
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
51
|
+
],
|
|
52
|
+
"noShipNotes": "Read TODO tree only."
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"name": "add_goal_todo",
|
|
56
|
+
"family": "goal",
|
|
57
|
+
"modes": [
|
|
58
|
+
"explore",
|
|
59
|
+
"plan",
|
|
60
|
+
"implement",
|
|
61
|
+
"oracle",
|
|
62
|
+
"factory",
|
|
63
|
+
"orchestrator"
|
|
64
|
+
],
|
|
65
|
+
"skillRefs": [
|
|
66
|
+
".pi/skills/zob-goal-todo-tree/SKILL.md"
|
|
67
|
+
],
|
|
68
|
+
"docRefs": [
|
|
69
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
70
|
+
],
|
|
71
|
+
"noShipNotes": "Goal-scoped TODO state only; not a source edit."
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"name": "add_goal_todos",
|
|
75
|
+
"family": "goal",
|
|
76
|
+
"modes": [
|
|
77
|
+
"explore",
|
|
78
|
+
"plan",
|
|
79
|
+
"implement",
|
|
80
|
+
"oracle",
|
|
81
|
+
"factory",
|
|
82
|
+
"orchestrator"
|
|
83
|
+
],
|
|
84
|
+
"skillRefs": [
|
|
85
|
+
".pi/skills/zob-goal-todo-tree/SKILL.md"
|
|
86
|
+
],
|
|
87
|
+
"docRefs": [
|
|
88
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
89
|
+
],
|
|
90
|
+
"noShipNotes": "Bulk goal-scoped TODO state only; not a source edit."
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"name": "update_goal_todo",
|
|
94
|
+
"family": "goal",
|
|
95
|
+
"modes": [
|
|
96
|
+
"explore",
|
|
97
|
+
"plan",
|
|
98
|
+
"implement",
|
|
99
|
+
"oracle",
|
|
100
|
+
"factory",
|
|
101
|
+
"orchestrator"
|
|
102
|
+
],
|
|
103
|
+
"skillRefs": [
|
|
104
|
+
".pi/skills/zob-goal-todo-tree/SKILL.md"
|
|
105
|
+
],
|
|
106
|
+
"docRefs": [
|
|
107
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
108
|
+
],
|
|
109
|
+
"noShipNotes": "Goal TODO metadata update only; cannot mark done/skipped."
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"name": "resolve_goal_todo",
|
|
113
|
+
"family": "goal",
|
|
114
|
+
"modes": [
|
|
115
|
+
"explore",
|
|
116
|
+
"plan",
|
|
117
|
+
"implement",
|
|
118
|
+
"oracle",
|
|
119
|
+
"factory",
|
|
120
|
+
"orchestrator"
|
|
121
|
+
],
|
|
122
|
+
"skillRefs": [
|
|
123
|
+
".pi/skills/zob-goal-todo-tree/SKILL.md"
|
|
124
|
+
],
|
|
125
|
+
"docRefs": [
|
|
126
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
127
|
+
],
|
|
128
|
+
"noShipNotes": "Primary parent-owned TODO transition path; child no_ship is review evidence, not delivery success/failure by itself."
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"name": "complete_goal_todo",
|
|
132
|
+
"family": "goal",
|
|
133
|
+
"modes": [
|
|
134
|
+
"explore",
|
|
135
|
+
"plan",
|
|
136
|
+
"implement",
|
|
137
|
+
"oracle",
|
|
138
|
+
"factory",
|
|
139
|
+
"orchestrator"
|
|
140
|
+
],
|
|
141
|
+
"skillRefs": [
|
|
142
|
+
".pi/skills/zob-goal-todo-tree/SKILL.md"
|
|
143
|
+
],
|
|
144
|
+
"docRefs": [
|
|
145
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
146
|
+
],
|
|
147
|
+
"noShipNotes": "Compatibility wrapper routed through resolve_goal_todo; Goal TODO status update only."
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"name": "block_goal_todo",
|
|
151
|
+
"family": "goal",
|
|
152
|
+
"modes": [
|
|
153
|
+
"explore",
|
|
154
|
+
"plan",
|
|
155
|
+
"implement",
|
|
156
|
+
"oracle",
|
|
157
|
+
"factory",
|
|
158
|
+
"orchestrator"
|
|
159
|
+
],
|
|
160
|
+
"skillRefs": [
|
|
161
|
+
".pi/skills/zob-goal-todo-tree/SKILL.md"
|
|
162
|
+
],
|
|
163
|
+
"docRefs": [
|
|
164
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
165
|
+
],
|
|
166
|
+
"noShipNotes": "Goal TODO status update only."
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"name": "split_goal_todo",
|
|
170
|
+
"family": "goal",
|
|
171
|
+
"modes": [
|
|
172
|
+
"explore",
|
|
173
|
+
"plan",
|
|
174
|
+
"implement",
|
|
175
|
+
"oracle",
|
|
176
|
+
"factory",
|
|
177
|
+
"orchestrator"
|
|
178
|
+
],
|
|
179
|
+
"skillRefs": [
|
|
180
|
+
".pi/skills/zob-goal-todo-tree/SKILL.md"
|
|
181
|
+
],
|
|
182
|
+
"docRefs": [
|
|
183
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
184
|
+
],
|
|
185
|
+
"noShipNotes": "Goal TODO graph update only."
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"name": "validate_goal_todo_claim",
|
|
189
|
+
"family": "goal",
|
|
190
|
+
"modes": [
|
|
191
|
+
"explore",
|
|
192
|
+
"plan",
|
|
193
|
+
"implement",
|
|
194
|
+
"oracle",
|
|
195
|
+
"factory"
|
|
196
|
+
],
|
|
197
|
+
"skillRefs": [
|
|
198
|
+
".pi/skills/zob-goal-todo-tree/SKILL.md",
|
|
199
|
+
".pi/skills/zob-oracle/SKILL.md"
|
|
200
|
+
],
|
|
201
|
+
"docRefs": [
|
|
202
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
203
|
+
],
|
|
204
|
+
"noShipNotes": "Records oracle validation metadata for a returned delegated TODO claim; auto-accept requires exact claim_hash, PASS, recommended_action=accept_claim, no_ship=false, acceptable confidence, and no blocking issues."
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"name": "accept_goal_todo_claim",
|
|
208
|
+
"family": "goal",
|
|
209
|
+
"modes": [
|
|
210
|
+
"explore",
|
|
211
|
+
"plan",
|
|
212
|
+
"implement",
|
|
213
|
+
"oracle",
|
|
214
|
+
"factory",
|
|
215
|
+
"orchestrator"
|
|
216
|
+
],
|
|
217
|
+
"skillRefs": [
|
|
218
|
+
".pi/skills/zob-goal-todo-tree/SKILL.md"
|
|
219
|
+
],
|
|
220
|
+
"docRefs": [
|
|
221
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
222
|
+
],
|
|
223
|
+
"noShipNotes": "Delegated TODO claim metadata only."
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"name": "reject_goal_todo_claim",
|
|
227
|
+
"family": "goal",
|
|
228
|
+
"modes": [
|
|
229
|
+
"explore",
|
|
230
|
+
"plan",
|
|
231
|
+
"implement",
|
|
232
|
+
"oracle",
|
|
233
|
+
"factory",
|
|
234
|
+
"orchestrator"
|
|
235
|
+
],
|
|
236
|
+
"skillRefs": [
|
|
237
|
+
".pi/skills/zob-goal-todo-tree/SKILL.md"
|
|
238
|
+
],
|
|
239
|
+
"docRefs": [
|
|
240
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
241
|
+
],
|
|
242
|
+
"noShipNotes": "Delegated TODO claim metadata only."
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"name": "import_factory_todos",
|
|
246
|
+
"family": "goal",
|
|
247
|
+
"modes": [
|
|
248
|
+
"explore",
|
|
249
|
+
"plan",
|
|
250
|
+
"implement",
|
|
251
|
+
"oracle",
|
|
252
|
+
"factory",
|
|
253
|
+
"orchestrator"
|
|
254
|
+
],
|
|
255
|
+
"skillRefs": [
|
|
256
|
+
".pi/skills/zob-goal-todo-tree/SKILL.md",
|
|
257
|
+
".pi/skills/zob-factory/SKILL.md"
|
|
258
|
+
],
|
|
259
|
+
"docRefs": [
|
|
260
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
261
|
+
],
|
|
262
|
+
"noShipNotes": "Imports factory report TODOs into goal state; no source edits."
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
"name": "import_orchestration_todos",
|
|
266
|
+
"family": "goal",
|
|
267
|
+
"modes": [
|
|
268
|
+
"explore",
|
|
269
|
+
"plan",
|
|
270
|
+
"implement",
|
|
271
|
+
"oracle",
|
|
272
|
+
"factory",
|
|
273
|
+
"orchestrator"
|
|
274
|
+
],
|
|
275
|
+
"skillRefs": [
|
|
276
|
+
".pi/skills/zob-goal-todo-tree/SKILL.md",
|
|
277
|
+
".pi/skills/zob-harness/SKILL.md"
|
|
278
|
+
],
|
|
279
|
+
"docRefs": [
|
|
280
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
281
|
+
],
|
|
282
|
+
"noShipNotes": "Imports orchestration report TODOs into goal state; no source edits."
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
"name": "import_chain_todos",
|
|
286
|
+
"family": "goal",
|
|
287
|
+
"modes": [
|
|
288
|
+
"explore",
|
|
289
|
+
"plan",
|
|
290
|
+
"implement",
|
|
291
|
+
"oracle",
|
|
292
|
+
"factory",
|
|
293
|
+
"orchestrator"
|
|
294
|
+
],
|
|
295
|
+
"skillRefs": [
|
|
296
|
+
".pi/skills/zob-goal-todo-tree/SKILL.md",
|
|
297
|
+
".pi/skills/zob-harness/SKILL.md"
|
|
298
|
+
],
|
|
299
|
+
"docRefs": [
|
|
300
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
301
|
+
],
|
|
302
|
+
"noShipNotes": "Imports chain report TODOs into goal state; no source edits."
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
"name": "create_goal",
|
|
306
|
+
"family": "goal",
|
|
307
|
+
"modes": [
|
|
308
|
+
"explore",
|
|
309
|
+
"plan",
|
|
310
|
+
"implement",
|
|
311
|
+
"oracle",
|
|
312
|
+
"factory",
|
|
313
|
+
"orchestrator"
|
|
314
|
+
],
|
|
315
|
+
"skillRefs": [
|
|
316
|
+
".pi/skills/zob-harness/SKILL.md",
|
|
317
|
+
".pi/skills/zob-goal-todo-tree/SKILL.md"
|
|
318
|
+
],
|
|
319
|
+
"docRefs": [
|
|
320
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
321
|
+
],
|
|
322
|
+
"noShipNotes": "Sets active goal metadata only."
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"name": "resume_goal",
|
|
326
|
+
"family": "goal",
|
|
327
|
+
"modes": [
|
|
328
|
+
"explore",
|
|
329
|
+
"plan",
|
|
330
|
+
"implement",
|
|
331
|
+
"oracle",
|
|
332
|
+
"factory",
|
|
333
|
+
"orchestrator"
|
|
334
|
+
],
|
|
335
|
+
"skillRefs": [
|
|
336
|
+
".pi/skills/zob-harness/SKILL.md",
|
|
337
|
+
".pi/skills/zob-goal-todo-tree/SKILL.md"
|
|
338
|
+
],
|
|
339
|
+
"docRefs": [
|
|
340
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
341
|
+
],
|
|
342
|
+
"noShipNotes": "Resumes paused/blocked/oracle_failed goal metadata only; does not bypass TODO, proposal, oracle, or update_goal completion gates."
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
"name": "propose_goal_completion",
|
|
346
|
+
"family": "goal",
|
|
347
|
+
"modes": [
|
|
348
|
+
"explore",
|
|
349
|
+
"plan",
|
|
350
|
+
"implement",
|
|
351
|
+
"oracle",
|
|
352
|
+
"factory",
|
|
353
|
+
"orchestrator"
|
|
354
|
+
],
|
|
355
|
+
"skillRefs": [
|
|
356
|
+
".pi/skills/zob-oracle/SKILL.md",
|
|
357
|
+
".pi/skills/zob-goal-todo-tree/SKILL.md"
|
|
358
|
+
],
|
|
359
|
+
"docRefs": [
|
|
360
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
361
|
+
],
|
|
362
|
+
"noShipNotes": "Proposal only; oracle record still required for completion evidence."
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
"name": "record_goal_oracle",
|
|
366
|
+
"family": "goal",
|
|
367
|
+
"modes": [
|
|
368
|
+
"explore",
|
|
369
|
+
"plan",
|
|
370
|
+
"implement",
|
|
371
|
+
"oracle",
|
|
372
|
+
"factory",
|
|
373
|
+
"orchestrator"
|
|
374
|
+
],
|
|
375
|
+
"skillRefs": [
|
|
376
|
+
".pi/skills/zob-oracle/SKILL.md",
|
|
377
|
+
".pi/skills/zob-goal-todo-tree/SKILL.md"
|
|
378
|
+
],
|
|
379
|
+
"docRefs": [
|
|
380
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
381
|
+
],
|
|
382
|
+
"noShipNotes": "Records oracle verdict metadata only."
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
"name": "update_goal",
|
|
386
|
+
"family": "goal",
|
|
387
|
+
"modes": [
|
|
388
|
+
"explore",
|
|
389
|
+
"plan",
|
|
390
|
+
"implement",
|
|
391
|
+
"oracle",
|
|
392
|
+
"factory",
|
|
393
|
+
"orchestrator"
|
|
394
|
+
],
|
|
395
|
+
"skillRefs": [
|
|
396
|
+
".pi/skills/zob-harness/SKILL.md"
|
|
397
|
+
],
|
|
398
|
+
"docRefs": [
|
|
399
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
400
|
+
],
|
|
401
|
+
"noShipNotes": "Updates goal metadata only."
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
"name": "zob_delegation_catalog",
|
|
405
|
+
"family": "delegation",
|
|
406
|
+
"modes": [
|
|
407
|
+
"explore",
|
|
408
|
+
"plan",
|
|
409
|
+
"implement",
|
|
410
|
+
"oracle",
|
|
411
|
+
"factory",
|
|
412
|
+
"orchestrator"
|
|
413
|
+
],
|
|
414
|
+
"skillRefs": [
|
|
415
|
+
".pi/skills/zob-delegation-routing/SKILL.md",
|
|
416
|
+
".pi/skills/zob-harness/SKILL.md"
|
|
417
|
+
],
|
|
418
|
+
"docRefs": [
|
|
419
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
420
|
+
],
|
|
421
|
+
"noShipNotes": "Read-only delegation catalog; no child dispatch, network, or source writes."
|
|
422
|
+
},
|
|
423
|
+
{
|
|
424
|
+
"name": "get_delegation_run",
|
|
425
|
+
"family": "delegation",
|
|
426
|
+
"modes": [
|
|
427
|
+
"explore",
|
|
428
|
+
"plan",
|
|
429
|
+
"implement",
|
|
430
|
+
"oracle",
|
|
431
|
+
"factory",
|
|
432
|
+
"orchestrator"
|
|
433
|
+
],
|
|
434
|
+
"skillRefs": [
|
|
435
|
+
".pi/skills/zob-delegation-routing/SKILL.md",
|
|
436
|
+
".pi/skills/zob-harness/SKILL.md"
|
|
437
|
+
],
|
|
438
|
+
"docRefs": [
|
|
439
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
440
|
+
],
|
|
441
|
+
"noShipNotes": "Read active-session delegation run metadata; no daemon or new dispatch."
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
"name": "await_delegation_run",
|
|
445
|
+
"family": "delegation",
|
|
446
|
+
"modes": [
|
|
447
|
+
"explore",
|
|
448
|
+
"plan",
|
|
449
|
+
"implement",
|
|
450
|
+
"oracle",
|
|
451
|
+
"factory",
|
|
452
|
+
"orchestrator"
|
|
453
|
+
],
|
|
454
|
+
"skillRefs": [
|
|
455
|
+
".pi/skills/zob-delegation-routing/SKILL.md",
|
|
456
|
+
".pi/skills/zob-harness/SKILL.md"
|
|
457
|
+
],
|
|
458
|
+
"docRefs": [
|
|
459
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
460
|
+
],
|
|
461
|
+
"noShipNotes": "Bounded active-session wait only; no daemon or continuous loop."
|
|
462
|
+
},
|
|
463
|
+
{
|
|
464
|
+
"name": "delegate_agent",
|
|
465
|
+
"family": "delegation",
|
|
466
|
+
"modes": [
|
|
467
|
+
"explore",
|
|
468
|
+
"plan",
|
|
469
|
+
"implement",
|
|
470
|
+
"oracle",
|
|
471
|
+
"factory",
|
|
472
|
+
"orchestrator"
|
|
473
|
+
],
|
|
474
|
+
"skillRefs": [
|
|
475
|
+
".pi/skills/zob-delegation-routing/SKILL.md",
|
|
476
|
+
".pi/skills/zob-harness/SKILL.md"
|
|
477
|
+
],
|
|
478
|
+
"docRefs": [
|
|
479
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
480
|
+
],
|
|
481
|
+
"noShipNotes": "Child-agent dispatch; obey active mode, rule profile, damage gates, and repo-relative-only allowed_paths. Use reports/... snapshot/context_ref refs for external context."
|
|
482
|
+
},
|
|
483
|
+
{
|
|
484
|
+
"name": "delegate_task",
|
|
485
|
+
"family": "delegation",
|
|
486
|
+
"modes": [
|
|
487
|
+
"explore",
|
|
488
|
+
"plan",
|
|
489
|
+
"implement",
|
|
490
|
+
"oracle",
|
|
491
|
+
"factory",
|
|
492
|
+
"orchestrator"
|
|
493
|
+
],
|
|
494
|
+
"skillRefs": [
|
|
495
|
+
".pi/skills/zob-delegation-routing/SKILL.md",
|
|
496
|
+
".pi/skills/zob-harness/SKILL.md"
|
|
497
|
+
],
|
|
498
|
+
"docRefs": [
|
|
499
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
500
|
+
],
|
|
501
|
+
"noShipNotes": "Child-agent dispatch; obey active mode, rule profile, damage gates, and repo-relative-only allowed_paths. Use reports/... snapshot/context_ref refs for external context."
|
|
502
|
+
},
|
|
503
|
+
{
|
|
504
|
+
"name": "orchestrate_run",
|
|
505
|
+
"family": "orchestration",
|
|
506
|
+
"modes": [
|
|
507
|
+
"plan",
|
|
508
|
+
"factory",
|
|
509
|
+
"orchestrator"
|
|
510
|
+
],
|
|
511
|
+
"skillRefs": [
|
|
512
|
+
".pi/skills/zob-harness/SKILL.md"
|
|
513
|
+
],
|
|
514
|
+
"docRefs": [
|
|
515
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
516
|
+
],
|
|
517
|
+
"noShipNotes": "Orchestration output must remain evidence-gated; no automatic shipment."
|
|
518
|
+
},
|
|
519
|
+
{
|
|
520
|
+
"name": "chain_run",
|
|
521
|
+
"family": "orchestration",
|
|
522
|
+
"modes": [
|
|
523
|
+
"plan",
|
|
524
|
+
"factory",
|
|
525
|
+
"orchestrator"
|
|
526
|
+
],
|
|
527
|
+
"skillRefs": [
|
|
528
|
+
".pi/skills/zob-harness/SKILL.md"
|
|
529
|
+
],
|
|
530
|
+
"docRefs": [
|
|
531
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
532
|
+
],
|
|
533
|
+
"noShipNotes": "Chain execution must preserve read-only/write gates per mode."
|
|
534
|
+
},
|
|
535
|
+
{
|
|
536
|
+
"name": "zob_coms_send",
|
|
537
|
+
"family": "coms",
|
|
538
|
+
"modes": [
|
|
539
|
+
"plan",
|
|
540
|
+
"implement",
|
|
541
|
+
"factory",
|
|
542
|
+
"orchestrator"
|
|
543
|
+
],
|
|
544
|
+
"skillRefs": [
|
|
545
|
+
".pi/skills/zob-coms-v2-live/SKILL.md",
|
|
546
|
+
".pi/skills/zob-coms-safety/SKILL.md"
|
|
547
|
+
],
|
|
548
|
+
"docRefs": [
|
|
549
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
550
|
+
],
|
|
551
|
+
"noShipNotes": "Live delivery only; hash-only ledgers, no raw bodies."
|
|
552
|
+
},
|
|
553
|
+
{
|
|
554
|
+
"name": "zob_coms_ack",
|
|
555
|
+
"family": "coms",
|
|
556
|
+
"modes": [
|
|
557
|
+
"plan",
|
|
558
|
+
"implement",
|
|
559
|
+
"factory",
|
|
560
|
+
"orchestrator"
|
|
561
|
+
],
|
|
562
|
+
"skillRefs": [
|
|
563
|
+
".pi/skills/zob-coms-v2-live/SKILL.md",
|
|
564
|
+
".pi/skills/zob-coms-safety/SKILL.md"
|
|
565
|
+
],
|
|
566
|
+
"docRefs": [
|
|
567
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
568
|
+
],
|
|
569
|
+
"noShipNotes": "Acknowledgement must not count non-live append-only refs as delivery success."
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
"name": "zob_coms_status",
|
|
573
|
+
"family": "coms",
|
|
574
|
+
"modes": [
|
|
575
|
+
"plan",
|
|
576
|
+
"implement",
|
|
577
|
+
"factory",
|
|
578
|
+
"orchestrator"
|
|
579
|
+
],
|
|
580
|
+
"skillRefs": [
|
|
581
|
+
".pi/skills/zob-coms-v2-live/SKILL.md",
|
|
582
|
+
".pi/skills/zob-coms-safety/SKILL.md"
|
|
583
|
+
],
|
|
584
|
+
"docRefs": [
|
|
585
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
586
|
+
],
|
|
587
|
+
"noShipNotes": "Status only; preserve hash-only posture."
|
|
588
|
+
},
|
|
589
|
+
{
|
|
590
|
+
"name": "zob_coms_reply",
|
|
591
|
+
"family": "coms",
|
|
592
|
+
"modes": [
|
|
593
|
+
"plan",
|
|
594
|
+
"implement",
|
|
595
|
+
"factory",
|
|
596
|
+
"orchestrator"
|
|
597
|
+
],
|
|
598
|
+
"skillRefs": [
|
|
599
|
+
".pi/skills/zob-coms-v2-live/SKILL.md",
|
|
600
|
+
".pi/skills/zob-coms-safety/SKILL.md"
|
|
601
|
+
],
|
|
602
|
+
"docRefs": [
|
|
603
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
604
|
+
],
|
|
605
|
+
"noShipNotes": "Reply must use live transport safety gates; no raw bodies stored."
|
|
606
|
+
},
|
|
607
|
+
{
|
|
608
|
+
"name": "zob_coms_list",
|
|
609
|
+
"family": "coms",
|
|
610
|
+
"modes": [
|
|
611
|
+
"explore",
|
|
612
|
+
"plan",
|
|
613
|
+
"implement",
|
|
614
|
+
"oracle",
|
|
615
|
+
"factory",
|
|
616
|
+
"orchestrator"
|
|
617
|
+
],
|
|
618
|
+
"skillRefs": [
|
|
619
|
+
".pi/skills/zob-coms-safety/SKILL.md"
|
|
620
|
+
],
|
|
621
|
+
"docRefs": [
|
|
622
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
623
|
+
],
|
|
624
|
+
"noShipNotes": "Read/list only; no delivery success claim."
|
|
625
|
+
},
|
|
626
|
+
{
|
|
627
|
+
"name": "zob_coms_get",
|
|
628
|
+
"family": "coms",
|
|
629
|
+
"modes": [
|
|
630
|
+
"explore",
|
|
631
|
+
"plan",
|
|
632
|
+
"implement",
|
|
633
|
+
"oracle",
|
|
634
|
+
"factory",
|
|
635
|
+
"orchestrator"
|
|
636
|
+
],
|
|
637
|
+
"skillRefs": [
|
|
638
|
+
".pi/skills/zob-coms-safety/SKILL.md"
|
|
639
|
+
],
|
|
640
|
+
"docRefs": [
|
|
641
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
642
|
+
],
|
|
643
|
+
"noShipNotes": "Read/get only; no raw body persistence beyond tool output."
|
|
644
|
+
},
|
|
645
|
+
{
|
|
646
|
+
"name": "zob_coms_await",
|
|
647
|
+
"family": "coms",
|
|
648
|
+
"modes": [
|
|
649
|
+
"explore",
|
|
650
|
+
"plan",
|
|
651
|
+
"implement",
|
|
652
|
+
"oracle",
|
|
653
|
+
"factory",
|
|
654
|
+
"orchestrator"
|
|
655
|
+
],
|
|
656
|
+
"skillRefs": [
|
|
657
|
+
".pi/skills/zob-coms-v2-live/SKILL.md",
|
|
658
|
+
".pi/skills/zob-coms-safety/SKILL.md"
|
|
659
|
+
],
|
|
660
|
+
"docRefs": [
|
|
661
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
662
|
+
],
|
|
663
|
+
"noShipNotes": "Await live peer replies only; stale peers are not success."
|
|
664
|
+
},
|
|
665
|
+
{
|
|
666
|
+
"name": "zpeer_ask",
|
|
667
|
+
"family": "coms-v2-live",
|
|
668
|
+
"modes": [
|
|
669
|
+
"explore",
|
|
670
|
+
"plan",
|
|
671
|
+
"implement",
|
|
672
|
+
"oracle",
|
|
673
|
+
"factory",
|
|
674
|
+
"orchestrator"
|
|
675
|
+
],
|
|
676
|
+
"skillRefs": [
|
|
677
|
+
".pi/skills/zob-coms-v2-live/SKILL.md",
|
|
678
|
+
".pi/skills/zob-coms-safety/SKILL.md"
|
|
679
|
+
],
|
|
680
|
+
"docRefs": [
|
|
681
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
682
|
+
],
|
|
683
|
+
"noShipNotes": "Agent-initiated visible ZPeer ask; local_socket only, room-scoped with optional explicit roomId, mode defaults async, rate/loop guarded, raw bodies transient and durable records hash-only."
|
|
684
|
+
},
|
|
685
|
+
{
|
|
686
|
+
"name": "zob_goal_room_send",
|
|
687
|
+
"family": "goal-room",
|
|
688
|
+
"modes": [
|
|
689
|
+
"plan",
|
|
690
|
+
"implement",
|
|
691
|
+
"factory",
|
|
692
|
+
"orchestrator"
|
|
693
|
+
],
|
|
694
|
+
"skillRefs": [
|
|
695
|
+
".pi/skills/zob-coms-safety/SKILL.md",
|
|
696
|
+
".pi/skills/zob-goal-todo-tree/SKILL.md"
|
|
697
|
+
],
|
|
698
|
+
"docRefs": [
|
|
699
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
700
|
+
],
|
|
701
|
+
"noShipNotes": "Visible typed goal-room message only; hash-only metadata; no hidden worker-to-worker free chat or action execution."
|
|
702
|
+
},
|
|
703
|
+
{
|
|
704
|
+
"name": "zob_goal_room_list",
|
|
705
|
+
"family": "goal-room",
|
|
706
|
+
"modes": [
|
|
707
|
+
"explore",
|
|
708
|
+
"plan",
|
|
709
|
+
"implement",
|
|
710
|
+
"oracle",
|
|
711
|
+
"factory",
|
|
712
|
+
"orchestrator"
|
|
713
|
+
],
|
|
714
|
+
"skillRefs": [
|
|
715
|
+
".pi/skills/zob-coms-safety/SKILL.md",
|
|
716
|
+
".pi/skills/zob-goal-todo-tree/SKILL.md"
|
|
717
|
+
],
|
|
718
|
+
"docRefs": [
|
|
719
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
720
|
+
],
|
|
721
|
+
"noShipNotes": "Read/list visible goal-room metadata only; no raw bodies."
|
|
722
|
+
},
|
|
723
|
+
{
|
|
724
|
+
"name": "zob_governed_request_extract",
|
|
725
|
+
"family": "goal-room",
|
|
726
|
+
"modes": [
|
|
727
|
+
"plan",
|
|
728
|
+
"implement",
|
|
729
|
+
"factory",
|
|
730
|
+
"orchestrator"
|
|
731
|
+
],
|
|
732
|
+
"skillRefs": [
|
|
733
|
+
".pi/skills/zob-coms-safety/SKILL.md",
|
|
734
|
+
".pi/skills/zob-delegation-routing/SKILL.md"
|
|
735
|
+
],
|
|
736
|
+
"docRefs": [
|
|
737
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
738
|
+
],
|
|
739
|
+
"noShipNotes": "Extracts typed governed requests from transient text into parent-visible hash-only Goal Room messages; never dispatches, mutates TODOs, or executes requested actions."
|
|
740
|
+
},
|
|
741
|
+
{
|
|
742
|
+
"name": "zob_workspace_claim",
|
|
743
|
+
"family": "workspace-claims",
|
|
744
|
+
"modes": [
|
|
745
|
+
"plan",
|
|
746
|
+
"implement",
|
|
747
|
+
"factory",
|
|
748
|
+
"orchestrator"
|
|
749
|
+
],
|
|
750
|
+
"skillRefs": [
|
|
751
|
+
".pi/skills/zob-coms-safety/SKILL.md",
|
|
752
|
+
".pi/skills/zob-sandbox/SKILL.md"
|
|
753
|
+
],
|
|
754
|
+
"docRefs": [
|
|
755
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
756
|
+
],
|
|
757
|
+
"noShipNotes": "Metadata-only path lease for parallel write intent; conflict detection only, no source writes, no auto-apply."
|
|
758
|
+
},
|
|
759
|
+
{
|
|
760
|
+
"name": "zob_workspace_release",
|
|
761
|
+
"family": "workspace-claims",
|
|
762
|
+
"modes": [
|
|
763
|
+
"plan",
|
|
764
|
+
"implement",
|
|
765
|
+
"factory",
|
|
766
|
+
"orchestrator"
|
|
767
|
+
],
|
|
768
|
+
"skillRefs": [
|
|
769
|
+
".pi/skills/zob-coms-safety/SKILL.md",
|
|
770
|
+
".pi/skills/zob-sandbox/SKILL.md"
|
|
771
|
+
],
|
|
772
|
+
"docRefs": [
|
|
773
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
774
|
+
],
|
|
775
|
+
"noShipNotes": "Releases metadata-only workspace lease; no source writes or apply."
|
|
776
|
+
},
|
|
777
|
+
{
|
|
778
|
+
"name": "zob_workspace_claims_list",
|
|
779
|
+
"family": "workspace-claims",
|
|
780
|
+
"modes": [
|
|
781
|
+
"explore",
|
|
782
|
+
"plan",
|
|
783
|
+
"implement",
|
|
784
|
+
"oracle",
|
|
785
|
+
"factory",
|
|
786
|
+
"orchestrator"
|
|
787
|
+
],
|
|
788
|
+
"skillRefs": [
|
|
789
|
+
".pi/skills/zob-coms-safety/SKILL.md",
|
|
790
|
+
".pi/skills/zob-sandbox/SKILL.md"
|
|
791
|
+
],
|
|
792
|
+
"docRefs": [
|
|
793
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
794
|
+
],
|
|
795
|
+
"noShipNotes": "Lists metadata-only workspace leases; no bodies and no source writes."
|
|
796
|
+
},
|
|
797
|
+
{
|
|
798
|
+
"name": "zob_worker_pool_plan",
|
|
799
|
+
"family": "worker-pool",
|
|
800
|
+
"modes": [
|
|
801
|
+
"plan",
|
|
802
|
+
"implement",
|
|
803
|
+
"factory",
|
|
804
|
+
"orchestrator"
|
|
805
|
+
],
|
|
806
|
+
"skillRefs": [
|
|
807
|
+
".pi/skills/zob-harness/SKILL.md",
|
|
808
|
+
".pi/skills/zob-delegation-routing/SKILL.md",
|
|
809
|
+
".pi/skills/zob-goal-todo-tree/SKILL.md",
|
|
810
|
+
".pi/skills/zob-sandbox/SKILL.md"
|
|
811
|
+
],
|
|
812
|
+
"docRefs": [
|
|
813
|
+
"docs/ZOB_PARALLEL_OWNER_POOLS.md",
|
|
814
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
815
|
+
],
|
|
816
|
+
"noShipNotes": "Creates metadata-only/body-free parent-owned pool assignment records for owned/write/read-across path coordination; never dispatches children, mutates TODOs, applies writes, or stores raw task/prompt/output/diff bodies. Actual child dispatch remains parent-owned through delegate_task/delegate_agent with explicit repo-relative grants and TODO linkage."
|
|
817
|
+
},
|
|
818
|
+
{
|
|
819
|
+
"name": "zob_worker_pool_status",
|
|
820
|
+
"family": "worker-pool",
|
|
821
|
+
"modes": [
|
|
822
|
+
"explore",
|
|
823
|
+
"plan",
|
|
824
|
+
"implement",
|
|
825
|
+
"oracle",
|
|
826
|
+
"factory",
|
|
827
|
+
"orchestrator"
|
|
828
|
+
],
|
|
829
|
+
"skillRefs": [
|
|
830
|
+
".pi/skills/zob-harness/SKILL.md",
|
|
831
|
+
".pi/skills/zob-delegation-routing/SKILL.md"
|
|
832
|
+
],
|
|
833
|
+
"docRefs": [
|
|
834
|
+
"docs/ZOB_PARALLEL_OWNER_POOLS.md",
|
|
835
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
836
|
+
],
|
|
837
|
+
"noShipNotes": "Lists worker-pool metadata and overlap blockers only; body-free read/status surface, no dispatch, no TODO mutation, no auto-apply, and no delivery/completion success claim."
|
|
838
|
+
},
|
|
839
|
+
{
|
|
840
|
+
"name": "zob_worker_pool_owner_request",
|
|
841
|
+
"family": "worker-pool",
|
|
842
|
+
"modes": [
|
|
843
|
+
"plan",
|
|
844
|
+
"implement",
|
|
845
|
+
"factory",
|
|
846
|
+
"orchestrator"
|
|
847
|
+
],
|
|
848
|
+
"skillRefs": [
|
|
849
|
+
".pi/skills/zob-harness/SKILL.md",
|
|
850
|
+
".pi/skills/zob-delegation-routing/SKILL.md",
|
|
851
|
+
".pi/skills/zob-coms-safety/SKILL.md"
|
|
852
|
+
],
|
|
853
|
+
"docRefs": [
|
|
854
|
+
"docs/ZOB_PARALLEL_OWNER_POOLS.md",
|
|
855
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
856
|
+
],
|
|
857
|
+
"noShipNotes": "Records a body-free parent-visible OWNER_CHANGE_REQUEST for non-owner path needs; hash/artifact refs only, no hidden worker chat, no worker-to-worker direct decision, no dispatch, no TODO mutation, and no write/apply semantics."
|
|
858
|
+
},
|
|
859
|
+
{
|
|
860
|
+
"name": "zob_worker_pool_owner_decision",
|
|
861
|
+
"family": "worker-pool",
|
|
862
|
+
"modes": [
|
|
863
|
+
"plan",
|
|
864
|
+
"implement",
|
|
865
|
+
"factory",
|
|
866
|
+
"orchestrator"
|
|
867
|
+
],
|
|
868
|
+
"skillRefs": [
|
|
869
|
+
".pi/skills/zob-harness/SKILL.md",
|
|
870
|
+
".pi/skills/zob-delegation-routing/SKILL.md",
|
|
871
|
+
".pi/skills/zob-coms-safety/SKILL.md",
|
|
872
|
+
".pi/skills/zob-oracle/SKILL.md"
|
|
873
|
+
],
|
|
874
|
+
"docRefs": [
|
|
875
|
+
"docs/ZOB_PARALLEL_OWNER_POOLS.md",
|
|
876
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
877
|
+
],
|
|
878
|
+
"noShipNotes": "Records a body-free parent/owner decision for an OWNER_CHANGE_REQUEST; approval means eligible for parent/owner handling only, not merge/apply, child dispatch, direct TODO mutation, or autonomous production write."
|
|
879
|
+
},
|
|
880
|
+
{
|
|
881
|
+
"name": "zob_merge_candidate_submit",
|
|
882
|
+
"family": "merge-queue",
|
|
883
|
+
"modes": [
|
|
884
|
+
"plan",
|
|
885
|
+
"implement",
|
|
886
|
+
"factory",
|
|
887
|
+
"orchestrator"
|
|
888
|
+
],
|
|
889
|
+
"skillRefs": [
|
|
890
|
+
".pi/skills/zob-sandbox/SKILL.md",
|
|
891
|
+
".pi/skills/zob-oracle/SKILL.md"
|
|
892
|
+
],
|
|
893
|
+
"docRefs": [
|
|
894
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
895
|
+
],
|
|
896
|
+
"noShipNotes": "Submits sandbox diff metadata to parent merge queue only; no raw diff, source writes, auto-apply, or gate bypass."
|
|
897
|
+
},
|
|
898
|
+
{
|
|
899
|
+
"name": "zob_merge_queue_decide",
|
|
900
|
+
"family": "merge-queue",
|
|
901
|
+
"modes": [
|
|
902
|
+
"plan",
|
|
903
|
+
"implement",
|
|
904
|
+
"factory",
|
|
905
|
+
"orchestrator"
|
|
906
|
+
],
|
|
907
|
+
"skillRefs": [
|
|
908
|
+
".pi/skills/zob-sandbox/SKILL.md",
|
|
909
|
+
".pi/skills/zob-oracle/SKILL.md"
|
|
910
|
+
],
|
|
911
|
+
"docRefs": [
|
|
912
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
913
|
+
],
|
|
914
|
+
"noShipNotes": "Records parent-owned decision only; approve means manual-apply eligible, not applied."
|
|
915
|
+
},
|
|
916
|
+
{
|
|
917
|
+
"name": "zob_merge_queue_list",
|
|
918
|
+
"family": "merge-queue",
|
|
919
|
+
"modes": [
|
|
920
|
+
"explore",
|
|
921
|
+
"plan",
|
|
922
|
+
"implement",
|
|
923
|
+
"oracle",
|
|
924
|
+
"factory",
|
|
925
|
+
"orchestrator"
|
|
926
|
+
],
|
|
927
|
+
"skillRefs": [
|
|
928
|
+
".pi/skills/zob-sandbox/SKILL.md",
|
|
929
|
+
".pi/skills/zob-oracle/SKILL.md"
|
|
930
|
+
],
|
|
931
|
+
"docRefs": [
|
|
932
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
933
|
+
],
|
|
934
|
+
"noShipNotes": "Lists metadata-only merge queue; no raw diffs or source writes."
|
|
935
|
+
},
|
|
936
|
+
{
|
|
937
|
+
"name": "zob_coms_readiness",
|
|
938
|
+
"family": "mission-control",
|
|
939
|
+
"modes": [
|
|
940
|
+
"explore",
|
|
941
|
+
"plan",
|
|
942
|
+
"implement",
|
|
943
|
+
"oracle",
|
|
944
|
+
"factory",
|
|
945
|
+
"orchestrator"
|
|
946
|
+
],
|
|
947
|
+
"skillRefs": [
|
|
948
|
+
".pi/skills/zob-mission-control-coms/SKILL.md",
|
|
949
|
+
".pi/skills/zob-coms-safety/SKILL.md"
|
|
950
|
+
],
|
|
951
|
+
"docRefs": [
|
|
952
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
953
|
+
],
|
|
954
|
+
"noShipNotes": "Readiness check only."
|
|
955
|
+
},
|
|
956
|
+
{
|
|
957
|
+
"name": "zob_mission_control_snapshot",
|
|
958
|
+
"family": "mission-control",
|
|
959
|
+
"modes": [
|
|
960
|
+
"explore",
|
|
961
|
+
"plan",
|
|
962
|
+
"implement",
|
|
963
|
+
"oracle",
|
|
964
|
+
"factory",
|
|
965
|
+
"orchestrator"
|
|
966
|
+
],
|
|
967
|
+
"skillRefs": [
|
|
968
|
+
".pi/skills/zob-mission-control-coms/SKILL.md"
|
|
969
|
+
],
|
|
970
|
+
"docRefs": [
|
|
971
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
972
|
+
],
|
|
973
|
+
"noShipNotes": "Snapshot/read-only control-plane view."
|
|
974
|
+
},
|
|
975
|
+
{
|
|
976
|
+
"name": "zob_mission_control_propose_command",
|
|
977
|
+
"family": "mission-control",
|
|
978
|
+
"modes": [
|
|
979
|
+
"plan",
|
|
980
|
+
"implement",
|
|
981
|
+
"factory",
|
|
982
|
+
"orchestrator"
|
|
983
|
+
],
|
|
984
|
+
"skillRefs": [
|
|
985
|
+
".pi/skills/zob-mission-control-coms/SKILL.md",
|
|
986
|
+
".pi/skills/zob-oracle/SKILL.md"
|
|
987
|
+
],
|
|
988
|
+
"docRefs": [
|
|
989
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
990
|
+
],
|
|
991
|
+
"noShipNotes": "Proposal only; no direct command execution."
|
|
992
|
+
},
|
|
993
|
+
{
|
|
994
|
+
"name": "zob_context_readiness",
|
|
995
|
+
"family": "context",
|
|
996
|
+
"modes": [
|
|
997
|
+
"explore",
|
|
998
|
+
"plan",
|
|
999
|
+
"implement",
|
|
1000
|
+
"oracle",
|
|
1001
|
+
"factory",
|
|
1002
|
+
"orchestrator"
|
|
1003
|
+
],
|
|
1004
|
+
"skillRefs": [
|
|
1005
|
+
".pi/skills/zob-harness/SKILL.md"
|
|
1006
|
+
],
|
|
1007
|
+
"docRefs": [
|
|
1008
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
1009
|
+
],
|
|
1010
|
+
"noShipNotes": "Readiness check only."
|
|
1011
|
+
},
|
|
1012
|
+
{
|
|
1013
|
+
"name": "zob_context_validate_scope",
|
|
1014
|
+
"family": "context",
|
|
1015
|
+
"modes": [
|
|
1016
|
+
"explore",
|
|
1017
|
+
"plan",
|
|
1018
|
+
"implement",
|
|
1019
|
+
"oracle",
|
|
1020
|
+
"factory",
|
|
1021
|
+
"orchestrator"
|
|
1022
|
+
],
|
|
1023
|
+
"skillRefs": [
|
|
1024
|
+
".pi/skills/zob-harness/SKILL.md",
|
|
1025
|
+
".pi/skills/zob-spec/SKILL.md"
|
|
1026
|
+
],
|
|
1027
|
+
"docRefs": [
|
|
1028
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
1029
|
+
],
|
|
1030
|
+
"noShipNotes": "Scope validation only."
|
|
1031
|
+
},
|
|
1032
|
+
{
|
|
1033
|
+
"name": "zob_context_writeback_proposal",
|
|
1034
|
+
"family": "context",
|
|
1035
|
+
"modes": [
|
|
1036
|
+
"plan",
|
|
1037
|
+
"implement",
|
|
1038
|
+
"factory",
|
|
1039
|
+
"orchestrator"
|
|
1040
|
+
],
|
|
1041
|
+
"skillRefs": [
|
|
1042
|
+
".pi/skills/zob-harness/SKILL.md",
|
|
1043
|
+
".pi/skills/zob-oracle/SKILL.md"
|
|
1044
|
+
],
|
|
1045
|
+
"docRefs": [
|
|
1046
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
1047
|
+
],
|
|
1048
|
+
"noShipNotes": "Proposal-only writeback; no direct source/document mutation."
|
|
1049
|
+
},
|
|
1050
|
+
{
|
|
1051
|
+
"name": "zob_compute_preview",
|
|
1052
|
+
"family": "compute",
|
|
1053
|
+
"modes": [
|
|
1054
|
+
"explore",
|
|
1055
|
+
"plan",
|
|
1056
|
+
"implement",
|
|
1057
|
+
"oracle",
|
|
1058
|
+
"factory",
|
|
1059
|
+
"orchestrator"
|
|
1060
|
+
],
|
|
1061
|
+
"skillRefs": [
|
|
1062
|
+
".pi/skills/zob-compute-profile/SKILL.md"
|
|
1063
|
+
],
|
|
1064
|
+
"docRefs": [
|
|
1065
|
+
"docs/ZOB_COMPUTE_PROFILE_ROUTING_PLAN.md"
|
|
1066
|
+
],
|
|
1067
|
+
"noShipNotes": "Metadata-only preview; no child dispatch, network, source writes, or safety/budget bypass."
|
|
1068
|
+
},
|
|
1069
|
+
{
|
|
1070
|
+
"name": "zob_compute_resolve_profile",
|
|
1071
|
+
"family": "compute",
|
|
1072
|
+
"modes": [
|
|
1073
|
+
"explore",
|
|
1074
|
+
"plan",
|
|
1075
|
+
"implement",
|
|
1076
|
+
"oracle",
|
|
1077
|
+
"factory",
|
|
1078
|
+
"orchestrator"
|
|
1079
|
+
],
|
|
1080
|
+
"skillRefs": [
|
|
1081
|
+
".pi/skills/zob-compute-profile/SKILL.md"
|
|
1082
|
+
],
|
|
1083
|
+
"docRefs": [
|
|
1084
|
+
"docs/ZOB_COMPUTE_PROFILE_ROUTING_PLAN.md"
|
|
1085
|
+
],
|
|
1086
|
+
"noShipNotes": "Resolves effective profile and caps only; no live dispatch or approval bypass."
|
|
1087
|
+
},
|
|
1088
|
+
{
|
|
1089
|
+
"name": "zob_compute_plan_workflow",
|
|
1090
|
+
"family": "compute",
|
|
1091
|
+
"modes": [
|
|
1092
|
+
"explore",
|
|
1093
|
+
"plan",
|
|
1094
|
+
"implement",
|
|
1095
|
+
"oracle",
|
|
1096
|
+
"factory",
|
|
1097
|
+
"orchestrator"
|
|
1098
|
+
],
|
|
1099
|
+
"skillRefs": [
|
|
1100
|
+
".pi/skills/zob-compute-profile/SKILL.md"
|
|
1101
|
+
],
|
|
1102
|
+
"docRefs": [
|
|
1103
|
+
"docs/ZOB_COMPUTE_PROFILE_ROUTING_PLAN.md"
|
|
1104
|
+
],
|
|
1105
|
+
"noShipNotes": "Builds metadata-only workflow-shape lanes; no live dispatch, network, source writes, or approval bypass."
|
|
1106
|
+
},
|
|
1107
|
+
{
|
|
1108
|
+
"name": "zob_compute_validate_profile",
|
|
1109
|
+
"family": "compute",
|
|
1110
|
+
"modes": [
|
|
1111
|
+
"explore",
|
|
1112
|
+
"plan",
|
|
1113
|
+
"implement",
|
|
1114
|
+
"oracle",
|
|
1115
|
+
"factory",
|
|
1116
|
+
"orchestrator"
|
|
1117
|
+
],
|
|
1118
|
+
"skillRefs": [
|
|
1119
|
+
".pi/skills/zob-compute-profile/SKILL.md",
|
|
1120
|
+
".pi/skills/zob-oracle/SKILL.md"
|
|
1121
|
+
],
|
|
1122
|
+
"docRefs": [
|
|
1123
|
+
"docs/ZOB_COMPUTE_PROFILE_ROUTING_PLAN.md"
|
|
1124
|
+
],
|
|
1125
|
+
"noShipNotes": "Read-only artifact validation; missing caps/oracle/budget evidence remains no-ship."
|
|
1126
|
+
},
|
|
1127
|
+
{
|
|
1128
|
+
"name": "zob_compute_write_profile_reports",
|
|
1129
|
+
"family": "compute",
|
|
1130
|
+
"modes": [
|
|
1131
|
+
"plan",
|
|
1132
|
+
"implement",
|
|
1133
|
+
"factory",
|
|
1134
|
+
"orchestrator"
|
|
1135
|
+
],
|
|
1136
|
+
"skillRefs": [
|
|
1137
|
+
".pi/skills/zob-compute-profile/SKILL.md"
|
|
1138
|
+
],
|
|
1139
|
+
"docRefs": [
|
|
1140
|
+
"docs/ZOB_COMPUTE_PROFILE_ROUTING_PLAN.md"
|
|
1141
|
+
],
|
|
1142
|
+
"noShipNotes": "Writes local metadata-only reports under .pi/logs; no child dispatch, network, source writes, or raw bodies."
|
|
1143
|
+
},
|
|
1144
|
+
{
|
|
1145
|
+
"name": "zob_project_dna_readiness",
|
|
1146
|
+
"family": "project-dna",
|
|
1147
|
+
"modes": [
|
|
1148
|
+
"explore",
|
|
1149
|
+
"plan",
|
|
1150
|
+
"implement",
|
|
1151
|
+
"oracle",
|
|
1152
|
+
"factory"
|
|
1153
|
+
],
|
|
1154
|
+
"skillRefs": [
|
|
1155
|
+
".pi/skills/zob-project-dna/SKILL.md",
|
|
1156
|
+
".pi/skills/zob-oracle/SKILL.md"
|
|
1157
|
+
],
|
|
1158
|
+
"docRefs": [
|
|
1159
|
+
"docs/ZOB_PROJECT_DNA_CODE_KNOWLEDGE_GRAPH_PLAN.md"
|
|
1160
|
+
],
|
|
1161
|
+
"noShipNotes": "Read-only readiness audit from repo-local artifacts; no source scan or backend write."
|
|
1162
|
+
},
|
|
1163
|
+
{
|
|
1164
|
+
"name": "zob_project_dna_plan_workflow",
|
|
1165
|
+
"family": "project-dna",
|
|
1166
|
+
"modes": [
|
|
1167
|
+
"explore",
|
|
1168
|
+
"plan",
|
|
1169
|
+
"implement",
|
|
1170
|
+
"oracle",
|
|
1171
|
+
"factory"
|
|
1172
|
+
],
|
|
1173
|
+
"skillRefs": [
|
|
1174
|
+
".pi/skills/zob-project-dna/SKILL.md",
|
|
1175
|
+
".pi/skills/zob-compute-profile/SKILL.md"
|
|
1176
|
+
],
|
|
1177
|
+
"docRefs": [
|
|
1178
|
+
"docs/ZOB_PROJECT_DNA_CODE_KNOWLEDGE_GRAPH_PLAN.md"
|
|
1179
|
+
],
|
|
1180
|
+
"noShipNotes": "Builds metadata-only agentic workflow plans from manifest v2; no source scan, child dispatch, network, source write, or backend write."
|
|
1181
|
+
},
|
|
1182
|
+
{
|
|
1183
|
+
"name": "zob_project_dna_query",
|
|
1184
|
+
"family": "project-dna",
|
|
1185
|
+
"modes": [
|
|
1186
|
+
"explore",
|
|
1187
|
+
"plan",
|
|
1188
|
+
"implement",
|
|
1189
|
+
"oracle",
|
|
1190
|
+
"factory"
|
|
1191
|
+
],
|
|
1192
|
+
"skillRefs": [
|
|
1193
|
+
".pi/skills/zob-project-dna/SKILL.md"
|
|
1194
|
+
],
|
|
1195
|
+
"docRefs": [
|
|
1196
|
+
"docs/ZOB_PROJECT_DNA_CODE_KNOWLEDGE_GRAPH_PLAN.md"
|
|
1197
|
+
],
|
|
1198
|
+
"noShipNotes": "Returns bounded cited context from existing scan artifacts only; no external project scan, no child dispatch, no backend write."
|
|
1199
|
+
},
|
|
1200
|
+
{
|
|
1201
|
+
"name": "zob_project_dna_federated_query",
|
|
1202
|
+
"family": "project-dna",
|
|
1203
|
+
"modes": [
|
|
1204
|
+
"explore",
|
|
1205
|
+
"plan",
|
|
1206
|
+
"implement",
|
|
1207
|
+
"oracle",
|
|
1208
|
+
"factory"
|
|
1209
|
+
],
|
|
1210
|
+
"skillRefs": [
|
|
1211
|
+
".pi/skills/zob-project-dna/SKILL.md",
|
|
1212
|
+
".pi/skills/zob-oracle/SKILL.md"
|
|
1213
|
+
],
|
|
1214
|
+
"docRefs": [
|
|
1215
|
+
"docs/ZOB_PROJECT_DNA_CODE_KNOWLEDGE_GRAPH_PLAN.md"
|
|
1216
|
+
],
|
|
1217
|
+
"noShipNotes": "Metadata-only multi-source context merge; source isolation preserved; durable promotion remains approval-gated."
|
|
1218
|
+
},
|
|
1219
|
+
{
|
|
1220
|
+
"name": "zob_project_dna_writeback_proposal",
|
|
1221
|
+
"family": "project-dna",
|
|
1222
|
+
"modes": [
|
|
1223
|
+
"plan",
|
|
1224
|
+
"implement",
|
|
1225
|
+
"factory"
|
|
1226
|
+
],
|
|
1227
|
+
"skillRefs": [
|
|
1228
|
+
".pi/skills/zob-project-dna/SKILL.md",
|
|
1229
|
+
".pi/skills/zob-oracle/SKILL.md"
|
|
1230
|
+
],
|
|
1231
|
+
"docRefs": [
|
|
1232
|
+
"docs/ZOB_PROJECT_DNA_CODE_KNOWLEDGE_GRAPH_PLAN.md"
|
|
1233
|
+
],
|
|
1234
|
+
"noShipNotes": "Hash-only proposal append; no raw bodies, no auto-promotion, no external knowledge-backend write."
|
|
1235
|
+
},
|
|
1236
|
+
{
|
|
1237
|
+
"name": "zob_autonomous_validate_run",
|
|
1238
|
+
"family": "autonomous",
|
|
1239
|
+
"modes": [
|
|
1240
|
+
"explore",
|
|
1241
|
+
"oracle",
|
|
1242
|
+
"factory"
|
|
1243
|
+
],
|
|
1244
|
+
"skillRefs": [
|
|
1245
|
+
".pi/skills/zob-autonomous-runtime/SKILL.md",
|
|
1246
|
+
".pi/skills/zob-factory/SKILL.md",
|
|
1247
|
+
".pi/skills/zob-oracle/SKILL.md"
|
|
1248
|
+
],
|
|
1249
|
+
"docRefs": [
|
|
1250
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
1251
|
+
],
|
|
1252
|
+
"noShipNotes": "Read-only artifact validation; no child dispatch, network, or production writes."
|
|
1253
|
+
},
|
|
1254
|
+
{
|
|
1255
|
+
"name": "zob_autonomous_validate_smoke",
|
|
1256
|
+
"family": "autonomous",
|
|
1257
|
+
"modes": [
|
|
1258
|
+
"explore",
|
|
1259
|
+
"oracle",
|
|
1260
|
+
"factory"
|
|
1261
|
+
],
|
|
1262
|
+
"skillRefs": [
|
|
1263
|
+
".pi/skills/zob-autonomous-runtime/SKILL.md",
|
|
1264
|
+
".pi/skills/zob-factory/SKILL.md",
|
|
1265
|
+
".pi/skills/zob-oracle/SKILL.md"
|
|
1266
|
+
],
|
|
1267
|
+
"docRefs": [
|
|
1268
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
1269
|
+
],
|
|
1270
|
+
"noShipNotes": "Read-only smoke artifact validation; no child dispatch, network, or production writes."
|
|
1271
|
+
},
|
|
1272
|
+
{
|
|
1273
|
+
"name": "zob_autonomous_dry_run",
|
|
1274
|
+
"family": "autonomous",
|
|
1275
|
+
"modes": [
|
|
1276
|
+
"factory"
|
|
1277
|
+
],
|
|
1278
|
+
"skillRefs": [
|
|
1279
|
+
".pi/skills/zob-autonomous-runtime/SKILL.md",
|
|
1280
|
+
".pi/skills/zob-factory/SKILL.md",
|
|
1281
|
+
".pi/skills/zob-sandbox/SKILL.md"
|
|
1282
|
+
],
|
|
1283
|
+
"docRefs": [
|
|
1284
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
1285
|
+
],
|
|
1286
|
+
"noShipNotes": "Factory-only metadata/report generation; no live/global routing or production writes."
|
|
1287
|
+
},
|
|
1288
|
+
{
|
|
1289
|
+
"name": "zob_autonomous_readonly_smoke",
|
|
1290
|
+
"family": "autonomous",
|
|
1291
|
+
"modes": [
|
|
1292
|
+
"factory"
|
|
1293
|
+
],
|
|
1294
|
+
"skillRefs": [
|
|
1295
|
+
".pi/skills/zob-autonomous-runtime/SKILL.md",
|
|
1296
|
+
".pi/skills/zob-factory/SKILL.md",
|
|
1297
|
+
".pi/skills/zob-sandbox/SKILL.md",
|
|
1298
|
+
".pi/skills/zob-oracle/SKILL.md"
|
|
1299
|
+
],
|
|
1300
|
+
"docRefs": [
|
|
1301
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
1302
|
+
],
|
|
1303
|
+
"noShipNotes": "Factory-only reports smoke; no child dispatch, daemon, production writes, or global autonomy claim."
|
|
1304
|
+
},
|
|
1305
|
+
{
|
|
1306
|
+
"name": "factory_quarantine_review",
|
|
1307
|
+
"family": "factory",
|
|
1308
|
+
"modes": [
|
|
1309
|
+
"factory"
|
|
1310
|
+
],
|
|
1311
|
+
"skillRefs": [
|
|
1312
|
+
".pi/skills/zob-factory/SKILL.md",
|
|
1313
|
+
".pi/skills/zob-sandbox/SKILL.md"
|
|
1314
|
+
],
|
|
1315
|
+
"docRefs": [
|
|
1316
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
1317
|
+
],
|
|
1318
|
+
"noShipNotes": "Review-only quarantine metadata before activation."
|
|
1319
|
+
},
|
|
1320
|
+
{
|
|
1321
|
+
"name": "factory_quarantine_activate",
|
|
1322
|
+
"family": "factory",
|
|
1323
|
+
"modes": [
|
|
1324
|
+
"factory"
|
|
1325
|
+
],
|
|
1326
|
+
"skillRefs": [
|
|
1327
|
+
".pi/skills/zob-factory/SKILL.md",
|
|
1328
|
+
".pi/skills/zob-sandbox/SKILL.md"
|
|
1329
|
+
],
|
|
1330
|
+
"docRefs": [
|
|
1331
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
1332
|
+
],
|
|
1333
|
+
"noShipNotes": "Factory-mode activation only after review gates."
|
|
1334
|
+
},
|
|
1335
|
+
{
|
|
1336
|
+
"name": "factory_quarantine_verify_activation",
|
|
1337
|
+
"family": "factory",
|
|
1338
|
+
"modes": [
|
|
1339
|
+
"factory"
|
|
1340
|
+
],
|
|
1341
|
+
"skillRefs": [
|
|
1342
|
+
".pi/skills/zob-factory/SKILL.md",
|
|
1343
|
+
".pi/skills/zob-sandbox/SKILL.md"
|
|
1344
|
+
],
|
|
1345
|
+
"docRefs": [
|
|
1346
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
1347
|
+
],
|
|
1348
|
+
"noShipNotes": "Verification-only post-activation gate."
|
|
1349
|
+
},
|
|
1350
|
+
{
|
|
1351
|
+
"name": "factory_run",
|
|
1352
|
+
"family": "factory",
|
|
1353
|
+
"modes": [
|
|
1354
|
+
"factory"
|
|
1355
|
+
],
|
|
1356
|
+
"skillRefs": [
|
|
1357
|
+
".pi/skills/zob-factory/SKILL.md",
|
|
1358
|
+
".pi/skills/zob-sandbox/SKILL.md"
|
|
1359
|
+
],
|
|
1360
|
+
"docRefs": [
|
|
1361
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
1362
|
+
],
|
|
1363
|
+
"noShipNotes": "Factory-mode only; requires manifest/checkpoint/sentinel validation."
|
|
1364
|
+
},
|
|
1365
|
+
{
|
|
1366
|
+
"name": "zob_zcommit_run",
|
|
1367
|
+
"family": "git/commit",
|
|
1368
|
+
"modes": [
|
|
1369
|
+
"all"
|
|
1370
|
+
],
|
|
1371
|
+
"skillRefs": [
|
|
1372
|
+
".pi/skills/zob-commit/SKILL.md",
|
|
1373
|
+
".pi/skills/zob-harness/SKILL.md"
|
|
1374
|
+
],
|
|
1375
|
+
"docRefs": [
|
|
1376
|
+
".pi/git-policy.json",
|
|
1377
|
+
".pi/extensions/zob-harness/src/git-ops.ts",
|
|
1378
|
+
".pi/extensions/zob-harness/src/runtime/tools-zcommit.ts"
|
|
1379
|
+
],
|
|
1380
|
+
"noShipNotes": "Agent-executable governed zcommit tool for plan|commit|push|commit_and_push. Use when the user explicitly asks the agent to commit/push so the agent does not ask the user to paste /zcommit commands. It reuses the /zcommit engine, supports session_modified/pathspecs/all_safe_dirty scopes, stores body-free ledgers, stages only selected paths via git add --, excludes runtime/secrets/vendor/build paths, and never uses direct git commit/push/tag or git add ./-A/--all."
|
|
1381
|
+
}
|
|
1382
|
+
],
|
|
1383
|
+
"commands": [
|
|
1384
|
+
{
|
|
1385
|
+
"name": "zob",
|
|
1386
|
+
"family": "harness-switch",
|
|
1387
|
+
"modes": [
|
|
1388
|
+
"all"
|
|
1389
|
+
],
|
|
1390
|
+
"skillRefs": [
|
|
1391
|
+
".pi/skills/zob-harness/SKILL.md"
|
|
1392
|
+
],
|
|
1393
|
+
"docRefs": [
|
|
1394
|
+
"docs/HARNESS_CAPABILITY_MATRIX.md",
|
|
1395
|
+
".pi/extensions/zob-switch/index.ts"
|
|
1396
|
+
],
|
|
1397
|
+
"noShipNotes": "Single slash command only: /zob on|off|status. No aliases. off snapshots project .pi/settings.json, removes only the ZOB harness extension plus project ZOB prompts/skills entries while keeping zob-switch configured, writes settings, then treats ctx.reload() as terminal. on restores the saved snapshot when present and ensures switch+harness entries exist; without a snapshot it restores safe ZOB prompts/skills defaults."
|
|
1398
|
+
},
|
|
1399
|
+
{
|
|
1400
|
+
"name": "zmode",
|
|
1401
|
+
"family": "mode",
|
|
1402
|
+
"modes": [
|
|
1403
|
+
"all"
|
|
1404
|
+
],
|
|
1405
|
+
"skillRefs": [
|
|
1406
|
+
".pi/skills/zob-harness/SKILL.md"
|
|
1407
|
+
],
|
|
1408
|
+
"docRefs": [
|
|
1409
|
+
"AGENTS.md",
|
|
1410
|
+
"docs/ZOB_ADAPTIVE_WORKFLOW_RUNTIME_PLAN.md"
|
|
1411
|
+
],
|
|
1412
|
+
"noShipNotes": "Switches active harness mode only. orchestrator routes to adaptive-chief-vision plan_only defaults; child dispatch requires parent-owned contract/preflight gates and writes remain blocked without sandbox/oracle/human approval."
|
|
1413
|
+
},
|
|
1414
|
+
{
|
|
1415
|
+
"name": "stop",
|
|
1416
|
+
"family": "runtime-control",
|
|
1417
|
+
"modes": [
|
|
1418
|
+
"all"
|
|
1419
|
+
],
|
|
1420
|
+
"skillRefs": [
|
|
1421
|
+
".pi/skills/zob-harness/SKILL.md",
|
|
1422
|
+
".pi/skills/zob-coms-safety/SKILL.md"
|
|
1423
|
+
],
|
|
1424
|
+
"docRefs": [
|
|
1425
|
+
"AGENTS.md",
|
|
1426
|
+
".pi/extensions/zob-harness/src/runtime/commands.ts",
|
|
1427
|
+
".pi/extensions/zob-harness/src/goal-runtime.ts"
|
|
1428
|
+
],
|
|
1429
|
+
"noShipNotes": "Session-local stop command only: aborts foreground work through ctx.abort when busy, aborts active background delegate_task controllers, stops supervised daemon loop, pauses runtime-goal auto-continuation, and appends body-free/hash-only telemetry. It must not shutdown Pi, kill arbitrary processes, or count append-only refs as delivery success."
|
|
1430
|
+
},
|
|
1431
|
+
{
|
|
1432
|
+
"name": "delegates",
|
|
1433
|
+
"family": "delegation-ui",
|
|
1434
|
+
"modes": [
|
|
1435
|
+
"all"
|
|
1436
|
+
],
|
|
1437
|
+
"skillRefs": [
|
|
1438
|
+
".pi/skills/zob-harness/SKILL.md"
|
|
1439
|
+
],
|
|
1440
|
+
"docRefs": [
|
|
1441
|
+
"AGENTS.md"
|
|
1442
|
+
],
|
|
1443
|
+
"noShipNotes": "Opens delegation viewer only."
|
|
1444
|
+
},
|
|
1445
|
+
{
|
|
1446
|
+
"name": "delegate",
|
|
1447
|
+
"family": "delegation-ui",
|
|
1448
|
+
"modes": [
|
|
1449
|
+
"all"
|
|
1450
|
+
],
|
|
1451
|
+
"skillRefs": [
|
|
1452
|
+
".pi/skills/zob-harness/SKILL.md"
|
|
1453
|
+
],
|
|
1454
|
+
"docRefs": [
|
|
1455
|
+
"AGENTS.md"
|
|
1456
|
+
],
|
|
1457
|
+
"noShipNotes": "Alias for delegates viewer only."
|
|
1458
|
+
},
|
|
1459
|
+
{
|
|
1460
|
+
"name": "zstatus",
|
|
1461
|
+
"family": "status",
|
|
1462
|
+
"modes": [
|
|
1463
|
+
"all"
|
|
1464
|
+
],
|
|
1465
|
+
"skillRefs": [
|
|
1466
|
+
".pi/skills/zob-harness/SKILL.md"
|
|
1467
|
+
],
|
|
1468
|
+
"docRefs": [
|
|
1469
|
+
"AGENTS.md"
|
|
1470
|
+
],
|
|
1471
|
+
"noShipNotes": "Refreshes local status widget only."
|
|
1472
|
+
},
|
|
1473
|
+
{
|
|
1474
|
+
"name": "zcompact",
|
|
1475
|
+
"family": "compaction",
|
|
1476
|
+
"modes": [
|
|
1477
|
+
"all"
|
|
1478
|
+
],
|
|
1479
|
+
"skillRefs": [
|
|
1480
|
+
".pi/skills/zob-compaction-policy/SKILL.md",
|
|
1481
|
+
".pi/skills/zob-harness/SKILL.md"
|
|
1482
|
+
],
|
|
1483
|
+
"docRefs": [
|
|
1484
|
+
"docs/ZOB_COMPACTION_POLICY.md",
|
|
1485
|
+
"README.md",
|
|
1486
|
+
".pi/extensions/zob-harness/src/runtime/auto-compaction.ts"
|
|
1487
|
+
],
|
|
1488
|
+
"noShipNotes": "Session-local proactive compaction UX. Default policy triggers around 60% context and targets roughly 25% after compaction by summarizing older compactable conversation entries while keeping recent user/assistant messages clear. observe mode is no-mutation; on/trigger call ctx.compact only when idle/no queued messages except explicit trigger; ledgers remain metadata/hash-only and summaries are continuity indexes, not evidence."
|
|
1489
|
+
},
|
|
1490
|
+
{
|
|
1491
|
+
"name": "zcommit",
|
|
1492
|
+
"family": "git/commit",
|
|
1493
|
+
"modes": [
|
|
1494
|
+
"all"
|
|
1495
|
+
],
|
|
1496
|
+
"skillRefs": [
|
|
1497
|
+
".pi/skills/zob-commit/SKILL.md",
|
|
1498
|
+
".pi/skills/zob-harness/SKILL.md"
|
|
1499
|
+
],
|
|
1500
|
+
"docRefs": [
|
|
1501
|
+
".pi/git-policy.json",
|
|
1502
|
+
".pi/extensions/zob-harness/src/git-ops.ts",
|
|
1503
|
+
".pi/extensions/zob-harness/src/runtime/commands.ts"
|
|
1504
|
+
],
|
|
1505
|
+
"noShipNotes": "Easy governed explicit-only /zcommit status [paths/globs...]|plan [paths/globs...]|adopt <paths...>|commit [paths/globs...]|push|autocommit on|off|autopush on|off. No aliases. Normal mode selects safe dirty workspace files after forbidden-path filtering, or an explicit safe subset by repo-relative file/directory/glob pathspecs. Adopt remains metadata-only for legacy/strict ownership hints and never stages. Commit uses explicit git add -- selected paths only, never git add . or -A; forbidden staged paths block, forbidden unstaged paths are excluded, advisory validation is recorded in the Conventional Commit body, and push is limited to last /zcommit-created HEAD via allowed remote/branch without force/tags/push-all."
|
|
1506
|
+
},
|
|
1507
|
+
{
|
|
1508
|
+
"name": "zpeer",
|
|
1509
|
+
"family": "coms-v2-live",
|
|
1510
|
+
"modes": [
|
|
1511
|
+
"all"
|
|
1512
|
+
],
|
|
1513
|
+
"skillRefs": [
|
|
1514
|
+
".pi/skills/zob-coms-v2-live/SKILL.md",
|
|
1515
|
+
".pi/skills/zob-coms-safety/SKILL.md"
|
|
1516
|
+
],
|
|
1517
|
+
"docRefs": [
|
|
1518
|
+
"AGENTS.md",
|
|
1519
|
+
".pi/extensions/zob-harness/src/AGENTS.md"
|
|
1520
|
+
],
|
|
1521
|
+
"noShipNotes": "Local-only multi-room-scoped peer UX with active-room compatibility; transient prompt/response over local_socket, persisted command/mission metadata is hash/body-free."
|
|
1522
|
+
},
|
|
1523
|
+
{
|
|
1524
|
+
"name": "rules_status",
|
|
1525
|
+
"family": "safety",
|
|
1526
|
+
"modes": [
|
|
1527
|
+
"all"
|
|
1528
|
+
],
|
|
1529
|
+
"skillRefs": [
|
|
1530
|
+
".pi/skills/zob-harness/SKILL.md"
|
|
1531
|
+
],
|
|
1532
|
+
"docRefs": [
|
|
1533
|
+
"AGENTS.md"
|
|
1534
|
+
],
|
|
1535
|
+
"noShipNotes": "Resolves active damage-rule profile; no edits."
|
|
1536
|
+
},
|
|
1537
|
+
{
|
|
1538
|
+
"name": "contract",
|
|
1539
|
+
"family": "workflow",
|
|
1540
|
+
"modes": [
|
|
1541
|
+
"all"
|
|
1542
|
+
],
|
|
1543
|
+
"skillRefs": [
|
|
1544
|
+
".pi/skills/zob-harness/SKILL.md"
|
|
1545
|
+
],
|
|
1546
|
+
"docRefs": [
|
|
1547
|
+
"AGENTS.md"
|
|
1548
|
+
],
|
|
1549
|
+
"noShipNotes": "Inserts delegation template only."
|
|
1550
|
+
},
|
|
1551
|
+
{
|
|
1552
|
+
"name": "goal",
|
|
1553
|
+
"family": "goal",
|
|
1554
|
+
"modes": [
|
|
1555
|
+
"all"
|
|
1556
|
+
],
|
|
1557
|
+
"skillRefs": [
|
|
1558
|
+
".pi/skills/zob-goal-todo-tree/SKILL.md"
|
|
1559
|
+
],
|
|
1560
|
+
"docRefs": [
|
|
1561
|
+
"AGENTS.md"
|
|
1562
|
+
],
|
|
1563
|
+
"noShipNotes": "Manages active goal/TODO metadata only."
|
|
1564
|
+
},
|
|
1565
|
+
{
|
|
1566
|
+
"name": "todo",
|
|
1567
|
+
"family": "goal",
|
|
1568
|
+
"modes": [
|
|
1569
|
+
"all"
|
|
1570
|
+
],
|
|
1571
|
+
"skillRefs": [
|
|
1572
|
+
".pi/skills/zob-goal-todo-tree/SKILL.md"
|
|
1573
|
+
],
|
|
1574
|
+
"docRefs": [
|
|
1575
|
+
"AGENTS.md"
|
|
1576
|
+
],
|
|
1577
|
+
"noShipNotes": "Alias for goal TODO metadata only."
|
|
1578
|
+
},
|
|
1579
|
+
{
|
|
1580
|
+
"name": "todos",
|
|
1581
|
+
"family": "goal",
|
|
1582
|
+
"modes": [
|
|
1583
|
+
"all"
|
|
1584
|
+
],
|
|
1585
|
+
"skillRefs": [
|
|
1586
|
+
".pi/skills/zob-goal-todo-tree/SKILL.md"
|
|
1587
|
+
],
|
|
1588
|
+
"docRefs": [
|
|
1589
|
+
"AGENTS.md"
|
|
1590
|
+
],
|
|
1591
|
+
"noShipNotes": "Goal TODO tree or overlay only."
|
|
1592
|
+
},
|
|
1593
|
+
{
|
|
1594
|
+
"name": "goal_gate",
|
|
1595
|
+
"family": "goal",
|
|
1596
|
+
"modes": [
|
|
1597
|
+
"all"
|
|
1598
|
+
],
|
|
1599
|
+
"skillRefs": [
|
|
1600
|
+
".pi/skills/zob-goal-todo-tree/SKILL.md"
|
|
1601
|
+
],
|
|
1602
|
+
"docRefs": [
|
|
1603
|
+
"AGENTS.md"
|
|
1604
|
+
],
|
|
1605
|
+
"noShipNotes": "Sets/inserts active goal gate metadata only."
|
|
1606
|
+
},
|
|
1607
|
+
{
|
|
1608
|
+
"name": "job_intake",
|
|
1609
|
+
"family": "goal",
|
|
1610
|
+
"modes": [
|
|
1611
|
+
"all"
|
|
1612
|
+
],
|
|
1613
|
+
"skillRefs": [
|
|
1614
|
+
".pi/skills/zob-spec/SKILL.md",
|
|
1615
|
+
".pi/skills/zob-harness/SKILL.md"
|
|
1616
|
+
],
|
|
1617
|
+
"docRefs": [
|
|
1618
|
+
"AGENTS.md"
|
|
1619
|
+
],
|
|
1620
|
+
"noShipNotes": "Parses intake into active goal metadata; budget remains advisory."
|
|
1621
|
+
},
|
|
1622
|
+
{
|
|
1623
|
+
"name": "compute",
|
|
1624
|
+
"family": "compute",
|
|
1625
|
+
"modes": [
|
|
1626
|
+
"all"
|
|
1627
|
+
],
|
|
1628
|
+
"skillRefs": [
|
|
1629
|
+
".pi/skills/zob-compute-profile/SKILL.md"
|
|
1630
|
+
],
|
|
1631
|
+
"docRefs": [
|
|
1632
|
+
"docs/ZOB_COMPUTE_PROFILE_ROUTING_PLAN.md",
|
|
1633
|
+
"AGENTS.md"
|
|
1634
|
+
],
|
|
1635
|
+
"noShipNotes": "Slash preview/resolve only; metadata-only, no child dispatch, no network, no source writes."
|
|
1636
|
+
},
|
|
1637
|
+
{
|
|
1638
|
+
"name": "effort",
|
|
1639
|
+
"family": "compute",
|
|
1640
|
+
"modes": [
|
|
1641
|
+
"all"
|
|
1642
|
+
],
|
|
1643
|
+
"skillRefs": [
|
|
1644
|
+
".pi/skills/zob-compute-profile/SKILL.md"
|
|
1645
|
+
],
|
|
1646
|
+
"docRefs": [
|
|
1647
|
+
"docs/ZOB_COMPUTE_PROFILE_ROUTING_PLAN.md",
|
|
1648
|
+
"AGENTS.md"
|
|
1649
|
+
],
|
|
1650
|
+
"noShipNotes": "Alias for /compute; metadata-only and cannot bypass approval/budget/oracle gates."
|
|
1651
|
+
},
|
|
1652
|
+
{
|
|
1653
|
+
"name": "project-dna",
|
|
1654
|
+
"family": "project-dna",
|
|
1655
|
+
"modes": [
|
|
1656
|
+
"all"
|
|
1657
|
+
],
|
|
1658
|
+
"skillRefs": [
|
|
1659
|
+
".pi/skills/zob-project-dna/SKILL.md"
|
|
1660
|
+
],
|
|
1661
|
+
"docRefs": [
|
|
1662
|
+
"docs/ZOB_PROJECT_DNA_CODE_KNOWLEDGE_GRAPH_PLAN.md",
|
|
1663
|
+
"AGENTS.md"
|
|
1664
|
+
],
|
|
1665
|
+
"noShipNotes": "Slash readiness/plan/query only; plan is metadata-only from manifest v2, query reads existing repo-local scan artifacts, and neither scans external projects nor writes a backend."
|
|
1666
|
+
},
|
|
1667
|
+
{
|
|
1668
|
+
"name": "autonomy",
|
|
1669
|
+
"family": "autonomous-runtime",
|
|
1670
|
+
"modes": [
|
|
1671
|
+
"all"
|
|
1672
|
+
],
|
|
1673
|
+
"skillRefs": [
|
|
1674
|
+
".pi/skills/zob-autonomous-runtime/SKILL.md",
|
|
1675
|
+
".pi/skills/zob-harness/SKILL.md"
|
|
1676
|
+
],
|
|
1677
|
+
"docRefs": [
|
|
1678
|
+
"AGENTS.md",
|
|
1679
|
+
".pi/autonomy-policy.json",
|
|
1680
|
+
".pi/extensions/zob-harness/src/daemon-runtime.ts",
|
|
1681
|
+
".pi/extensions/zob-harness/src/runtime/commands.ts"
|
|
1682
|
+
],
|
|
1683
|
+
"noShipNotes": "Sets interactive autonomy policy only: open/controlled/adaptive/status/stop plus daemon status|plan-tick|tick|start|stop. Daemon subcommands are scoped to the active goal, session-local, plan-only, bounded when started, no autostart/no cron/no global loop, and no global autonomy or production readiness claim; launch authorization remains in-scope and safety-gated with no secrets, destructive commands, or production apply."
|
|
1684
|
+
},
|
|
1685
|
+
{
|
|
1686
|
+
"name": "agents",
|
|
1687
|
+
"family": "agents",
|
|
1688
|
+
"modes": [
|
|
1689
|
+
"all"
|
|
1690
|
+
],
|
|
1691
|
+
"skillRefs": [
|
|
1692
|
+
".pi/skills/zob-harness/SKILL.md"
|
|
1693
|
+
],
|
|
1694
|
+
"docRefs": [
|
|
1695
|
+
"AGENTS.md"
|
|
1696
|
+
],
|
|
1697
|
+
"noShipNotes": "Lists specialist agents only."
|
|
1698
|
+
}
|
|
1699
|
+
]
|
|
1700
|
+
}
|