← knowledge.oriz.in

Automate everything — never deliver a runbook

rule automationdeploymenthard-ruleuser-identity

Hard rule: automate, do not document

When the user asks to set up, deploy, host, configure, provision, or install anything, the deliverable is a script (or a small set of scripts) that executes end-to-end. NEVER a numbered list of manual steps.

What this rules out

What this rules in

The only manual step allowed

ONE interactive credential prompt at the top of the script (e.g. az login, gh auth login, bw unlock). Everything after that must be non-interactive.

When asking permission is OK

multi-choice question prompt to lock decisions (compute size, domain, region) — yes. multi-choice question prompt "shall I run the next step?" — no. Lock all decisions up front, then execute the whole thing.

Cross-refs