01 Mentalism
Everything is mind first; every manifestation derives from one idea.
The domain model precedes the code, and there is a single source of truth.
Duplicated knowledge is the same idea forked and diverging.
You will see it fail as drift, config skew, and two places
to change one thing.
02 Correspondence
As above, so below; every scale mirrors every other.
The master law, and its practice is fractal design: the function is the
architecture in miniature, the commit history is the roadmap in miniature,
the team's process is the product in miniature.
You will see it fail as a clean architecture full of messy
functions, or a service-per-team system sharing one database. When small and
large disagree, one level is lying, and it breaks at the seam.
03 Vibration
Nothing rests; truth is a thing you converge on, never hold.
Every piece of data carries a freshness regime, and that regime is part of
its definition rather than an afterthought. Cache first, correct after. A
response declares its own cache policy, because a document served without
one is cached by guesswork and lies for the rest of the day.
You will see it fail as a value held as final that was only
ever converged on — and just as often the inverse, work that cannot change
within a deployment being recomputed on every single request.
04 Polarity
Opposites are extremes of one axis; they reconcile by balance, not conquest.
Every applied state has its opposite reachable. Migrations that are additive
only and whose rollback is real; kill switches at two scales; and an
acceptance test for the contract itself — enable it, use it, disable it,
diff it, zero trace. In the code this law is written under another name, the
reversibility contract, and it is the only thing ever ranked immutable.
You will see it fail as one pole crowning itself; as two
poles collapsed onto one verb, so that reading performs a write; and as
operations that cannot un-swing, the batch that half-applies because the
schema change was never transactional.
05 Rhythm
Everything flows out and in; the swing that goes this far out comes back.
A cadence that widens rather than repeats — an interval grown per idle
attempt, floored so the operator's own loop stays fast, capped so it cannot
run away. The give-up clause is part of the cadence, not bolted on. A
scheduled sweep that force-fails whatever is still running past the cutoff
is this law's compensation clause written as a job.
You will see it fail as a swing with no return — a schedule
with no watchdog, work left running because nothing was appointed to notice
— or beats out of order, the row written and then validated.
06 Cause & Effect
Every effect traceable, every cause reversible; the mechanism softens, the skeleton hardens.
Lineage is what makes form — remove it and the same points under the same
rules produce dust instead of a figure. Provenance is carried deliberately
rather than inferred. Promotion happens in place, so nothing a visitor did
has to be migrated when they become an account.
You will see it fail as state without provenance — all the
right pieces and no structure — or a second identity minted at the moment of
conversion, which is the lineage broken at exactly the point it was built to
survive. The evidentiary clause belongs to this law: verified against
operational data, not vibes.
07 Gender
Dualities produce; nothing in the system creates alone.
Every sync is a generative pair — push and pull, producer and consumer,
read model and write model. The engineering half names the design half
before it writes a line of its own. A substitution stays visible as a
substitution rather than decaying into drift.
You will see it fail as one half working from a description
of the other half instead of from the other half — rebuilding from the
outside what it could have ported from the inside.