Complex Systems Analysis Style Guide
Last updated: February 19, 2026 Scope: SCBE-AETHERMOORE math, governance, and cross-layer claims
Purpose
This guide defines how to analyze complex SCBE subsystems without drift, hype, or formula mixing. It is code-first and evidence-first.
Current Math Comparison
Formula Families Found in Repo
-
H_score(d, pd) = 1 / (1 + d + 2*pd)
Source:packages/kernel/src/harmonicScaling.ts
Behavior: bounded score in(0,1], ranking-preserving in moderate ranges. -
H_wall_exp(d) = exp(d^2)
Source:harmonic_scaling_law.py
Behavior: super-exponential wall with identityH(0)=1. -
H_wall_R(d, R) = R^(d^2)
Source:src/symphonic_cipher/core/harmonic_scaling_law.py
Behavior: super-exponential wall with tunable baseR > 1. -
H_patrol(d, R) = R * pi^(phi*d)
Source: prior templates and skill constants
Behavior: exponential patrol profile with non-identity baselineH(0)=R.
Sensitivity Comparison (Wall vs Patrol)
For relative sensitivity, use derivatives of log(H):
d/d d log(H_wall_R) = 2*d*ln(R)d/d d log(H_patrol) = phi*ln(pi)(constant)
Equal-sensitivity crossover:
d_cross = phi*ln(pi) / (2*ln(R))- If
R=e:d_cross ~= 0.9261 - If
R=1.5:d_cross ~= 2.2841
Interpretation:
- Below
d_cross, patrol is more sensitive. - Above
d_cross, wall is more sensitive.
Opinion (Technical)
- The system should not force one universal harmonic formula.
- The formulas are different tools for different regimes:
- Wall formulas (
exp(d^2)orR^(d^2)) fit enforcement and hard escalation. - Patrol formula (
R*pi^(phi*d)) fits drift monitoring and early warning. - Bounded score formula fits stable ranking and decision plumbing.
- Wall formulas (
- Claims must always declare which formula family and regime are being used.
Analysis Protocol (Codex)
- Read executable surface first.
- Prefer implementation files over narrative docs.
- Extract the math spine.
- Write each formula, domain, codomain, and identity element.
- Run behavior checks.
- Identity at origin.
- Monotonicity.
- Boundedness.
- Asymptotic growth class.
- Relative sensitivity (
d/dx log(H)).
- Compare against baselines.
- Same dataset, same seeds, same harness.
- Record AUC/F1/latency with confidence intervals.
- Classify claim scope.
security primitive,governance score,telemetry feature, ornarrative.
- Publish decision with evidence.
- Status tag + artifact path + limitation.
Red Flags
- Formula appears in docs but not code.
- Same symbol
Hused for different formulas without regime tags. - Universal words (
always,impossible) without proof scope. - Metrics reported without dataset and seed.
- Layer numbering or canonical definitions changing between docs.
Required Output Contract for Reviews
Every substantial review should end with:
StateVector: deterministic state summary.DecisionRecord: action, reason, confidence, timestamp.
And tri-fold YAML:
builddocumentroute
Regime Tags (Required in Docs)
[WALL_ENFORCEMENT][PATROL_MONITORING][BOUNDED_SCORING][EXPERIMENTAL]
Quick Template
Use this block for each major formula claim:
Formula: <expression>
Regime: [WALL_ENFORCEMENT|PATROL_MONITORING|BOUNDED_SCORING|EXPERIMENTAL]
Identity: <value at origin>
Sensitivity: <d/dx log(H)>
Evidence: <artifact path>
Status: [PROVEN|DISPROVEN|CODE_EXISTS_UNTESTED|REPORTED_PENDING_REPRO]
Limitation: <explicit scope boundary>