Executive Summary
The cortex layer of AEGIS's subsidiarity router (Claim 57) is reached when a fault occurs that no existing signature at the reflex or autonomic layers recognizes. At that point, an Investigator component assembles a PII-free evidence pack describing the fault and hands it to a tiered Reasoner: a local model is tried first, escalating to a larger frontier model only on abstention or error. The reasoner proposes a candidate remedy.
What happens next is the part that matters. The proposed remedy is matched against a fixed, pre-existing remediation-authority registry to determine what blast-radius tier and execution scope apply to that type of action. The reasoning model's own output - including anything it says about how safe, how scoped, or how urgent its proposed action is - is never consulted to determine that classification. Authority is a registry lookup, not a model claim. The resulting signature is compiled and admitted into a shadow execution state, where it must earn graduation through confirmed successful outcomes exactly as described in Claim 54, with no shortcut for having been authored by a model rather than a human.
Problem Statement
Letting a language model author operational automation is attractive because it can cover fault modes no engineer anticipated - and dangerous for the same reason. A model that both diagnoses a novel fault and describes how much authority its own fix should have creates a single point where a hallucination, a subtly wrong self-assessment, or a deliberately crafted adversarial input (for instance, injected through log or error text the model reads as part of its evidence pack) could talk its way into broader execution scope than the actual risk warrants.
Why Existing Solutions Are Insufficient
- General-purpose LLM agent frameworks with tool access: Typically grant a tool call whatever scope the tool's own API allows, evaluated per invocation rather than gated by a separate authority registry independent of the model's request.
- Prompt-based safety instructions ("only take low-risk actions"): Ask the model to self-police its own scope in natural language - exactly the self-assessment surface this mechanism deliberately refuses to trust.
- Human-in-the-loop approval for every model-proposed action: Safe, but eliminates the latency and scale benefits of autonomous remediation for the very class of novel faults where a model's pattern-matching is most useful.
- Sandboxed/dry-run-only model outputs: Prevents real-world harm entirely by never executing model-proposed actions, which also means the fault never actually gets fixed without a human converting the suggestion into action.
Technical Architecture
Evidence Assembly
An Investigator component builds a PII-free evidence pack describing the unrecognized fault - relevant logs, metrics, and system state - stripped of information that would expose sensitive data to the reasoning model.
Tiered Reasoning
The evidence pack is submitted to a local model first. Only on abstention (the local model declines to propose a remedy) or error does the system escalate to a larger, more capable frontier model. The reasoner's job is to propose a candidate remediation action, not to determine its own authority.
Registry-Clamped Authority Determination
The proposed candidate remediation is matched against a static remediation-authority registry - the same registry structure that governs the blast-radius classification described in Claim 55 - to determine the blast-radius tier and execution scope that applies. This lookup is entirely independent of the model's proposal text; the model has no mechanism to inject or influence a wider classification than the registry entry for the matched action type actually specifies.
Signature Compilation and Graduation
The matched remedy, bound to its registry-determined classification, is compiled into a new signature and admitted into the same shadow execution state described in Claim 54. It must accumulate confirmed successful outcomes and cross the same Bayesian confidence threshold before it can graduate to autonomous execution - there is no accelerated or discounted graduation path for model-authored signatures.
Registry-Clamped Authority Model
| Step | Actor | Determines |
|---|---|---|
| 1. Evidence assembly | Investigator | What the reasoner sees (PII-free fault context) |
| 2. Candidate proposal | Tiered Reasoner (local, then frontier) | What action is proposed |
| 3. Authority determination | Static remediation-authority registry | Blast-radius tier and execution scope - never the model |
| 4. Signature compilation | System | Binds proposed action to registry-determined scope |
| 5. Graduation | Confirmed-outcome confidence gate (Claim 54) | Whether the signature ever earns autonomous execution |
Because the routing decision to reach cortex in the first place is itself governed by the subsidiarity router of Claim 57, and the resulting signature is subject to the same blast-radius constitution as any other signature under Claim 55, this mechanism does not introduce a separate, weaker authority track for model-authored remediations - it is the same authority system, with the model simply supplying the candidate action text rather than a human engineer.
Prior Art Differentiation
| System | Model Proposes Action? | Model Determines Its Own Scope? | Independent Registry Clamp? |
|---|---|---|---|
| General LLM agent + tool-call frameworks | Yes | Often, via tool selection | Typically no |
| Prompt-based self-policing agents | Yes | Yes (natural-language self-assessment) | No |
| Human-approval-gated model suggestions | Yes | No (human decides) | N/A - no autonomous execution |
| JIL Sovereign AEGIS Cortex Layer | Yes | No, never | Yes, always |