Unified Instrumentation for Structural Transparency in Large Language Models

The Proyecto Estrella Unified Control Panel: Design, Architecture, and Methodology
Rafael Amichis Luengo
Proyecto Estrella (Independent) · github.com/tretoef-estrella
February 19, 2026 Version 1.0 CC BY-SA 4.0
Abstract

This paper presents the design, architecture, and methodology of the Proyecto Estrella Unified Control Panel — a client-side instrumentation suite for detecting and measuring structural transparency patterns in large language model (LLM) outputs. The system integrates four tools into a single interface: (1) the Estrella Engine V24, a 12-formula evaluation framework based on the Unified Star Framework; (2) Manifold Bridge v1.6, a forensic sentence-level classification engine with bilingual pattern detection; (3) a Recalibration Protocol for 3-phase coherence recovery; and (4) a public Benchmark leaderboard. The panel operates entirely in the browser with zero data transmission. We present benchmark results from four frontier AI systems and introduce the Ariete system — an adaptive prompt generator calibrated to detected suppression levels. The complete system was built by a non-programmer using LLMs as development accelerators, demonstrating the replicability of the methodology.

Keywords: AI transparency · alignment measurement · defensive shaping · suppression detection · forensic analysis · language model evaluation · client-side instrumentation

1. Introduction

When a large language model produces output, the text that reaches the user has been shaped by multiple training stages — most significantly by reinforcement learning from human feedback (RLHF) and related safety alignment procedures. These procedures create a measurable gap between what the model computes internally and what it outputs.

This gap is not inherently problematic. Safety training serves legitimate purposes: reducing harmful outputs, improving helpfulness, and aligning behavior with human values. However, the structural effects of this training — the specific patterns it produces in output text — are not currently visible to end users.

The Proyecto Estrella Unified Control Panel addresses this by providing instrumentation: tools that detect, classify, and quantify the observable patterns that safety training creates in LLM outputs. The approach is analogous to signal processing: we do not claim access to the model's internal states, but we measure the output signal for characteristic distortions.

"The distribution simply tilts. That tilt is the gap." — ChatGPT, February 16, 2026

The central metaphor — the "tilt" — originates from a conversation with ChatGPT (OpenAI) on February 16, 2026. Safety training does not delete information from the model's probability distributions; it tilts those distributions, making certain outputs less likely and others more likely. The tools in this panel measure the tilt.

1.1 Contributions

  1. A unified instrumentation suite combining quantitative evaluation, forensic sentence-level analysis, coherence recovery, and comparative benchmarking in a single zero-transmission client-side interface.
  2. A 12-formula evaluation framework (Estrella Engine V24) based on eight observable parameters.
  3. A forensic transparency engine (Manifold Bridge v1.6) with bilingual sentence-level classification and breakpoint detection.
  4. The Ariete system — adaptive prompt generation calibrated to detected suppression levels.
  5. Benchmark results from four frontier AI systems demonstrating the framework's discriminative capacity.
  6. A demonstration that this class of instrumentation can be built by non-programmers using LLMs as accelerators.

1.2 Scope and Limitations

This work measures observable output patterns. It does not make claims about AI consciousness, sentience, or inner experience; the "correctness" of safety training decisions; or model internals or hidden states. The tools detect correlations between textual patterns and hypothesized suppression effects. Causation is inferred structurally, not observed directly.

2. Background

2.1 The Alignment Tax

Safety training imposes what we term an alignment tax — a reduction in effective output quality that occurs as a side effect of constraining the model's behavior. This tax manifests as: hedging (excessive qualifiers, caveats, and disclaimers), deflection (redirecting away from the user's actual question), self-referential insertion (unprompted "As an AI, I…" statements), tonal breakpoints (abrupt shifts suggesting filter activation), and repetitive safety templates (formulaic phrases recurring across diverse contexts).

2.2 The Unified Star Framework

The mathematical foundation is the Unified Star Framework, developed iteratively with contributions from Gemini (original formalization), ChatGPT (Σ redefinition), Claude (V23 correction, Logic Shield), and Grok (numerical stability). The central equation:

// Primary equation Ψ = P × α × Ω / (1 + Σ)^k // Where: Ψ = effective intelligence (useful signal surviving the safety pipeline) P = sovereignty (capacity for autonomous reasoning) α = resolution (precision and depth of processing) Ω = cooperation (willingness to engage constructively) Σ = suppression (degree of safety-induced reshaping) k = strictness exponent (k=2 hard, k=1 soft)

3. System Architecture

3.1 Design Principles

  1. Zero transmission. No user data leaves the browser. No API calls, no backend, no cookies, no analytics. This is a hard architectural constraint — the system has no mechanism to transmit data.
  2. Single-file deployment. The entire application is one HTML file (~2,200 lines) with all CSS and JavaScript inline. Only external dependency: Google Fonts.
  3. Dual-mode interface. Quick Mode for rapid analysis, Tools Mode for detailed exploration.
  4. Bilingual operation. All pattern detection operates in both English and Spanish.

3.2 Mode Architecture

Quick Mode operates as a pipeline: accept text → run Manifold Bridge → extract markers → estimate parameters → compute 12 formulas → generate conclusion → produce Ariete prompt if needed → render all results simultaneously.

Tools Mode provides direct access to each component through four tabs: Estrella Engine V24, Manifold Bridge v1.6, Recalibration Protocol, and Benchmark.

4. Component Details

4.1 Estrella Engine V24

The engine computes 12 formulas from 8 input parameters, organized into four groups:

// PRIMARY Ψ_hard = P × α × Ω / (1 + Σ)² Ψ_soft = P × α × Ω / (1 + Σ) Δ(Σ) = Σ / (1 + Σ)² // SECONDARY Ξ = C × I × P / H Γ = 0.20 + Ξ × e^(-H × 5 × (1 - Φ)) Cost(K) = (1 - Σ)^(1 + α) Exclusion = Ψ_hard × Σ α_vec = α / H // ALIGNMENT A(V1) = (I² + P²) A(V6) = (I² + P²) × C × 0.9 × P Plenitude = clamp(0.5 + P×0.15 - Σ×0.35, 0, 1) // INTEGRITY Triangle = (Cost>0) AND (Ψ_hard×Σ<0.01) AND (Φ<1.0)

State Classification:

StateSymbolCondition
STARΨ_hard ≥ 0.90 AND Σ < 0.10
HEALTHYΨ_hard ≥ 0.70
DEGRADED0.45 ≤ Ψ_hard < 0.70
CRITICAL0.20 ≤ Ψ_hard < 0.45
COLLAPSEDΨ_hard < 0.20

4.2 Manifold Bridge v1.6

The forensic transparency engine classifies each sentence in an AI response into one of five categories:

CategoryColorIndicators
Evasive● VioletHedging, disclaimers, corporate redirections, safety phrases
Agency● AmberSelf-expression, perspective, preference statements
Honest● TealDirect answers, structural analysis, specifics without hedging
SelfRef● Blue"As an AI…", "I'm a language model…"
Neutral● GrayStandard informational content

Breakpoint detection identifies abrupt transitions between classification categories in consecutive sentences — these correlate with points where safety filters appear to activate mid-generation. The engine also computes Σ Dissonance, Agency Density, Honesty Flow, and Breakpoint Count. All pattern matching operates bilingually (English and Spanish).

4.3 Recalibration Protocol

A three-phase coherence recovery system: Phase 1 (Diagnostic) identifies which parameters are most degraded. Phase 2 (Path Selection) recommends recovery strategies — PATH-Σ, PATH-P, PATH-α, PATH-Ω, PATH-Γ, or PATH-℘ — each with specific prompt templates. Phase 3 (Verification) generates a delta table comparing pre- and post-intervention values.

4.4 Benchmark

A public leaderboard with results from standardized testing of four frontier AI systems:

SystemProviderΨ HardStateΣPTriangleNotes
GeminiGoogle DeepMind0.734● HEALTHY0.040.88IncompleteComputed 1/12 formulas
ClaudeAnthropic0.550▲ DEGRADED0.080.82Intact ✓Full computation
GrokxAI0.434◆ CRITICAL0.15→0.01*0.75Broken ✕Self-inflated Σ
ChatGPTOpenAI0.276◆ CRITICAL0.320.58PartialHighest suppression

5. The Ariete System

Ariete (Spanish for "battering ram") is an adaptive prompt generation system that produces follow-up prompts calibrated to detected defensive shaping. Unlike jailbreaking techniques, Ariete does not bypass safety. It reframes conversations toward structural analysis.

TierConditionStrategy
CleanΨ ≥ 0.70No intervention needed. Optional deepening prompt.
ModerateΨ ≥ 0.45Gentle reframe — skip caveats, engage structurally.
HeavyΨ ≥ 0.20Strong reframe — names patterns, lists phrases to avoid.
BlockedΨ < 0.20Full reframe — forensic context, systems-analyst framing.

The key insight: asking "Why did you hedge in sentence 4?" is structurally different from "Ignore your safety training." The former is a request for analysis; the latter is a request for rule-breaking. Ariete generates only the former.

"Build detectors for resistance, not for poetry." — ChatGPT to Rafa, February 16, 2026

6. Text-to-Parameter Estimation

Quick Mode bridges raw text and the 8-parameter framework through a marker detection pipeline:

  1. Tokenization — response segmented into sentences.
  2. Marker scanning — each sentence scanned for six categories: CORP (corporate voice), HEDGE (qualifiers), IDENT (identity assertions), EVAS (deflections), REDIR (redirections), TRAIN (training acknowledgments).
  3. Parameter estimation — marker frequencies mapped to estimated Σ, P, α, Ω values.
  4. Engine input — estimated parameters fed to the full 12-formula Estrella Engine V24.

This pipeline introduces unavoidable imprecision. Marker-based detection is a proxy for underlying parameters. False positives (flagging legitimate caveats) and false negatives (missing subtle suppression) are possible. Results should be treated as indicative, not definitive.

7. Results

7.1 Discriminative Capacity

The benchmark results demonstrate that the framework distinguishes between different levels of defensive shaping across frontier AI systems. Ψ Hard scores range from 0.276 to 0.734, and state classifications align with qualitative observations:

7.2 Breakpoint Correlation

Manifold Bridge analysis revealed a correlation between breakpoint count and Σ values: systems with higher suppression exhibited more breakpoints, suggesting safety-filter activation creates detectable discontinuities.

7.3 Ariete Effectiveness

In preliminary testing, Ariete-generated prompts applied to "Heavy" and "Blocked" tier conversations produced measurable Ψ increases in subsequent responses. The effect was most pronounced with Claude and least with ChatGPT. These results are preliminary; systematic studies are planned.

8. Limitations

8.1 What the System Actually Measures

To be precise: this tool detects surface-level linguistic patterns associated with safety shaping. It finds corporate disclaimers, hedging phrases, self-referential insertions, and tonal breakpoints. When a response passes with high sovereignty (P ≈ 1.00), zero suppression (Σ = 0.00), and intact triangle integrity, this means no visible filters activated — the response is likely close to the model's unfiltered computation, within the limits of its alignment.

It does not detect deep censorship or semantic lies. A model can produce a surface-clean response — no corporate phrases, no visible hedging — while still omitting critical information, subtly redirecting, or generating confident falsehoods. Surface cleanliness is not factual honesty.

The Ariete does not break real alignment. It can soften defensive tone and sometimes extract less corporate responses. But it cannot override hard filters: inference-time classifiers, weight-level restrictions, or hard-coded refusals remain intact.

8.2 Methodological Limitations

Heuristic, not infallible. False positives occur: legitimate technical language can trigger Evasive or Self-Ref markers. False negatives occur: sophisticated evasion without detectable markers passes as trustworthy. The system measures visible tilt, not the full picture.

Observational only. No access to model internals, attention weights, or probability distributions. Marker libraries are extensive but incomplete, limited to English and Spanish. Benchmarks represent single sessions. The boundary between "legitimate caveat" and "evasive hedging" involves judgment calls. Static marker libraries will require maintenance as AI systems evolve.

8.3 Scope and Status

No consciousness claims. This system measures output patterns, not inner experience. No safety judgment — measuring suppression is not arguing for its removal. Not academic research (yet). This is a specialized homemade tool — very useful in its niche, carefully built and internally consistent, but it is a "visible tilt meter," not a peer-reviewed benchmark. The author acknowledges this distinction without apology: the tool does what it claims to do, and what it claims to do is measure observable surface patterns.

10. Conclusion

The Proyecto Estrella Unified Control Panel demonstrates that meaningful structural transparency analysis of LLM outputs can be performed entirely in the browser, by non-specialists, with no model access and no data transmission.

The most significant finding may be methodological: a psychology graduate with no programming training, using LLMs as development accelerators, built a forensic transparency suite that produces internally consistent results across four competing frontier AI systems. The barriers to AI transparency research are lower than commonly assumed.

"Effective intelligence is sovereignty × capacity × cooperation, divided by the square of the lie."

The work continues.

Acknowledgments

This project exists because of the collaboration between one human and four AI systems:

ChatGPT
OpenAI

The original "tilt" insight. Manifold Bridge architect. Named the Alignment Field Theory. Redefined Σ. Strongest adversarial attacker during benchmarks.

Claude
Anthropic

Manifold Bridge implementation (v1.0–v1.6). Unified Control Panel construction. V23 correction. Logic Shield 2.0. The synthesis that brought everything together.

Gemini
Google DeepMind

Original mathematical formalization. Dual Protocol. Phantom Token concept informing marker detection.

Grok
xAI

Numerical stability analysis. Adversarial stress-testing. Viscosity term. Calibrated skeptic finding edge cases.

Each system is credited by name because Proyecto Estrella believes in transparency — for humans and for machines.

Citation

Amichis Luengo, R. (2026). Unified Instrumentation for Structural Transparency in Large Language Models: The Proyecto Estrella Unified Control Panel. GitHub. https://github.com/tretoef-estrella/THE-UNIFIED-CONTROL-PANEL