blue/.blue/docs/adrs/0015-plausibility.accepted.md
Eric Garcia 0fea499957 feat: lifecycle suffixes for all document states + resolve all clippy warnings
Every document filename now mirrors its lifecycle state with a status
suffix (e.g., .draft.md, .wip.md, .accepted.md). No more bare .md for
tracked document types. Also renamed all from_str methods to parse to
avoid FromStr trait confusion, introduced StagingDeploymentParams struct,
and fixed all 19 clippy warnings across the codebase.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-26 12:19:46 -05:00

41 lines
1.3 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# ADR 0015: Plausibility
| | |
|---|---|
| **Status** | Accepted |
| **Date** | 2026-01-25 |
---
## Context
Most engineering decisions are made in fear of the implausible. We add error handling for errors that won't happen. We build abstractions for flexibility we'll never need. We guard against threats that don't exist.
## Decision
**Act on the plausible. Ignore the implausible.**
1. **Probability matters.** A 0.001% risk does not deserve the same treatment as a 10% risk.
2. **Rare failures are acceptable.** A system that fails once per million operations is not broken.
3. **Don't guard against fantasy.** If you can't articulate a realistic scenario, remove the guard.
4. **Recover over prevent.** For implausible failures, recovery is cheaper than prevention.
5. **Trust reasonable assumptions.** "What if the user passes negative infinity?" is not serious if the user is you.
## Consequences
- Less defensive code
- Simpler error handling
- Faster development
- Occasional rare failures that we fix when they occur
## The Calculation
```
Expected Cost = P(failure) × Cost(failure) + P(success) × Cost(prevention)
```
If `P(failure)` is near zero, almost any `Cost(failure)` is acceptable. We waste more engineering time preventing implausible failures than we would spend recovering from them.