Deployments

Conceptual

Shipping verified changes through your existing delivery pipeline.

Pimsy proposes and prepares releases; your pipeline remains the authority. Deployment effects are irreversible and therefore always gated.

Supported patterns#

PatternAgent roleGate
Pull requestPrepares branch, diff, description and evidenceHuman review
Preview environmentTriggers a preview build and reports the URLOptional
Staged rolloutProposes the rollout plan and monitors metricsApproval per stage
Production deployExecutes an approved plan through CIApproval always
RollbackDetects regression and proposes reversalApproval, expedited
ts
await pimsy.tasks.create({
  projectId: class="tok-str">"prj_checkout",
  objective: class="tok-str">"Prepare a release PR for the tax-profile fix with a rollout plan and monitoring checklist.",
  capabilities: [class="tok-str">"connector.github", class="tok-str">"code.execute"],
  approvals: { required: [class="tok-str">"git.push", class="tok-str">"pull_request.open"] }
});

Last updated 2026-09-01