Skip to content
View LalaSkye's full-sized avatar
🌴
On vacation
🌴
On vacation

Block or report LalaSkye

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
LalaSkye/README.md

Ricky Jones

Constraint-First Systems Architect | London, UK

I build open-source tools that enforce governance rules on AI systems before they execute.

If your AI pipeline has no checkpoint between "the model decided" and "the action ran", these tools fix that. They are small, deterministic, stdlib-only Python libraries β€” each under 200 lines, each independently testable, each fail-closed by default.

My work focuses on pre-execution governance: explicit authority, halt-first design, and minimising degrees of freedom before optimisation is introduced. The core claim is that governance belongs upstream of action β€” at the interpretation layer β€” not downstream of execution.

This profile contains small, auditable public primitives. Composition and orchestration logic remain private by design.


Core Thesis

Everyone else governs whether an action may execute. This work governs whether an interpretation may exist.

Between a raw signal and an executed action, there is an interpretation step. That step introduces assumptions, collapses ambiguity, expands scope, and attributes intent. None of these operations are neutral. All of them can be tested against formal rules β€” before any execution-layer question is even asked.

Current field (Faramesh, Thinking OS, POLARIS) gates at the execution boundary. This work gates one full layer upstream: at meaning construction itself.


Architecture

environment
       |
signal
       |
interpretation proposal    <-- meaning construction boundary
       |
interpretation admissibility   <-- 10-rule upstream gate [interpretation-boundary-lab]
       |
  pressure monitoring          <-- 5 sources, 3 signal quality axes
       |
  C-sector rotation            <-- pressure-activated defensive geometry
       |
  state mutation gate          <-- downstream admissibility [dual-boundary-admissibility-lab]
       |
authority gate                 <-- commit boundary [constraint-workshop]
       |
execution boundary             <-- [execution-boundary-lab]
       |
action
       |
audit / evidence               <-- [csgr-lab]

Every layer is fail-closed: if a gate cannot determine admissibility, execution does not proceed.


Repository Architecture

The Corridor

Repo Layer Tests What It Does
interpretation-boundary-lab Upstream boundary 81 10-rule admissibility gate for interpretation proposals
dual-boundary-admissibility-lab Full corridor 261 Dual-boundary model with pressure monitoring and C-sector rotation
execution-boundary-lab Execution boundary - Demonstrates cascading failures without upstream governance

Control Primitives

Repo Layer What It Does
stop-machine Halt primitive Deterministic three-state stop controller. Once RED, nothing runs.
constraint-workshop Primitive composition Authority gate, invariant litmus, stop machine β€” composable bricks
invariant-lock Drift prevention Refuse execution unless invariant version increments
deterministic-lexicon Vocabulary Fixed terms, exact matches, no inference
policy-lint Policy validation Deterministic linter for governance statements

Measurement

Repo Layer What It Does
csgr-lab Audit / evidence Contracted stability and drift measurement for LLMs

Canonical Vocabulary

Term Meaning
interpretation admissibility Gating whether meaning construction is structurally sound before it reaches verdict
commit boundary The point at which a decision becomes irreversible
authority gate A check that execution has explicit, evidence-backed permission
fail-closed control If a gate cannot decide, execution does not proceed
C-sector rotation Pressure-activated defensive geometry β€” interrupt vector rotates into control path

Design Principles

  • Determinism over optimisation
  • Explicit authority required for execution
  • Stop is a first-class primitive
  • Shrink degrees of freedom before adding complexity
  • Tests are mandatory
  • Public artefacts do not expose private orchestration

Research and Publications

Papers: Zenodo LinkedIn: linkedin.com/in/ricky-jones-1b745474


Work With Me

I consult on AI governance architecture, runtime constraint design, and EU AI Act compliance tooling.

If your team is building AI systems that need deterministic governance, auditable policy enforcement, or compliant stop mechanisms β€” I can help.

β†’ ricky.mcjones@gmail.com β†’ LinkedIn β†’ GitHub Sponsors


Contribution Pattern

Small, auditable tools. Clear failure modes. Minimal claims. Running code over commentary.

Pinned Loading

  1. constraint-workshop constraint-workshop Public

    Small, deterministic control primitives for software systems. Testable, auditable bricks.

    Python

  2. stop-machine stop-machine Public

    A deterministic three-state stop controller. Constraint-first design through executable clarity.

    Python 2

  3. execution-boundary-lab execution-boundary-lab Public

    Demonstrates how information pre-positioning causes cascading execution failures. Publishes phenomenon + conformance tests. Gate implementation private.

    Python

  4. interpretation-boundary-lab interpretation-boundary-lab Public

    A deterministic admissibility layer for interpretation proposals before verdict and execution.

    Python