name: octon-proposal-lifecycle-run-packet-implementation description: Run the proposal packet implementation bundle. license: MIT compatibility: Octon proposal lifecycle extension. metadata: author: Octon Framework created: "2026-05-05" updated: "2026-05-05" skill_sets: [executor, integrator, specialist] capabilities: [self-validating] allowed-tools: Read Glob Grep Write(/.octon/inputs/exploratory/proposals/) Write(/.octon/framework/) Write(/.octon/instance/) Write(/.octon/state/) Write(/.octon/generated/*)
Packet - Run Implementation
Run implementation for one accepted proposal packet by executing the packet's
support/executable-implementation-prompt.md against durable repository
surfaces.
This bundle is the lifecycle bridge between implementation prompt generation and post-implementation verification. It executes promotion work, but it does not make proposal-local material authoritative.
Preconditions
Resolve exactly one proposal packet path before taking implementation action. Refuse implementation when:
proposal.ymlor the subtype manifest is missing or invalid;statusis notaccepted;support/proposal-review.mdis missing, stale, not accepted, has open blocking findings, or does not authorize implementation;validate-proposal-review-gate.sh --package <proposal_path> --require-implementation-authorizationfails;support/implementation-grade-completeness-review.mdis missing, failing, hasunresolved_questions_countother than0, or hasclarification_requiredother thanno;support/executable-implementation-prompt.mdis missing;- implementation-readiness validation fails;
- the implementation prompt asks for work outside declared promotion targets without an explicit packet revision or linked proposal route;
- the packet would treat
inputs/**, generated outputs, chat, host state, or proposal-local analysis as runtime, policy, support, or closure authority.
If the proposal is still in-review, do not infer approval from packet
existence or operator intent. Route to review-packet or
revise-packet until a fresh accepted review receipt authorizes
implementation.
Required Execution Flow
- Read
proposal.yml, the subtype manifest,navigation/source-of-truth-map.md,navigation/artifact-catalog.md,architecture/implementation-plan.mdwhen present,architecture/acceptance-criteria.mdwhen present,support/implementation-grade-completeness-review.md, andsupport/executable-implementation-prompt.md. - Run or confirm the structural, subtype, implementation-readiness, and strict proposal-review gate validators required by the packet.
- Execute only the durable promotion work described by the executable implementation prompt and declared promotion targets.
- Preserve Octon class boundaries:
- durable doctrine, schemas, workflows, validators, and docs belong under
framework/**when the packet declares Octon-internal promotion; - instance enablement belongs under
instance/**; - mutable control and retained evidence remain under
state/**; - generated outputs are refreshed only through the appropriate publication or registry mechanism and remain derived-only;
- proposal packet paths may remain only as provenance, not as runtime dependencies.
- durable doctrine, schemas, workflows, validators, and docs belong under
- Update post-implementation packet support material:
support/implementation-run.md;support/implementation-conformance-review.md;support/post-implementation-drift-churn-review.md;support/validation.md;support/SHA256SUMS.txt, when the packet maintains checksums.
- Leave
proposal.yml#statusasaccepted; this bundle writes the implementation evidence that enables the separatepromote-proposallifecycle route to rewrite status toimplemented. Reportblockedordeferredwhen implementation cannot be completed cleanly. - Run the post-implementation conformance and drift/churn validators before any implemented, closeout, or archive-ready claim.
Required Validators
Run the packet's declared validators plus, at minimum:
bash .octon/framework/assurance/runtime/_ops/scripts/validate-proposal-standard.sh --package <proposal_path>
bash .octon/framework/assurance/runtime/_ops/scripts/validate-proposal-review-gate.sh --package <proposal_path> --require-implementation-authorization
bash .octon/framework/assurance/runtime/_ops/scripts/validate-proposal-implementation-readiness.sh --package <proposal_path>
bash .octon/framework/assurance/runtime/_ops/scripts/validate-proposal-implementation-conformance.sh --package <proposal_path>
bash .octon/framework/assurance/runtime/_ops/scripts/validate-proposal-post-implementation-drift.sh --package <proposal_path>
For architecture packets, also run the architecture proposal validator.
Closeout Boundary
This command may report implementation complete only when the durable
repository state, conformance receipt, drift/churn receipt, and validators all
support that claim. It must not promote or archive the packet. After successful
implementation, route to the promote-proposal lifecycle route, then to:
octon-proposal-lifecycle-generate-packet-verification-prompt
If implementation is blocked, route to:
octon-proposal-lifecycle-generate-packet-correction-prompt
or to packet revision when the blocker changes promotion scope, authority ownership, product semantics, or irreversible churn.