Starlight Autoplan
Purpose
Turn a rough proposal into a bounded plan whose assumptions, risks, authority limits, and verification gates are visible before implementation begins.
When it fires
- The user asks to review, harden, or stress-test a plan.
- The work crosses product, data, security, design, runtime, or deployment boundaries.
- A wrong decision would be expensive or difficult to reverse.
Do not invoke the full review for a trivial, reversible edit unless the user asks for it.
Inputs
- Desired user outcome and explicit non-goals.
- Current repository or system evidence.
- Time, cost, compatibility, privacy, and authority constraints.
- Known failure history and required verification commands.
Workflow
- Restate the outcome, success criteria, non-goals, and unresolved assumptions.
- Select review depth proportional to reversibility and impact.
- Run four lenses: product value, engineering integrity, design quality, and developer/operator experience.
- Give every finding an evidence reference, confidence level, and consequence.
- Reconcile contradictions; never silently average incompatible recommendations.
- Produce the smallest coherent execution sequence with rollback and promotion gates.
- Stop for human direction before destructive, costly, public, or credential-bearing actions.
When the same agent performs every lens, disclose that the review was sequential rather than independent.
Output contract
Return:
decision: build, revise, defer, or stop.
scope: user-visible outcome, non-goals, and affected surfaces.
assumptions: verified, inferred, and unresolved items kept separate.
reviews: findings from each lens with severity and evidence.
execution_plan: ordered, independently verifiable steps.
verification: automated, manual, security, accessibility, and deployment gates as applicable.
artifacts: plan, decision, rollback, and verification records with stable references.
failure_conditions: conditions that force revise, defer, or stop.
verification_receipts: one receipt per applicable gate with gate, result, evidence, and owner.
rollback: safe recovery path and ownership.
human_gates: decisions the agent may not make.
Return decision: build only when every gate applicable before implementation has a passing verification receipt. Record later-stage gates as pending; when their decision point arrives, a failed or missing applicable receipt blocks promotion and requires revise, defer, or stop.
Tools & MCP
Use repository search, tests, type/lint gates, preview deployments, and an approved browser connector when relevant. Do not enable connectors, spend money, publish, merge, or mutate external systems merely because a plan mentions them.
Quality bar
- No claim that AI makes execution free or removes operational ownership.
- No speculative expansion without a stated user outcome.
- Evidence and inference are distinguishable.
- Every high-risk step has a verifier and rollback.
- The plan can be handed to another operator without hidden context.
Example
Input: “Add a self-service agent marketplace with portable plugins.”
Good output: a revise decision that separates catalog, package, installer, evaluation, and promotion contracts; identifies marketplace approval and credential handling as human gates; and gives exact API, schema, preview, security, and rollback checks.
Built on SIP — Starlight Intelligence Protocol
Vertical: starlight-agent-skills · portable capability layer
1---2name: starlight-autoplan3description: Review a non-trivial implementation plan through product, engineering, design, and developer-experience lenses, then reconcile the findings into an evidence-gated execution plan. Use when a change crosses multiple systems, carries meaningful risk, or needs an explicit build/no-build decision.4---56# Starlight Autoplan78## Purpose910Turn a rough proposal into a bounded plan whose assumptions, risks, authority limits, and verification gates are visible before implementation begins.1112## When it fires1314- The user asks to review, harden, or stress-test a plan.15- The work crosses product, data, security, design, runtime, or deployment boundaries.16- A wrong decision would be expensive or difficult to reverse.1718Do not invoke the full review for a trivial, reversible edit unless the user asks for it.1920## Inputs2122- Desired user outcome and explicit non-goals.23- Current repository or system evidence.24- Time, cost, compatibility, privacy, and authority constraints.25- Known failure history and required verification commands.2627## Workflow28291. Restate the outcome, success criteria, non-goals, and unresolved assumptions.302. Select review depth proportional to reversibility and impact.313. Run four lenses: product value, engineering integrity, design quality, and developer/operator experience.324. Give every finding an evidence reference, confidence level, and consequence.335. Reconcile contradictions; never silently average incompatible recommendations.346. Produce the smallest coherent execution sequence with rollback and promotion gates.357. Stop for human direction before destructive, costly, public, or credential-bearing actions.3637When the same agent performs every lens, disclose that the review was sequential rather than independent.3839## Output contract4041Return:4243- `decision`: build, revise, defer, or stop.44- `scope`: user-visible outcome, non-goals, and affected surfaces.45- `assumptions`: verified, inferred, and unresolved items kept separate.46- `reviews`: findings from each lens with severity and evidence.47- `execution_plan`: ordered, independently verifiable steps.48- `verification`: automated, manual, security, accessibility, and deployment gates as applicable.49- `artifacts`: plan, decision, rollback, and verification records with stable references.50- `failure_conditions`: conditions that force revise, defer, or stop.51- `verification_receipts`: one receipt per applicable gate with `gate`, `result`, `evidence`, and `owner`.52- `rollback`: safe recovery path and ownership.53- `human_gates`: decisions the agent may not make.5455Return `decision: build` only when every gate applicable before implementation has a passing verification receipt. Record later-stage gates as pending; when their decision point arrives, a failed or missing applicable receipt blocks promotion and requires `revise`, `defer`, or `stop`.5657## Tools & MCP5859Use repository search, tests, type/lint gates, preview deployments, and an approved browser connector when relevant. Do not enable connectors, spend money, publish, merge, or mutate external systems merely because a plan mentions them.6061## Quality bar6263- No claim that AI makes execution free or removes operational ownership.64- No speculative expansion without a stated user outcome.65- Evidence and inference are distinguishable.66- Every high-risk step has a verifier and rollback.67- The plan can be handed to another operator without hidden context.6869## Example7071Input: “Add a self-service agent marketplace with portable plugins.”7273Good output: a revise decision that separates catalog, package, installer, evaluation, and promotion contracts; identifies marketplace approval and credential handling as human gates; and gives exact API, schema, preview, security, and rollback checks.7475---7677Built on SIP — Starlight Intelligence Protocol78Vertical: starlight-agent-skills · portable capability layer