1 export const principle_01 = {
2 rule: "We write tests.",
3 // Not a coverage number on a dashboard.
4 // Tests that catch the bug your customer
5 // is about to file.
6 ship: true,
7 }
1 # 02. We document decisions.
2
3 Every meaningful choice has a one-page RFC
4 with the rejected paths preserved.
5
6 Your future self will thank us.
1 # 03. We own production.
2 pager:
3 rotation: included
4 paid_for_by: tags
5 line_item: false
6 # If we built it, we get the page.
1 #!/usr/bin/env bash
2 # 04. We ship on Fridays.
3 git push origin main
4 deploy --watch --duration "weekend"
5 # Anything that can't survive a Friday deploy
6 # isn't ready to deploy on Tuesday either.
1 # 05. Async by default.
2
3 Written context. Recorded demos. Fewer meetings.
4
5 Your engineers stay in flow.
6 Ours do too.
1 # 06. Deletion is a feature.
2 - legacy_payments_v1.ts
3 - vendored_jquery_dialog.js
4 - meeting_required.md
5 + runbook_v2.md
6 # Less code, less surface area, less to explain.