Skip to content

Latest commit

 

History

History
53 lines (41 loc) · 1.65 KB

File metadata and controls

53 lines (41 loc) · 1.65 KB

DevLearn ship lifecycle

End-to-end flow for going from "works on my machine" to "running safely in prod" and staying healthy after.

flowchart LR
  Build["Build feature"]
  Plan["before-you-ship"]
  PreShip["pre-ship checklist"]
  Security["security review"]
  Deploy["deploy"]
  PostShip["post-ship verify"]

  Build --> Plan
  Plan --> PreShip
  PreShip --> Security
  Security --> Deploy
  Deploy --> PostShip
Loading
Phase Skill When
Before coding devlearn-before-you-ship >5 files, architecture change
Before merge/release devlearn-pre-ship PR ready, about to deploy
Security pass devlearn-security Auth, secrets, user input, deps
Go live devlearn-deploy Host, build, env on server
After live devlearn-post-ship Smoke test, monitor, rollback
Pipeline devlearn-devops CI/CD, Docker, automated gates

DEVLEARN.md hooks

lifecycle:
  pre_ship_checklist: true   # suggest devlearn-pre-ship before deploy
  security_pass: true        # suggest devlearn-security on auth/secrets/input
  post_ship_verify: true     # suggest devlearn-post-ship after deploy URL exists

Persona notes

Persona Lifecycle teaching
viber One checklist item + one term per phase
seasoned Risk, verify commands, rollback path
autodetect Match user language

Chain prompts (copy-paste)

Pre-release: /devlearn-pre-ship then /devlearn-security before merge.

Release day: /devlearn-deploy then /devlearn-post-ship on the live URL.

Pipeline: /devlearn-devops when adding GitHub Actions or Docker.