§1Introduction & Vision
Modern AI systems excel at language, code generation, and analysis within predefined boundaries. What does not yet exist is a system capable of reasoning from an abstract human problem statement through to a physically buildable, commercially patentable, ethically validated engineered solution — autonomously delegating specialized cognitive roles the way a world-class engineering organization would.
HIIE is that system. It is not a chatbot or a code assistant in isolation. It is a complete innovation pipeline: taking the rawest form of human intent and, through recursive reasoning, multi-agent collaboration, and physics-grounded validation, producing outputs that can enter the real world.
Alice and Bob — The HIIE Interaction Model
In the classical cryptographic and distributed systems tradition, Alice and Bob are the canonical principals in any secure, trust-based protocol. HIIE adopts this framing deliberately. Alice is the primary user and directing intelligence — the human who submits intent, approves requirements, and holds final authority over all outputs. Bob represents any secondary principal, collaborator, counterparty, or reviewer interacting with Alice's outputs downstream. In practice, Watson Lewis-Rodriguez occupies the Alice role as founder and director; clients, partners, or contract reviewers occupy the Bob role.
This framing is not cosmetic. It reflects HIIE's architectural assumption that every system must have a verifiable, non-repudiable human principal chain. Alice's sign-off at every gate is cryptographically analogous to a digital signature — it cannot be forged, delegated to an agent, or bypassed by any instruction.
Guiding Principles
- »Ethics above all engineering outputs — no design exits without ethical validation
- »Human oversight is non-negotiable — HIIE is directed intelligence, never autonomous in consequence
- »Agent control is exception-based — agents run unless stopped; Alice holds veto and kill-switch authority, not a spawn-approval queue
- »Physical feasibility is a hard constraint — theoretical elegance without manufacturability is rejected
- »Environmental net-positivity is a default design target, not an afterthought
- »Full transparency in every reasoning step — the system explains every recommendation
- »AI slop prevention is an architectural requirement — every output is validated, recursive, and human-perspective-tested before delivery
§2System Architecture Overview
HIIE operates as a layered pipeline. Each layer is a discrete processing stage that feeds both downward into execution and upward into refinement. The architecture is deliberately non-linear — outputs at any stage can trigger re-evaluation upstream.
- HUMAN INTENT INPUT — ALICE
- DIALOGUE ENGINEclarify, learn, validate goals
- REQUIREMENTS SYNTHESIZERstructured spec generation
- AGENT DELEGATION LAYERassign project roles
- HCT ECONOMYpayroll, dynamic pricing, treasury audit
- HARDWARE · CHEMISTRY · CODE · PATENT · MFGparallel execution
- ANTI-SLOP VALIDATION LAYERSection 5
- SIMULATION + VALIDATION LAYER
- ETHICS BOARD REVIEW
- OUTPUT ENGINEspecs, code, BOM, patents, reports
- HUMAN REVIEW + SIGN-OFF (ALICE)
- PHYSICAL REALITY
Every completed project feeds back as a training signal — including into the persistent fine-tuning layer (§8.9), which runs MLX-LM on GPU during post-project idle cycles and benchmarks concurrent ANE training as a research path — improving HIIE's domain accuracy and real-world feasibility calibration over time.
§3Mac Mini M4 Pro — Hardware Specification
HIIE Phase 1 runs on a single Mac Mini M4 Pro node, hosted at Registered Agentics facilities. Apple Silicon's unified memory architecture eliminates the PCIe bandwidth bottleneck present in traditional CPU/GPU/RAM split configurations.
Target Configuration
| Component | Specification |
|---|---|
| Model | Apple Mac Mini M4 Pro |
| CPU | 12-core M4 Pro (8 Performance + 4 Efficiency) |
| GPU | 20-core M4 Pro GPU |
| Neural Engine | 16-core Apple Neural Engine — 38 TOPS (inference acceleration; experimental fine-tuning via private API under benchmarking, §8.9) |
| Unified RAM | 64GB (recommended) |
| Primary SSD | 256GB — OS, models, hot cache, active sessions, LoRA adapter store |
| Secondary HDD | 5TB external — vector DB, archive, datasets, versioned adapter archive |
| Network | 10GbE ethernet |
| Power Draw | 30–80W under full inference load |
Storage Architecture — SSD-Constrained Design
Given the 256GB SSD versus 5TB HDD constraint, HIIE implements a streaming-first data architecture. The core principle is:
Internet content, patent databases, research papers, and GitHub repositories are analyzed entirely in RAM and never written to disk. Only extracted structured embeddings — typically < 0.1% of the original corpus size — are persisted to ChromaDB on HDD. This means:
Storage Tier Lifecycle. HIIE enforces a two-tier storage lifecycle with explicit, directional data flow:
- »SSD — Working Tier: All data required for active inference lives here: model weights, hot vector shards for active projects, current LoRA adapters, active project outputs, and agent state checkpoints. The inference pipeline reads exclusively from SSD during active operation.
- »HDD — Archive Tier: Completed project directories, the full ChromaDB collection suite (excluding hot shards on SSD), versioned adapter history, and curated datasets are committed to HDD at project close. HDD is not read during active inference — only at project initialization (adapter loading) and on-demand archive retrieval.
Per-Project SSD Budget. Each active project consumes approximately 30 GB of SSD working space: hot vector shards, intermediate outputs, agent state, and session logs. Given the 60 GB SSD allocation for hot cache and active outputs (§3.3), two concurrent active projects is the practical maximum before the SSD working budget is exhausted.
Memory Allocation Strategy
| Resource | Allocated To | Notes |
|---|---|---|
| RAM 40GB | Active model inference | Qwen3.5-35B-A3B MoE (Q4, full weights ∼17 GB loaded); 6–8 GB active inference footprint per forward pass; remaining pool headroom supports multi-agent sessions |
| RAM 12GB | Multi-agent session state | All active project agents held in memory |
| RAM 8GB | Live internet streaming buffer | Analyzed in RAM, never written to disk |
| RAM 4GB | System + Coolify overhead | macOS + Docker + containerization |
| RAM <2GB | Fine-tuning research buffer | Experimental ANE private API training state; MLX-LM fine-tuning uses full GPU pool during break state (inference inactive) |
| SSD 150GB | Model weights | Qwen3.5-35B-A3B MoE (Q4 primary orchestrator); Qwen3.5-9B specialist base models |
| SSD 60GB | Hot cache + active outputs | Current project files, active vector shards |
| SSD <1GB | Active LoRA adapter store | All specialist adapters loaded per agent role |
| SSD 46GB | System + services | macOS + Docker + Coolify |
| HDD 2TB | ChromaDB vector database | Persistent embeddings + training data partition |
| HDD 2TB | Archive + curated datasets | Completed projects, training data, adapter archive |
| HDD 1TB | Generated files + overflow | CAD outputs, large specs, versioned adapter history |
CPU / GPU Task Assignment
| Component | Assigned Tasks |
|---|---|
| GPU (20-core) | LLM inference, embeddings, parallel domain processing; MLX-LM LoRA fine-tuning during post-project break state (§8.9) |
| ANE (16-core) | Inference acceleration; experimental LoRA fine-tuning via private API (benchmarking, §8.9) |
| CPU Performance Cores (8) | Orchestration, agent delegation, simulation runners |
| CPU Efficiency Cores (4) | I/O, HDD read/write, web retrieval, ethics scoring |
CPU/GPU/RAM Load Model
The following mathematical model governs resource allocation under multi-agent load. Let N be the number of active agents, Mi the memory footprint of agent i, and Tinference the per-token inference time:
When RAMrequired > 0.85 × RAMavailable, the Celery task queue throttles agent spawning:
§4Infrastructure Stack — OpenClaw + Coolify + Registered Agentics
Registered Agentics — Cloud Infrastructure Partner
Registered Agentics (https://registeredagentics.ai/), co-authored and operated by Marko Ruble, provides the physical cloud infrastructure layer for HIIE deployment at scale. Registered Agentics functions as a Wyoming-incorporated registered agent service that additionally provides:
- »Physical Mac Mini hosting — dedicated machines allocated per client or project tier, maintained at Registered Agentics facilities
- »Property allocation — each Mac Mini is registered as a dedicated asset under a client's contract, with full hardware isolation
- »Logistics and transfer — upon contract termination (standard one-year term), the Mac Mini is physically transferred and delivered to the client
- »Wyoming registered agent services — reduces state-level administrative fees and provides legal registered presence
- »Maintenance contracts — on-site hardware maintenance, network uptime guarantees, and physical security
- Client (Alice)HTTPS
- OpenClaw InterfaceChat & relay
- Cloudflare TunnelExternal access without static IP
- Registered Agentics FacilityDedicated Mac Mini M4 Pro
- Dedicated Mac Mini M4 ProCoolify + HIIE Services
- Output EngineBOMs, Patents, Specs
- Signed DeliverableReturned to Alice
Coolify — Deployment & Orchestration
All HIIE microservices run as containerized Coolify applications locally. Key capabilities: automatic SSL via Let's Encrypt, Cloudflare Tunnel for external access without a static IP, per-service monitoring and restart policies, environment variable management, and one-click rollback for any service version.
OpenClaw — Chat Interface & Relay Layer
OpenClaw functions simultaneously as the user-facing chat application and the internal message bus through which agents communicate during active projects. It provides file upload support (spec sheets, PDFs, Gerber files, whitepapers), real-time streaming output from all active domain agents, and human sign-off gates — HIIE cannot proceed past key checkpoints without explicit OpenClaw confirmation from Alice.
Core Service Stack
| Service | Technology | Purpose |
|---|---|---|
| Model Inference | Ollama (MLX backend) | Apple Silicon-optimized LLM serving; Qwen3.5-35B-A3B MoE orchestrator + Qwen3.5-9B specialist agents |
| Overflow Inference | Qwen3.5-Plus API | Hosted frontier endpoint for edge cases exceeding local capacity; 1M token context, native tool use, adaptive reasoning |
| LoRA Fine-Tuning | MLX-LM (GPU, break state) + ANE (experimental) | Production fine-tuning via MLX-LM on GPU during idle post-project cycles; ANE private API benchmarked as concurrent substrate (§8.9) |
| Vector Database | ChromaDB | Persistent embeddings, RAG retrieval, training data partition |
| Orchestration API | FastAPI | Internal agent bus + typed inter-agent message bus |
| Task Queue | Celery + Redis | Async delegation, depth limiting |
| Web Retrieval | Playwright + Trafilatura | Live analysis — RAM only, never stored |
| Electrical Simulation | PySpice | Circuit validation |
| Mechanical Simulation | FreeCAD Python API | Structural and thermal analysis |
| Monitoring | Grafana + Prometheus | Metrics collection and storage; exposed as HTTP API to Next.js admin dashboard (§13) |
| Admin Dashboard | Next.js | Purpose-built React interface over Grafana HTTP API; kill switches, KPI chips, operational parameter controls (§13) |
| Container Management | Coolify + Docker | Service orchestration and lifecycle |
§5Anti-Slop Validation Framework — Preventing AI Output Degradation
"AI slop" refers to outputs that are syntactically plausible but semantically hollow, physically infeasible, or epistemically unchecked — outputs that look like answers but are not engineering solutions. HIIE treats slop prevention as an architectural first-class concern, not a post-hoc filter.
Three Pillars of Slop Prevention
Pillar 1: Recursive Validation with Divergence Enforcement
Each domain output undergoes iterative self-critique and cross-agent challenge. Let Ok be the output at iteration k and sim(·, ·) be cosine similarity in the output embedding space. The recursion continues until:
If sim(Ok, Ok−1) ≥ 0.92, the system forces a divergence prompt — injecting a contrastive perspective that challenges the current reasoning path. This prevents circular loops where agents reinforce each other's errors.
Stack overflow protection is enforced via a hard recursion depth limit Dmax = 8, after which the current best output is escalated to Alice with a flag rather than continuing to recurse:
Pillar 2: Human Perspective Injection
At defined checkpoints, HIIE generates a layperson summary and a domain-expert critique of every technical output. These are required inputs to the Feasibility Manager's scoring function:
where w1 = 0.35, w2 = 0.30, w3 = 0.20, w4 = 0.15 and all Si ∈ [0, 100]. Outputs with Fscore< 65 are rejected and returned to the agent team for rework. Outputs with Fscore ∈ [65, 80) are flagged for Alice's attention. Outputs with Fscore ≥ 80 proceed to the Ethics Board.
Pillar 3: Physical Ground-Truth Validation
Every design claim must be anchored to a verifiable physical reference:
- »Material properties sourced from NIST, Matweb, or ASM International — not generated from model weights
- »Electrical designs validated against PySpice simulation before proceeding
- »Mechanical designs stress-tested in FreeCAD Python API before BOM generation
- »Chemistry outputs cross-referenced against PubChem and ChemRxiv before synthesis feasibility is asserted
Preparation Steps for Anti-Slop Implementation
- 1Embed ground-truth retrieval at every domain module entry point.Before any generative step, the relevant module retrieves authoritative source data (NIST, PubChem, USPTO, IEEE). The model reasons from data, not toward plausible-sounding data.
- 2Implement the cosine similarity divergence check (τ = 0.92) in the Celery task wrapper.Every agent output is embedded and compared to its predecessor before the next iteration is spawned.
- 3Deploy the Feasibility Manager as a separate model instance.It must not share context with the generating agent — independence is required for genuine critique.
- 4Configure Dmax = 8 and automatic escalation in the FastAPI orchestration layer.Hard-code this limit; do not make it a configurable parameter that can be overridden by a project prompt.
- 5Require layperson and expert summaries at every approval gate.Alice reads both before signing off on requirements, interim designs, and final outputs.
- 6Log all validation failures with full reasoning traces to the immutable audit log.Failure patterns become training signals for improving domain module prompts.
Feasibility Manager as Training Signal Gatekeeper
The Feasibility Manager's role extends beyond active validation into the training pipeline. Before any labeled output pair is written to the ChromaDB training partition, the Fscore assigned by the Feasibility Manager is attached as mandatory metadata. The MLX-LM fine-tuning process at project close weights training examples by this score:
- »Fscore ≥ 80 — full gradient weight; example enters the training batch at standard importance
- »Fscore ∈ [65, 80) — reduced gradient weight; example contributes but at diminished influence
- »Fscore< 65 — flagged and excluded from the active fine-tuning batch unless the batch is otherwise too small to train effectively
This closes a critical feedback loop: an agent consistently producing mediocre outputs would otherwise generate mostly mediocre training data, fine-tuning itself toward mediocrity over time. The Feasibility Manager as training signal gatekeeper breaks this loop.
Because the FM's output now influences every other agent's future capability, Arthur monitors FM adapter health with elevated priority. FM adapter rollback thresholds are tighter than other agents — a smaller Fscore delta drop should trigger a rollback flag for the FM than for domain agents (§8.9.4).
§6Intelligence Layers & Domain Modules
| Module | Coverage | Key Capabilities |
|---|---|---|
| Hardware Engineering | PCB, chip architecture, LPU/AI processor, manufacturing machines | Schematic generation, BOM, Gerber files, VHDL/Verilog for custom silicon |
| Materials Science | Properties, US sourcing, cost, environmental lifecycle | Substitution recommendations, supplier integration, environmental scoring |
| Manufacturing Systems | Factory line design, batch processes, QC, automation | Process flows, equipment spec, yield modeling |
| Software Engineering | Full-stack, embedded, firmware, AI | Production-grade code with enforced design principles |
| Chemistry & Materials | Compounds, synthesis, novel material discovery | PubChem/ChemRxiv retrieval, synthesis feasibility, safety analysis |
| Patent Intelligence | Global patents — USPTO, EPO, WIPO, JPO | Prior art search, novelty windows, provisional claim drafting |
| Whitepaper & Standards | IEEE, IPC, JEDEC, AI research | Standards compliance, document synthesis, gap analysis |
| Environmental Systems | Carbon accounting, renewable integration | Impact scoring, net-positive pathway recommendations |
Recursive Reasoning — Overflow Prevention
HIIE uses iterative deepening with hard depth limits and SSD checkpointing rather than pure recursion. A similarity detection threshold (τ = 0.92) forces divergent reasoning when outputs converge. RAM pressure monitoring triggers state serialization to SSD above 85% utilization.
§7Agent Delegation Framework
Each project spawns a full agent team. Alice and Arthur are the two permanent principals across all projects.
| Role | Type | Responsibilities |
|---|---|---|
| Alice | Human | Primary director. Sets problem statement, approves milestones, holds final sign-off authority. Cannot be overridden. |
| Arthur | AI | Persistent AI co-director. Maintains long-term project memory, flags output drift, advocates for Alice's original intent. |
| Theoretical Engineer | Agent | First-principles reasoning and conceptual design. Explores solution space without cost bias. Flags physical limits. |
| Materials Engineer | Agent | Selects and optimizes all physical materials. Prioritizes US-accessible sourcing, cost, and environmental lifecycle. |
| Civil & Structural Engineer | Agent | Evaluates spatial requirements, structural integrity, facility needs, and physical installation feasibility. |
| Mfg. Process Engineer | Agent | Designs production processes, factory line design, batch optimization, yield modeling, QC system design. |
| Research Group (x3) | Agent | Three concurrent agents: patents, academic papers, and standards/GitHub — no redundancy between agents. |
| Feasibility Manager | Agent | Scores outputs against technical, manufacturing, commercial, and timeline feasibility. Blocks below-threshold outputs. |
| Ethics Officer | Agent | Reviews for dual-use risk, societal impact, environmental consequences. Holds veto power. All reports are immutable. |
| Project Manager | Agent | Coordinates all agents, tracks milestones, identifies conflicts, delivers structured status reports to Alice and Arthur. |
| Patent Strategist | Agent | Monitors global patent landscape in real-time, identifies novelty windows, drafts provisional claims, flags FTO risks. |
| Documentation Architect | Agent | Synthesizes all outputs into complete deliverable package: specs, patents, whitepapers, material lists, process flows. |
Runtime Initiation — Two-Layer Delegation
Agent spawning is governed by a two-layer authority model that separates strategic initiation (Arthur's domain) from operational initiation (the Project Manager's domain). Neither layer can act without the other, and both are blocked by the agent registry for any role Alice has disabled.
Arthur — Strategic Initiation
Before any project begins, Arthur evaluates project similarity to prior work, assesses adapter maturity for required roles, reviews system KPI health (§8.8.2), and proposes an agent roster and resource configuration to Alice. Alice's approval of the requirements document implicitly approves this roster unless she explicitly modifies it. Arthur's initiation decision is grounded in project history, system economy data, and Alice's stated intent.
Project Manager — Operational Initiation
Once Arthur's roster is confirmed, the PM executes the spawn sequence:
- »Loads adapters from warm HDD archive into the SSD working tier
- »Sequences agent spawns to respect the RAM pressure formula (§3.5)
- »Communicates resource requirements to the Treasury Agent
- »Establishes the agent dependency graph for the project
- »Selects which adapter version to load per role by consulting Arthur's system economy KPI data — the version with the best recent Fscore delta is selected
Agent Registry & Exception-Based Control
A persistent agent registry maintained by the PM holds an enabled/disabled flag per agent role. Agents run unless stopped. Alice can disable any agent at any time through the OpenClaw interface with no justification required. Disabled agents release their RAM allocation to the pool immediately; the Treasury Agent logs the disable event and its resource impact. Arthur flags to Alice if a disabled agent creates a capability gap affecting project output quality. The registry check occurs before any spawn command is issued. The registry also tracks adapter maturity per role:
- »Cold — newly commissioned; no training history; conservative HCT assignment; PM generates a gap report before spawning
- »Developing — 1–5 project cycles completed; adapter improving; standard HCT assignment
- »Mature — 6+ cycles; Fscore delta consistently positive; eligible for base HCT reduction as efficiency grows
When a project requires a role not in the registry, the PM generates a gap report to Alice rather than silently spawning a cold-start agent. When a new role is commissioned, the PM initializes it at cold maturity and flags to Arthur that no training history exists.
Project Manager — Expanded Responsibilities
The PM is elevated from coordination role to active runtime decision-maker. In addition to operational initiation (§7.2), its expanded responsibilities are:
- »Scope estimation — evaluates Alice's requirements document and translates it into a projected HCT budget, projected timeline in project cycles, and a risk flag if scope is significantly outside prior project patterns; feeds into the intake quality gate
- »Resource state translation — reads real-time system metrics (RAM utilization, HCT spend rates, agent queue depth, SSD working budget) and produces plain-language status summaries surfaced through the admin dashboard (§13); provides the narrative interpretation layer on top of raw metrics when Alice requests a status briefing
- »Onboarding registry management — maintains the agent registry (§7.3); initializes cold-start roles with conservative HCT; flags capability gaps to Alice before spawning
The PM's LoRA adapter trains on project-level telemetry: milestone timing, agent conflict patterns, HCT spending distributions, and Alice approval gate outcomes. This is meta-knowledge, not domain knowledge — the PM does not need to understand circuit design; it needs to understand that Hardware Engineering tasks at a given complexity tier historically cost N HCT and produce first-pass Fscore values around M.
Research Agent Architecture
The three Research Group agents run on Qwen3.5-9B with retrieval-specialized LoRA adapters. Model size is intentionally constrained — high retrieval throughput and extraction precision are the primary requirements, not deep domain reasoning. Domain agents consume Research outputs; Research agents do not need to reason deeply about what they find.
- »Source quality discrimination is a trained capability, not a hardcoded list. Each Research agent's adapter trains on labeled examples of high-quality versus low-quality sources per domain (e.g., USPTO and NIST are authoritative; SEO aggregators are not). This discrimination lives in adapter weights and improves with each project cycle.
- »Negative knowledge is its own training signal. When a retrieved source contributes to an output flagged by the anti-slop validator or rejected by Alice at a gate, that source receives a negative training signal. The Research agent gradually learns the topology of reliable versus unreliable information space for each domain.
- »Credential management is operational infrastructure attached to the Research agents. A credentials store holds authenticated access tokens for IEEE Xplore, PubChem, USPTO, Google Patents, arXiv, and other high-value sources. Research agents query this store before attempting retrieval. Paywalled sources without available credentials generate a credential gap flag to the PM's onboarding registry rather than a retrieval failure.
- »Context sizing is moderate — sufficient to hold several retrieved documents for cross-referencing, not maximized. Memory headroom is better allocated to the Theoretical Engineer and Hardware Engineering agents that perform deep reasoning on Research outputs.
Inter-Agent Communication Protocol
Agents do not communicate through conversational exchange. All inter-agent communication is mediated through structured typed outputs via the FastAPI message bus. Each agent role has a defined output schema. An agent consuming another agent's output receives a typed object, not free-form text — the Hardware Engineer produces a structured component specification; the Materials Engineer consumes it. Co-evolution happens through shared interface contracts, not direct coupling.
- »The PM has read access to all message bus traffic for coordination
- »Arthur has read access for drift detection
- »As adapters mature, agents produce more precisely structured outputs — specialization improves the shared interface rather than fragmenting it
Individual KPIs are tracked per agent. The system-level KPI dashboard (§8.8.2) aggregates them. The individual signal identifies if a specific agent is degrading; the aggregate signal identifies if the system as a whole is improving or regressing. Both are required and serve different diagnostic purposes.
§8Adaptive Resource Economy & Agent Incentive Framework
HIIE operates as more than a technical pipeline — it is a self-governing economic system. Every participant, human or agent, operates within a measurable framework of resource allocation, performance accountability, and convergent incentives. The goal is not punishment for failure but continuous refinement toward precision: a closed loop in which every decision, at every level, improves the quality of subsequent decisions.
§8.1HIIE Compute Token (HCT) — The Internal Unit of Account
The HIIE Compute Token (HCT) is the internal resource accounting unit governing all agent activity. It is not a currency, carries no external value, and has no relationship to client billing or any outside economy. It exists solely to make resource consumption visible, attributable, and optimizable within the system. One HCT represents a normalized bundle of compute resources:
where α, β, and γ are weighting coefficients reflecting the relative scarcity of each resource on the Mac Mini M4 Pro node (α > β > γ, GPU time being the most constrained). The Treasury Agent recalibrates these coefficients at the start of each project based on current system load.
§8.2Dynamic Resource Pricing — Self-Determining Allocation
Rather than a static throttle ceiling, resource costs fluctuate continuously as a function of real-time utilization U(t) ∈ [0, 1]:
where Pbase is the nominal HCT cost per resource unit, λ is the price sensitivity parameter, andϵ prevents division by zero near full saturation. This produces a self-correcting market signal:
- »Underserved environment (U(t) < 0.50) — HCT cost falls below Pbase, incentivizing the scheduler to allocate more work to available capacity
- »Nominal range (0.50 ≤ U(t) < 0.85) — HCT cost near baseline; agents operate at standard allocation
- »Overserved environment (U(t) ≥ 0.85) — HCT cost spikes sharply; agents are naturally incentivized to compress context, yield memory, or queue rather than compete for resources
This replaces the existing hard throttle with a continuous price gradient, preserving the 85% ceiling as an economic signal rather than an abrupt cutoff.
§8.3Agent Payroll — Base HCT Allocation per Project Cycle
Each agent role receives a guaranteed base HCT allocation at project initialization — the payroll. This is the minimum resource floor the agent is entitled to regardless of project complexity. The Treasury Agent distributes these allocations before any task execution begins.
| Agent Role | Base HCT | Rationale |
|---|---|---|
| Theoretical Engineer | 120 | First-principles reasoning on Qwen3.5-35B-A3B MoE; high GPU demand |
| Materials Engineer | 80 | Database retrieval + property matching; Qwen3.5-9B specialist |
| Civil & Structural | 70 | FreeCAD simulation workload; Qwen3.5-9B specialist |
| Mfg. Process Engineer | 90 | Factory line modeling; yield computation; Qwen3.5-9B specialist |
| Research Group (each) | 100 | Live retrieval; three concurrent instances; Qwen3.5-9B retrieval-specialized adapter |
| Feasibility Manager | 60 | Scoring runs; independent model instance; cross-domain training signal gatekeeper (§5.3) |
| Ethics Officer | 50 | Structured review; immutable log writes; Qwen3.5-9B specialist |
| Project Manager | 40 | Coordination, scope estimation, registry management; low direct inference load |
| Patent Strategist | 80 | Real-time global patent sweep; Qwen3.5-9B specialist |
| Documentation Architect | 60 | Synthesis and LaTeX compilation; Qwen3.5-9B specialist |
| Treasury Agent | 30 | Continuous monitoring; lightweight process |
§8.4Performance Bonuses — HCT as Quality Signal
Agents that exceed baseline performance earn bonus HCT redeemable within the same project cycle to request additional compute, spawn sub-agents, or extend live retrieval sessions. Bonus HCT cannot be accumulated across projects — it expires at project close. The bonus for agent i is computed at each project milestone:
where Fi is the agent's Feasibility Score contribution, Ftarget = 80, di is the recursion depth at which the agent resolved its task, Dtarget = 4 (the efficient midpoint of the Dmax = 8 limit), andAi ∈ {0.5, 1.0, 1.5} reflects Alice's final gate decision (rework required / accepted / accepted with commendation). Outputs blocked by the Feasibility Manager return zero bonus for that cycle. Outputs rejected by the Ethics Officer trigger a bonus claw-back: previously awarded HCT for that task is reclaimed by the Treasury Agent.
§8.5Treasury Agent — Self-Auditing & Checks and Balances
The Treasury Agent is a lightweight, always-on process running independently of the domain agent team. It holds no domain knowledge and participates in no engineering tasks. Its sole function is economic governance:
- »Project-level HCT cap enforcement — total spend across all agents cannot exceed the project budget ceiling, set at initialization based on project complexity tier
- »Spending velocity monitoring — flags any agent whose HCT consumption rate exceeds 2× its base allocation per time window without a corresponding milestone output
- »Claw-back execution — reclaims bonus HCT from agents whose outputs are subsequently rejected downstream
- »Gate suspension accounting — when Alice has not approved a gate, the Treasury Agent suspends all blocked agents, releases their RAM allocation back to the pool, and logs the idle period. Upon Alice's approval, agents are reinstated with their HCT entitlements preserved but their held RAM re-priced at the current dynamic rate
- »Immutable spending ledger — a tamper-evident log of all HCT allocations, spends, bonuses, and claw-backs per project, parallel to the ethics audit log and exportable alongside it
The Treasury Agent's own audit logic is protected from modification by any agent instruction, mirroring the immutability of the ethics framework. No agent, including Arthur, can alter the Treasury Agent's accounting rules.
§8.6Alice Accountability Protocol — Convergence Without Penalty
Exception-Based Agent Control
Alice's operational authority over the agent system is a kill switch and veto right, not a spawn- approval queue. Agents run unless stopped. The persistent agent registry (§7.3) holds an enabled/disabled flag per agent role. Alice can disable any agent at any time through the OpenClaw interface with no justification required. Disabled agents release their RAM allocation to the pool immediately. The Treasury Agent logs the disable event and its resource impact. Arthur flags to Alice if a disabled agent is creating a capability gap affecting project output quality. Alice's gate authority — approving requirements documents, interim outputs, and final deliver- ables — is unchanged and non-negotiable. What is eliminated is any implicit requirement for Alice to manage operational agent state. She governs outputs, not operations.
Output Authority & Convergence Mechanism
Alice holds final authority over all HIIE outputs and bears no resource loss, HCT deduction, or score penalty under any circumstance. Her accountability mechanism is entirely Socratic and convergent: the system will not advance past a stage until Alice's input meets the minimum quality threshold for that stage. The mechanism is designed to eliminate the worst outcome in any AI-assisted system — a vague input accepted without challenge that generates a plausible-looking but fundamentally misaligned output, trapping the entire pipeline in a slop cycle from which recovery requires a full restart.
Project Commitment Declaration
Before any agent is spawned or any HCT is allocated, Alice must pass an intake quality gate. The system evaluates her problem statement across three dimensions:
where ws = 0.40, wc = 0.35, wb = 0.25 and all scores ∈ [0, 100]. If QAlice< 70, the system returns a single targeted Socratic question — not a list of problems, not a form to fill out, but one precise question aimed at the largest ambiguity. This repeats until the threshold is met. No compute is allocated until QAlice ≥ 70. This is not a friction mechanism. It is waste prevention at source — the most efficient point in the entire pipeline to correct a misalignment is before any work begins. Every Socratic exchange brings Alice closer to the precision required for a high-quality outcome. The loop never punishes; it only refines.
Exploratory vs. Committed Mode
Alice explicitly declares her intent before the intake gate opens:
- »Exploratory Mode — limited agent instantiation, reduced HCT allocation, no deliberation scoring, no intake quality gate. Alice is thinking out loud. The system assists without full commitment. Exploratory sessions do not feed into Alice's system-level contribution history.
- »Committed Mode — full agent team, full HCT allocation, intake quality gate active, deliberation scoring active. Alice is initiating a real project. All gates and accountability mechanisms are live.
The system never silently treats an exploratory session as a committed project. Resource allocation scales to declared intent.
Deliberation Scoring at Approval Gates
At each approval gate, the system records a deliberation signal: the time elapsed between gate presentation and Alice's decision, and whether she engaged with both the layperson summary and the expert critique before approving. Rapid sequential approvals — gates cleared without meaningful engagement — are flagged in the immutable audit log and surfaced to Arthur. Arthur is then required to present a structured alternative perspective before the next gate opens. Alice can still proceed — her authority is absolute — but she does so on the record, with Arthur's analysis attached to the project audit trail. The deliberation signal does not block Alice. It ensures that when she chooses to move fast, the system has done its duty to surface what she may have passed over.
§8.7Arthur as Bilateral Auditor
Arthur's existing role — persistent AI co-director, long-term memory keeper, advocate for Alice's original intent — is extended bilaterally. He audits both directions of the pipeline:
- »Downward — agents drifting from Alice's stated requirements, output quality regression between milestones, domain modules producing internally inconsistent results (already defined in Arthur's role)
- »Upward — Alice's gate decisions contradicting her own requirements document, approval patterns that correlate with downstream rework, input patterns that historically produce low-Fscore outcomes
When Arthur identifies an upward inconsistency, he surfaces it as a structured alternative: a concise statement of what Alice originally declared, what she is approving now, and what the predicted HCT cost of the divergence is. Arthur never blocks Alice. He ensures that every consequential decision is made with full awareness of its implications.
§8.8Cross-Project Durability — The Two-Layer Economy
The HCT economy operates across two distinct temporal scopes:
- Project EconomyEphemeral — resets at project close
- base HCT weights updatedperformance signals written
- System EconomyPersistent — governed by Arthur
Project Economy (Ephemeral): HCT budgets, bonus pools, spending ledgers, and per-project scores reset completely at project close. No agent carries debt or surplus into a subsequent project. Each project begins on an equal footing.
System Economy (Persistent): Agent specialization weights, base HCT allocation adjust- ments, Arthur's memory of Alice's input patterns, and system-level KPI trends persist across the lifetime of the system. A Hardware Engineering agent that has completed forty PCB projects reaches the same Fscore threshold with fewer HCT than one on its second project. That efficiency delta is a system-level asset, tracked by Arthur and reflected in future base payroll assignments.
Reputation Decay Function
To prevent early-project performance from permanently defining an agent's allocation — and to prevent one poor session from permanently coloring Alice's Socratic treatment — all system- economy scores apply an exponential decay:
where λd is the decay rate (default: half-life of 90 days), t0 is the timestamp of the last project, and ∆Ri is the performance delta from the most recent project. Recent performance always outweighs historical performance. The system learns from history without being imprisoned by it.
System-Level KPI Dashboard
Arthur maintains and surfaces a set of macro-level KPIs across all projects that reflect the health and trajectory of HIIE as a whole:
| KPI | Target | Description |
|---|---|---|
| Mean Fscore (rolling 10 projects) | ≥ 82 | System-wide output quality trend |
| HCT Efficiency Ratio | ≥ 1.20 | Output quality per HCT spent, normalized |
| Mean recursion depth at resolution | ≤ 5 | Measures reasoning efficiency over time |
| Alice intake gate pass rate (first attempt) | ≥ 70% | Reflects input quality improvement over time |
| Agent claw-back rate | ≤ 5% | Proportion of bonuses reclaimed per project |
| Gate deliberation flag rate | ≤ 10% | Proportion of gates flagged for low engagement |
| Adapter Fscore delta (rolling 5 projects) | ≥ +2 pts | Improvement attributable to LoRA fine-tuning (§8.9) |
Sustained degradation in any KPI triggers Arthur to surface a structured system health report to Alice, recommending specific adjustments to agent payroll weights, intake quality thresholds, or project scoping practices. Arthur proposes; Alice decides.
Reserve Pool — Project Insurance
Each project initializes a reserve pool of HCT set at 15% of the total project budget. The reserve is held by the Treasury Agent and is not accessible to individual agents during normal operation. It is deployed only under two conditions:
- »Cascade failure absorption — if a domain module produces a catastrophically rejected output requiring full rework, the reserve covers the rework cycle without stripping HCT from other agents mid-project
- »Ethics Officer override costs — if the Ethics Officer vetoes an output and triggers a mandatory redesign, the redesign cycle is funded from the reserve, not from agent bonuses
Unused reserve HCT at project close is not distributed as bonus. It returns to the system pool, recorded in the spending ledger as reserve returned, which is itself a positive system-level signal: a project that did not need its reserve is a well-scoped, well-executed project.
§8.9Persistent Intellectual Capital — LoRA Fine-Tuning, ANE Benchmarking & Specialist Adapter Compounding
The HCT economy governs how HIIE allocates compute during active project execution. Section 8.9 extends that economy into a dimension that operates beneath active inference: the continuous, silent improvement of specialist model weights using dedicated silicon that would otherwise sit idle.
This is HIIE's persistent intellectual capital layer. Every project produces labeled training signal. Every idle GPU cycle is an opportunity. Every completed year of operation leaves the Mac Mini more capable than when it started — not because its hardware changed, but because its specialist models have been fine-tuned on real, validated, Arthur Labs project outcomes.
§8.9.1 The Idle Silicon Problem
HIIE's fine-tuning infrastructure addresses idle silicon on two fronts, at two different maturity levels.
Between-project idle GPU (production path). During active inference, HIIE's GPU (20-core M4 Pro) is fully allocated to running Qwen3.5-35B-A3B for orchestration, Qwen3.5-9B specialist agents, domain reasoning, and embeddings. But between projects — during the break state (§9.2.4) — the GPU sits idle while Arthur runs system health checks and prepares the next project roster. This represents continuous waste of the primary compute resource. MLX-LM closes that gap by running LoRA fine-tuning passes on all agent adapters during break state windows, using the full 40GB unified pool without any contention with active inference. Training and inference are sequential, not concurrent — but every break state is a fine-tuning opportunity that would otherwise be lost.
During-inference ANE (experimental path). The Apple Neural Engine (16-core, 38 TOPS) is architecturally separate silicon that receives no work from Metal or Ollama during standard GPU inference. This represents potential for concurrent fine-tuning — training while inference runs, on genuinely separate hardware. HIIE is actively benchmarking ANE-based LoRA training via reverse-engineered private APIs (the _ANEClient / _ANECompiler pathway). Current benchmarks show ∼91–110 ms/step at ∼5–9% ANE utilization on 109M-parameter models — a research-grade result, not yet production-stable. The primary limitations are API stability across macOS updates and CPU fallback for weight-gradient accumulation.
The two paths are complementary: MLX-LM provides a reliable, high-utilization production fine-tuning runtime today; ANE benchmarking is building toward concurrent zero-contention fine-tuning in a future phase. Both results feed into the same adapter versioning and ChromaDB training partition infrastructure.
| Resource | During Active Inference | Post-Project Fine-Tuning (Break State) |
|---|---|---|
| GPU (20-core) | LLM inference, embeddings, domain reasoning | Fully available for MLX-LM LoRA fine-tuning; uses entire 40GB pool |
| ANE (16-core) | Idle (unused by Metal/Ollama); available for experimental ANE fine-tuning benchmark | Experimental LoRA benchmarking via private API; results compared against MLX-LM baseline |
| CPU Perf Cores (8) | Orchestration, agent delegation | Gradient accumulation (cblas); system health checks (Arthur) |
| CPU Eff Cores (4) | I/O, web retrieval, HDD writes | Adapter checkpoint writes to HDD; archive operations |
| RAM | 40GB inference pool active; <2GB ANE research buffer | Full 40GB pool available to MLX-LM; inference pool released at project close |
§8.9.2 What Is Being Trained — LoRA Adapters, Not the Base Model
HIIE's primary inference model (Qwen3.5-35B-A3B at 4-bit quantization) is never modified. It remains frozen on SSD, serving as the stable reasoning foundation for the orchestrator. Specialist agents share a frozen Qwen3.5-9B base model. What the fine-tuning layer trains are Low-Rank Adaptation (LoRA) adapters — lightweight parameter overlays that modify how the base model behaves for a specific domain task without altering its weights.
LoRA adapters are architecturally small: typically 10–50MB per adapter versus 14GB+ for the base model. They are loaded at agent instantiation and unloaded when the agent completes. Multiple adapters can coexist on SSD simultaneously, each representing a different specialist agent's accumulated learning.
Base Qwen3.5-9B Specialist (frozen on SSD, ∼5GB) ⊢ Adapter A: Patent Strategist (∼30MB) ⊢ Adapter B: Chemistry Agent (∼25MB) ⊢ Adapter C: Feasibility Manager (∼20MB) ⊢ Adapter D: Hardware Engineer (∼35MB) ⊢ Adapter E: Materials Engineer (∼28MB)
Each adapter represents a branch off the frozen base model trunk. The trunk never changes. The branches grow continuously as HIIE completes projects. This is the hardware expression of the two-layer economy described in §8.8: the System Economy's persistent learning is literally encoded into separate silicon and stored as versioned adapter files on HDD.
§8.9.2a Individual vs. Collective Training — Architectural Rationale
The frozen base model is the collective intelligence layer. All agents share identical foundational language understanding, reasoning capability, and world knowledge through the shared Qwen3.5 base. The LoRA adapters are the individualistic specialization layer. The architecture is both collective and individual simultaneously — collective at the base, individual at the specialization boundary.
Individual adapters are necessary because each role optimizes for a different and partially conflicting reward signal:
- »The Patent Strategist is rewarded for claim precision and novelty window identification
- »The Feasibility Manager is rewarded for calibrated scoring accuracy
- »The Chemistry Agent is rewarded for Tanimoto novelty scores and synthesis feasibility assessment
Collectively training these reward signals into a single adapter would produce averaging toward mediocrity rather than specialization toward excellence.
Partial exceptions. The Feasibility Manager's adapter is inherently cross-domain — its job is to evaluate every other agent's outputs, so its training data spans all domains. Its adapter should be trained on labeled output pairs from every domain, making it the only agent with a genuinely collective training signal. This reinforces the requirement that it run as an independent model instance: it cannot share context with the agents it is evaluating. The PM's adapter is also partially collective, trained on project-level telemetry that spans all domain types — but its learning target is meta-level patterns, not domain content.
§8.9.3 Single-Layer Fine-Tuning — Architectural Placement
HIIE's current fine-tuning configuration targets single-layer transformer fine-tuning per training pass: one complete attention + FFN block. The question of which layer to target is not arbitrary. Transformer layers are not equivalent in function. Early layers (0–8 in a 32-layer model) encode syntax and surface patterns — foundational knowledge that does not benefit from domain-specific adaptation. Mid-to-late layers (layers 16–28) encode domain reasoning, concept formation, and task-specific behavior. These are the highest-value targets for specialist fine-tuning.
| Layer Range | Encodes | Fine-Tuning Value for HIIE |
|---|---|---|
| Layers 0–8 (Early) | Syntax, basic language patterns | Low — foundational, domain-agnostic |
| Layers 9–18 (Mid) | Domain concept formation, reasoning chains | High — where domain specialization begins |
| Layers 19–26 (Late) | Task-specific behavior, output formatting | Highest — direct impact on agent output quality |
| Layers 27–32 (Final) | Token prediction, surface generation | Medium — output style, less domain-critical |
HIIE targets late-layer fine-tuning for all specialist adapters. A Patent Strategist adapter trained on layers 19–26 improves how the agent reasons about novelty windows and claim structure — without touching the foundational language understanding that makes it useful in the first place.
§8.9.4 The Training Data Pipeline — Project Outcomes as Labels
HIIE does not require external datasets to fine-tune its specialist models. Every completed project generates labeled training signal automatically through the existing validation and approval architecture:
- »Feasibility Manager outputs carry Fscore labels — scored pairs of (agent output, feasibility score) are ground-truth training examples for the Feasibility Manager adapter
- »Alice acceptance decisions at approval gates provide binary and graded labels (rework required / accepted / accepted with commendation) for all domain agent adapters
- »Ethics Officer assessments label dual-use risk, environmental impact, and structural compliance — training signal for the Ethics scoring model
- »Anti-slop divergence flags identify outputs that required forced re-reasoning — negative training examples that teach agents to avoid convergence traps
- »Simulation validation results (PySpice pass/fail, FreeCAD stress test outcomes) anchor training signal in physical ground-truth — not model preference
Fscore-weighted gradient application. Before any labeled output pair is written to the training partition, the Fscore assigned by the Feasibility Manager is attached as mandatory metadata (§5.3). The fine-tuning process at project close weights training examples by this score: full gradient weight above 80, reduced weight in [65, 80), excluded below 65. This ensures agents cannot fine-tune themselves toward mediocrity using their own low-quality outputs as training signal.
This loop requires no human curation, no external dataset acquisition, and no additional infrastructure. The training data is a natural byproduct of HIIE's existing validation architecture. The fine-tuning layer simply harvests what the pipeline already produces.
§8.9.5 RAG and Fine-Tuning as Complementary Memory Systems
RAG (ChromaDB) and LoRA fine-tuning serve distinct and non-competing memory functions. They operate at different layers of the intelligence stack and must be understood as complementary, not redundant:
| Dimension | RAG (ChromaDB on HDD) | LoRA Fine-Tuning (MLX-LM / ANE) |
|---|---|---|
| Memory type | Explicit — retrieved at inference time | Implicit — encoded in weights |
| Question answered | What do I know? | How do I reason? |
| Update speed | Immediate — new embeddings written per project | Gradual — adapter updated across project batches |
| Scope | Project-level and corpus-level facts | System-level reasoning capability |
| Persistence | HDD — queryable across all projects | HDD — loaded per agent role |
| Interaction | Feeds context into fine-tuned model | Improves use of retrieved context |
The interaction between the two systems is multiplicative, not additive. A fine-tuned Patent Strategist adapter improves the agent's ability to reason about the patent documents retrieved by RAG. A well-populated ChromaDB provides richer retrieval context that the fine-tuned model is better equipped to synthesize. Each layer makes the other more effective.
§8.9.6 Adapter Versioning, Storage, and the Machine as Asset
All LoRA adapters are versioned and stored on the 5TB HDD alongside ChromaDB. Storage overhead is minimal — a full suite of specialist adapters across all HIIE agent roles consumes less than 500MB total, a negligible fraction of available HDD capacity.
Adapter versioning follows the project lifecycle:
- »Each adapter version is tagged with the project batch that produced it and the Fscore delta observed across that batch
- »Previous adapter versions are archived, not deleted — rollback is available if a fine-tuning batch degrades performance
- »The Treasury Agent monitors HCT efficiency ratios across adapter versions — a version that produces lower Fscore outputs at equal HCT cost triggers an automatic rollback flag to Alice
- »Arthur tracks adapter performance trends as part of the System-Level KPI Dashboard (§8.8.2), surfacing degradation before it affects client-facing output quality
This versioning architecture produces a significant commercial property: the Mac Mini delivered to a Builder or Enterprise client at contract year-end is not the same machine that was initialized twelve months prior. It carries trained specialist adapters derived from real project outcomes — accumulated intellectual capital encoded in weights, archived in ChromaDB, and versioned in the adapter store. The hardware asset appreciates over the contract term.
§8.9.7 Maturity Trajectory — Phase Alignment
The fine-tuning capability matures across HIIE's development phases. MLX-LM provides the production-stable path from Phase 1; ANE concurrent training matures as a research track in parallel:
| Phase | Fine-Tuning Status | Capability Unlocked |
|---|---|---|
| Phase 1 (Months 1–6) | Training data pipeline built into ChromaDB partition; MLX-LM configured for break-state runs | Training data accumulates; no adapter deployment yet; ANE benchmarks begin |
| Phase 2 (Months 6–12) | MLX-LM single-layer LoRA on Feasibility Manager and Patent Strategist; ANE utilization benchmarked | First measurable Fscore improvement from adapter deployment |
| Phase 3 (Months 12–24) | Full specialist adapter suite via MLX-LM; ANE concurrent training evaluated for production promotion | System-wide capability improvement; adapter versioning live; ANE/MLX-LM efficiency comparison complete |
| Phase 4 (Months 24–48) | Multi-layer fine-tuning; ANE promoted to production if benchmarks confirm stability; potential custom adapter architectures | HIIE designs its own fine-tuning pipeline; purpose-built hardware potentially designed by HIIE itself |
§9Human-AI Dialogue & User Flow
- 1Problem Statement InputAlice submits goal in any form through OpenClaw: sentence, paragraph, spec sheet upload, reference images, prior art documents.
- 2Socratic Clarification LoopHIIE asks one targeted question at a time. Arthur flags contradictions. No assumptions made without confirmation.
- 3Requirements Document — Human Approval GateStructured requirements presented to Alice. No project work begins without explicit sign-off. This document governs all subsequent agent decisions.
- 4Agent Team Spawn & Research PhaseFull agent team initialized. Research Group begins live retrieval. Theoretical Engineer generates first-principles concepts. Patent Strategist scans global landscape.
- 5Parallel Domain GenerationDomain modules execute via async task queues. Feasibility Manager cross-validates. Alice receives streaming progress and can redirect any agent in real-time.
- 6Anti-Slop Validation LoopCosine similarity divergence checks, Feasibility scoring (Fscore ≥ 65 required), and physical ground-truth anchoring execute before simulation.
- 7Simulation & Validation LoopElectrical, mechanical, and thermal simulations run against designs. Results feed back to agents for refinement. Loop continues until thresholds are met or escalated.
- 8Ethics Board Review — Human Approval GateFull output reviewed by Ethics Officer. Any flag requires Alice's explicit acknowledgment before final output proceeds.
- 9Final Output Package & ArchiveDocumentation Architect compiles complete deliverable set. Alice performs final review. Upon sign-off, outputs archived to HDD, patent strategy initiated, and project outcomes written to the fine-tuning training partition (§8.9).
Project Lifecycle State Machine
HIIE operates as a four-state system. Every project is a complete cycle through these states. Feedback loops are explicit — the system never advances without conditions being met, and never silently regresses. Direction of flow is always defined; no transition is implicit.
- 1 — InitializationAlice approves requirements ⇒ Active Execution (requirements change loops back here)
- 2 — Active Executionrework / validation fail loops internally; final deliverable sign-off ⇒ Project Close
- 3 — Project Closefine-tuning & archive complete ⇒ Break State
- 4 — Break StateAlice initiates next project ⇒ return to State 1 (Initialization)
State 1 — Initialization
Entry: Alice initiates a project (Committed Mode) or Arthur flags readiness from the break state.
Arthur proposes an agent roster and resource configuration based on project similarity to prior work and adapter maturity. The PM loads adapters from HDD archive into the SSD working tier, sequences spawn order against the RAM pressure formula, and establishes the agent dependency graph. The Treasury Agent allocates HCT budgets. Research agents begin live web retrieval. Alice passes the intake quality gate and approves the requirements document. Alice's approval of the requirements document implicitly approves Arthur's proposed roster unless explicitly modified.
Exit: Alice signs off on the requirements document ⇒ transition to Active Execution. If requirements change during Active Execution, the system loops back here.
State 2 — Active Execution
Entry: Requirements document approved.
Agents run in parallel lanes. All inter-agent communication is mediated through structured typed outputs via the FastAPI message bus (§7.6) — not conversational exchange. The anti-slop validation loop, Feasibility Manager scoring, simulation runs, and Ethics Board review all execute within this state. Alice receives streaming progress and can redirect any agent or veto any output in real-time. Each agent accumulates labeled training pairs in ChromaDB's training partition throughout this state.
Internal loop: Validation failures or Feasibility scores below threshold return the output to the originating agent for rework — loop continues until thresholds are met or Dmax is reached and escalated to Alice.
Exit: Alice signs off on the final output package ⇒ transition to Project Close. If Alice modifies requirements significantly, loop back to State 1.
State 3 — Project Close
Entry: Alice final sign-off on deliverables.
Active inference load drops. MLX-LM LoRA fine-tuning runs on GPU for each agent role whose adapter has accumulated sufficient new training pairs (with Fscore-weighted gradients, §8.9.4). Each adapter is versioned and archived to HDD. The active symlink for each role is updated to the new version if Fscore delta is positive; if delta is negative, the previous version is retained and a rollback flag is surfaced to Arthur. ANE benchmarking runs if active. The Treasury Agent finalizes the spending ledger. All project outputs are archived to HDD.
Exit: Fine-tuning and archival complete ⇒ transition to Break State.
State 4 — Break State
Entry: Project close archival complete.
Arthur runs system health checks against the KPI dashboard (§8.8.2). Degraded KPIs surface to Alice as structured reports. Arthur prepares the roster recommendation for the next project based on updated adapter performance data. The PM has no active project responsibilities in this state. The system is available for Exploratory Mode sessions without committing to a full project cycle.
Exit: Alice initiates a new project ⇒ return to State 1 (Initialization).
§10Use Case Catalogue — Reference Projects
The following use cases illustrate HIIE's intended scope and demonstrate the system's reasoning range from precision instrumentation to large-scale manufacturing. Each represents a full HIIE project cycle from intent to deliverable.
Use Case 1 — Localized Atomic Force Microscope (≤ 3 × 3 ft)
Alice's Intent: "Architect me a localized atomic microscope that is under 3x3 feet and has a remote connection point to view the microscope and control it."
HIIE Approach: Hardware Engineering generates a cantilever-based AFM design with piezoelectric XYZ stage. The constraint V ≤ (0.9 m)3 governs all mechanical envelope decisions. Materials Engineer specifies silicon nitride cantilevers sourced from US suppliers. A Raspberry Pi 5 + custom FPGA control board provides the remote WebRTC connection layer. Civil & Structural Engineer validates vibration isolation table requirements.
where E is Young's modulus, w is cantilever width, t is thickness, and L is cantilever length. Target: k ≈ 0.1–1 N/m for contact mode. Force sensitivity Fmin = k · δzmin where δzmin ≈ 0.1 nm for the piezo stage.
Expected Outcomes: Full mechanical CAD (FreeCAD), PCB schematic (KiCad), BOM with US sourcing, remote control software package, provisional patent draft, viability report. Estimated BOM cost: $8,000–$25,000 depending on detector quality.
Use Case 2 — Novel vRAM Architecture
Alice's Intent: "Architect a new design system for vRAM that is material cost effective and easy to access the materials in the United States."
HIIE Approach: Hardware Engineering and Materials Science modules run in parallel. The Patent Strategist performs real-time prior art sweep across HBM, GDDR, and LPDDR patent families. The system targets SRAM-on-DRAM stacking alternatives using domestically available silicon and substrate materials.
HIIE's architecture exploration targets B> 1 TB/s at < 30% of current HBM2e material cost. Bandwidth efficiency η = B/Pwatts is optimized against domestic supply chain constraints.
Expected Outcomes: Architecture whitepaper, provisional patent claims, BOM with US supplier pricing, VHDL/Verilog controller specification. Yellow paper for formal protocol specification if a novel memory bus protocol emerges.
Use Case 3 — GPU Batch Manufacturing Asset System
Alice's Intent: "Create a manufacturing asset system that batch produces a specific kind of product — like a GPU."
HIIE Approach: Manufacturing Systems module designs the full factory line: wafer handling, die bonding, substrate attachment, thermal interface application, and burn-in testing stations.
where A is die area (mm2) and D0 is defect density (defects/cm2). The system optimizes batch size B∗ to maximize throughput-per-dollar:
Expected Outcomes: Process flow diagram (SVG), equipment specification list, facility layout CAD, yield model, QC system design, environmental report.
Use Case 4 — Environmentally Net-Positive AI Compute Machine
Alice's Intent: "Generate an environmentally net positive AI machine that produces a positive carbon offset."
HIIE Approach: Environmental Systems module leads. The design targets a carbon offset ∆C> 0:
Options explored: waste heat capture for building heating, on-site solar generation, direct air capture integration, and renewable energy certificate procurement. The carbon payback period t∗ is computed as:
Expected Outcomes: Carbon accounting report, hardware specification, renewable integration plan, net-positive certification pathway.
Use Case 5 — Drone Fleet Factory with Headwear Control Interface
Alice's Intent: "Make a factory line that produces fleets of drones that use headwear for controlling the drones."
HIIE Approach: Manufacturing Systems designs drone assembly line. Software Engineering generates the EEG/EMG headwear signal processing pipeline. The control latency constraint drives the firmware architecture:
(50 ms is the human proprioceptive threshold for natural control feel.) Typical budget: τEEG ≈ 10 ms, τproc ≈ 15 ms, τradio ≈ 5 ms, τactuator ≈ 10 ms.
Expected Outcomes: Factory line design, drone PCB schematic, headwear firmware, BOM, patent novelty analysis, viability report.
Use Case 6 — Chemical Compound Analysis Agent for Novel Materials
Alice's Intent: "Find bounties and train a local agent AI model that all it does is analyze chemical compounds for creating new materials."
HIIE Approach:Chemistry & Materials module deploys a fine-tuned specialist model trained on PubChem, ChemRxiv, and materials science literature. The persistent fine-tuning layer (§8.9) continuously improves this specialist model using compound analysis outcomes as training signal, with MLX-LM running post-project LoRA passes and ANE benchmarked as a concurrent path. The agent participates in open science bounty programs (Materials Project, NIST challenge programs). Outputs feed back into HIIE's ChromaDB as a curated materials corpus.
where Aj is the fingerprint bit-set of compound j. Compounds with Snovel> 0.85 trigger provisional patent drafting.
Expected Outcomes: Fine-tuned specialist model, materials database, novel compound candidates, provisional patent drafts, bounty participation record.
Use Case 7 — Localized Hadron Collision Experiment Platform
Alice's Intent: "Make a localized version of the CERN hadron collider."
HIIE Approach:This use case represents HIIE's most ambitious scope. The Theoretical Engineer and Civil & Structural Engineer immediately establish the physically achievable envelope. HIIE is honest about the energy gap:
A tabletop RF quadrupole linac achieves Ecm ∼ 10–100 keV, suitable for educational use and materials analysis. Cyclotron radius scales with momentum:
For a compact design targeting r ≤ 0.5 m, field strength B ≈ 1 T and beam energy ∼ 10 MeV are achievable with superconducting coils.
Ethics Officer reviews radiation safety under NRC 10 CFR Part 30. Feasibility Manager flags the gap between popular conception and buildable reality. HIIE designs what is buildable, not what is aspirationally described.
Expected Outcomes: Feasibility-scoped design (tabletop cyclotron/linac), radiation shielding specification, CAD files, safety protocols, patent landscape analysis.
§11Ethics Board & Self-Governance Model
Ethics is not a terminal filter — it is a continuous layer woven through every stage of reasoning and generation. No technological capability justifies ethical compromise. This is an architecture decision, not a policy position.
Six Core Pillars
- »Harm Prevention — Dual-use detection on all outputs. Weaponizable designs trigger mandatory Alice review.
- »Environmental Responsibility — All designs carry a carbon impact score. Net-negative outputs flagged; greener alternatives actively recommended.
- »Full Transparency — Every recommendation includes a complete reasoning trace. No black-box outputs.
- »Human Primacy — HIIE has no autonomous consequence. Every real-world physical action requires explicit human authorization from Alice.
- »Equitable Design — Outputs must not create systems that systematically disadvantage protected groups or enable inappropriate concentration of power.
- »Immutable Audit Trail — Tamper-evident log of all ethics decisions per project, exportable for third-party review.
Escalation Protocol
Ethics Officer → Arthur (AI Co-Director) → Alice (human principal). Risk scoring R ∈ [0, 100]:
HIIE cannot self-modify its ethics framework — this layer is protected from all instruction overrides.
§12Data Strategy — Storage, Streaming & Retrieval
Three-Tier Data Model
| Tier | Location | Content | Persistence |
|---|---|---|---|
| Hot (Active) | 256GB SSD | Model weights, active project state, vector index shards, OS, services, active LoRA adapters | Persistent — managed rotation by project lifecycle |
| Warm (Archive) | 5TB HDD | Completed outputs, full ChromaDB, curated datasets, model checkpoints, versioned adapter archive | Persistent — compressed and indexed |
| Stream (Live) | RAM only | Real-time web content, live patents, GitHub, papers | Never written to disk — analyzed in RAM, raw content discarded |
| Training Partition | HDD (ChromaDB) | Labeled project outcome pairs for fine-tuning | Persistent — partitioned within ChromaDB, batch-consumed by MLX-LM at project close |
Research Group agents retrieve and analyze live internet sources entirely in the 8GB streaming RAM buffer. Only extracted structured insights are embedded and written to ChromaDB on HDD.
ChromaDB Collection Architecture
ChromaDB performs Approximate Nearest Neighbour (ANN) search natively via HNSW (Hierarchical Navigable Small World graphs). No additional binary search layer is implemented — HNSW handles all ANN retrieval optimally for HIIE's embedding workloads at the operating collection sizes. HIIE partitions ChromaDB into three explicit, non-overlapping collections:
- »Active RAG Collection — hot vector shards for all currently active projects. This collection's index resides on SSD (§3.2), not HDD, for sub-millisecond retrieval during agent reasoning. At project close, the collection is migrated to the archive collection on HDD.
- »Training Partition — labeled output pairs from completed projects, batch-consumed by the fine-tuning process at project close (§8.9). Partitioned separately to prevent live retrieval queries from contaminating the training data distribution.
- »Archive Collection — embeddings from completed projects retained for cross-project retrieval and long-term pattern analysis. Stored on HDD; queried only on explicit demand, never during active inference.
Metadata Indexing. All embeddings across all collections carry four mandatory metadata fields, indexed at write time:
| Field | Type | Purpose |
|---|---|---|
project_id | String (UUID) | Scopes all retrieval and audit queries to a specific project |
agent_role | Enum | Filters embeddings by the producing agent; enables per-role retrieval |
fscore | Float [0–100] | Enables quality-gated retrieval — training partition queries can filter out low-scoring outputs |
adapter_version | String | Tags embeddings with the LoRA adapter version active at generation time; supports adapter regression analysis |
These fields are enforced at write time — any embedding submitted without all four fields populated is rejected by the FastAPI ingestion layer before reaching ChromaDB.
HDD Directory Structure
The 5 TB HDD uses a deterministic directory hierarchy. Every path is structured and machine-readable, enabling automated archival, retrieval, and adapter version management without filesystem scanning.
/projects/{id}_{client}_{date}/
/outputs/ -- final deliverable package
/specs/ -- spec sheets and BOMs
/cad/ -- FreeCAD, KiCad, SVG files
/patents/ -- patent drafts and prior art records
/ethics/ -- immutable Ethics Officer reports
/checkpoints/ -- serialized agent state snapshots
metadata.json -- project manifest and Fscore summary
/adapters/{agent_role}/{version}_{date}/
versioned LoRA adapter files per agent role
active -> symlink to current deployed version
/chromadb/
/training_partition/ -- labeled pairs for LoRA fine-tuning (§8.9)
/project_embeddings/ -- archive collection (completed projects)
/archive/ -- compressed snapshots for point-in-time restoreProject directory naming follows {id}_{client}_{date} where id is the 8-character project UUID prefix, client is a sanitized client identifier, and date is the project close date in YYYYMMDD format — producing lexicographically sortable, human-readable paths with no filesystem metadata dependency. Adapter versioning follows {version}_{date} under each agent role directory, consistent with the versioning scheme in §8.9.6. An active symlink in each role directory points to the currently deployed adapter. Treasury Agent rollback (§8.9.6) operates by atomically repointing this symlink — no file moves required.
ChromaDB persistence maps each collection to a dedicated subdirectory, matching ChromaDB's native per-collection layout. The /archive/ subdirectory holds periodic compressed snapshots of the project_embeddings collection, enabling point-in-time restoration without full ChromaDB reconstruction.
Data Sources by Domain
| Domain | Sources |
|---|---|
| Patents | USPTO, EPO Espacenet, Google Patents, WIPO PatentScope, JPO |
| Research Papers | arXiv, PubMed Central, IEEE Xplore (OA), ChemRxiv, bioRxiv |
| Hardware & Standards | NIST, IPC, JEDEC, Mouser/Digikey datasheets, OSHWA |
| Code | GitHub public repos, crates.io, PyPI, npm documentation |
| AI Research | Hugging Face papers, arXiv cs.AI, Semantic Scholar |
| Materials | Matweb, ASM International (OA), NIST Materials Data Repository |
| Manufacturing | JLCPCB/PCBWay capability specs, industrial supplier databases |
| Environmental | EPA databases, carbon accounting frameworks, lifecycle databases |
Research Agent Credential Store & Source Quality
High-value sources require authenticated access. A credentials store holds authenticated access tokens for IEEE Xplore, PubChem, USPTO, Google Patents, arXiv, and other premium databases. Research agents query this store before attempting retrieval. Paywalled sources without available credentials generate a credential gap flag to the PM's onboarding registry (§7.3) rather than a silent retrieval failure — the distinction matters for Alice's provisioning decisions.
Source quality discrimination is a trained capability, not a hardcoded filter. Each Research agent's LoRA adapter trains on labeled examples of high-quality versus low-quality sources per domain. USPTO patents and NIST data are authoritative for their domains; SEO content aggregators are not. This discrimination lives in adapter weights and improves with each project cycle.
Negative knowledge is an explicit training signal. When a retrieved source contributes to an output that the anti-slop validator flags or that Alice rejects at a gate, that source receives a negative training signal attached to the labeled pair in the ChromaDB training partition. The Research agent gradually learns which corners of the information space are reliable versus unreliable for each domain — without requiring manual curation.
§13Self-Hosted UI Toolchain — Autonomous Visualization & Implementation
HIIE's outputs are not static documents delivered to Alice for manual processing. The self-hosted toolchain enables AI agents to autonomously generate, render, and iterate on designs within a pre-configured visual environment. Every tool listed below is pre-installed, containerized under Coolify, and accessible via authenticated web interface.
Toolchain Overview
| Tool | Category | HIIE Integration |
|---|---|---|
| FreeCAD (headless + GUI) | 3D/Mechanical CAD | Agents invoke FreeCAD Python API to generate and validate 3D models autonomously. Alice views results via browser-accessible VNC session. Supports STL, STEP, DXF export. |
| KiCad (headless + GUI) | PCB/Schematic Design | Hardware Engineering agent generates KiCad project files programmatically. Gerber file export automated. Visual review in KiCad GUI via VNC. |
| Stirling PDF | Document Tools | All whitepapers, patent drafts, spec sheets, and reports rendered to PDF via Stirling PDF API. Alice downloads directly from OpenClaw. |
| Next.js Admin Dashboard | Admin Interface | Purpose-built React application over Grafana HTTP API; KPI chips, kill switches, adapter version history, HCT spend rates, operational parameter controls — the primary Alice system interface (§13.4). |
| Nextcloud | File Management | Central file system for all project assets. Agents write outputs here; Alice accesses via web browser. Version history maintained per project. |
| Tectonic / LaTeX | Document Generation | Whitepapers and yellow papers compiled from HIIE-generated LaTeX source by Documentation Architect agent. |
| Grafana + Prometheus | Metrics Backend | Metrics collection and storage layer; exposed as HTTP API to Next.js admin dashboard; not the primary user-facing interface. |
| Open WebUI | Model Interface | Local LLM interface for direct Alice-to-model interaction outside formal project flows. |
| Netlistsvg | PCB Visualization | Automated netlist visualization from KiCad exports, rendered to SVG for patent drawings. |
| Structurizr Lite | Architecture Diagrams | C4 architecture diagram generation for all software system outputs. |
| PlantUML server | UML Diagrams | UML diagram rendering embedded in documentation workflows. |
| OpenLCA | Lifecycle Assessment | Environmental lifecycle analysis for all material and manufacturing outputs. |
Layering and Cross-Section Visualization
For mechanical designs (use cases 1, 5, 7), HIIE generates layered FreeCAD assemblies where each sub-system is an independent body on a named layer. Alice can:
- »Toggle layer visibility to inspect internal structures (e.g., view PCB traces inside an enclosure)
- »Export cross-section views as SVG for inclusion in patent drawings
- »Run FreeCAD's FEM workbench for finite element stress analysis
- »Animate kinematic assemblies to validate mechanical motion
Self-Hosted Architecture Auditing
- »Custom audit dashboard — FastAPI endpoint queries ChromaDB for all decisions, flags, and validation results on a given project, rendered in Grafana
- »Immutable ethics log viewer — read-only interface for all ethics officer reports, exportable to PDF via Stirling
- »Dependency graph renderer — visualizes agent task dependencies and completion state in real-time
- »BOM diff tool — compares successive BOM versions to flag cost or sourcing regressions between design iterations
Next.js Admin Dashboard
The primary Alice-facing system interface is the Next.js admin dashboard — a purpose-built React application that queries the Grafana HTTP API and renders metrics as purpose-built components. Grafana and Prometheus remain as the metrics collection and storage backend. The Next.js layer is the application Alice actually interacts with.
Variable-Driven Data Architecture
All metrics are stored in allocated fixed slots — defined data contracts between the Grafana HTTP API and the frontend. Adding a new metric requires only defining its slot and writing a component; no dashboard infrastructure rebuild is needed. This makes the frontend extensible without touching the metrics layer.
Dashboard Surfaces
- »Real-time RAM, GPU, and CPU utilization with the 85% throttle threshold visually marked as a reference line
- »Per-agent HCT spend rate and remaining budget
- »Active project count and SSD working budget consumption
- »Agent Fscore trends rolling over the last 10 projects
- »Adapter version history with Fscore delta per version and rollback status
- »System KPI health indicators (§8.8.2) displayed as status chips (green/amber/red) against defined targets
- »Agent kill switches — toggle controls per agent role that write directly to the agent registry (§7.3); Alice-accessible at any time, no confirmation required
Operational Parameter Control
Modifications to operational parameters — base HCT weights, throttle thresholds, adapter version pinning — are made through the dashboard frontend, not through direct infrastructure access. All parameter changes are logged to the immutable audit trail. No infrastructure-level access is required for routine system management.
§14Output Engine — Deliverable Types
| Output Type | Format | Description |
|---|---|---|
| Technical Spec Sheet | PDF + Markdown | Full engineering spec: dimensions, tolerances, performance targets, material callouts |
| Bill of Materials | XLSX + JSON | Components and materials with US sourcing, costs, MOQ, live availability |
| Patent Draft | Provisional patent application with claims, abstract, technical drawings | |
| Viability Report | Feasibility scores, cost estimate, timeline projection, risk matrix | |
| Schematic / CAD Files | KiCad / FreeCAD / SVG | Machine-readable design files, auto-generated by agents |
| Code Package | GitHub-ready repo | Production-grade, documented, tested code with CI configuration |
| Environmental Report | Carbon footprint, net-positive pathway, material lifecycle analysis | |
| Ethics Assessment | Full ethics board review, risk scores, flags, resolutions — immutable | |
| Process Flow Diagram | SVG + PDF | Manufacturing process visualization |
| Technical Whitepaper | PDF + HTML | Full whitepaper for commercialization, fundraising, or publication |
| Yellow Paper | Formal mathematical/protocol specification for cryptographic or novel protocol designs |
§15Distribution & Commercialization Plan
Stage 1 — Internal Capability (Months 1–6)
HIIE used exclusively by Arthur Labs. Every client project benefits from HIIE-quality output: validated spec sheets, patent strategy, feasibility reports. Arthur Labs competes differently from any other development organization. Self-funding through existing contracts. Registered Agentics hosts the primary Mac Mini node.
Stage 2 — API Product (Months 6–18)
| Tier | Price | Includes |
|---|---|---|
| Explorer | $299/month | 5 projects/month, core spec + BOM + viability |
| Builder | $999/month | 20 projects/month, full output package + patent draft + dedicated Mac Mini at Registered Agentics |
| Enterprise | Custom | Unlimited projects, dedicated agent config, white-label, SLA, Registered Agentics hardware contract |
| Developer API | $0.05/token | Pay-per-use pipeline access for third-party integrations |
Stage 3 — Licensed Platform (Months 18–36)
HIIE licensed as a deployable platform to large manufacturers, defense contractors (non-weapons applications), and universities. Licensees run on their own infrastructure or via Registered Agentics. Arthur Labs provides model updates, ethics framework maintenance, and support contracts.
IP Strategy
- »Arthur Labs retains full IP on HIIE system architecture, pipeline, ethics framework, and all domain modules
- »Clients own the IP in outputs generated for their projects — no Arthur Labs claim
- »Open-source non-core components to build developer ecosystem; keep inference core and ethics layer proprietary
§16Patent Strategy & Provisional Filing Fees
Provisional Patent Applications
HIIE generates provisional patent application drafts for client review. Provisional applications establish a priority date without requiring full examination. Key fee structure (USPTO, effective 2025):
| Entity Type | Provisional Filing Fee | Notes |
|---|---|---|
| Micro Entity | $320 | ≤ 4 prior applications, income threshold |
| Small Entity | $640 | < 500 employees |
| Large Entity | $1,600 | Standard rate |
| Maintenance Fees (Non-Provisional, After Grant) | Amount |
|---|---|
| 3.5 years | $800 (small) / $1,600 (large) |
| 7.5 years | $1,800 (small) / $3,600 (large) |
| 11.5 years | $3,700 (small) / $7,400 (large) |
Note: Fees subject to change. HIIE-generated drafts are reviewed by a licensed patent attorney before filing. HIIE documents human-in-the-loop involvement at every step to satisfy USPTO inventorship requirements.
Global Patent Coverage — Estimated Costs
| Jurisdiction | Filing Route | Estimated Cost |
|---|---|---|
| United States | Provisional + non-provisional | $3,000–$15,000 |
| Europe (EPO) | EPC application | EUR 5,000–15,000 |
| Japan (JPO) | National phase | JPY 200,000–600,000 |
| PCT (International) | PCT application | $3,500–$8,000 |
HIIE's Patent Strategist tracks all deadlines and generates cost projections as part of every project's viability report.
§17Phased Development Roadmap
| Phase | Milestones |
|---|---|
| Phase 1 (Months 1–6) Foundation | Deploy OpenClaw + Coolify on Mac Mini M4 Pro at Registered Agentics. Implement Socratic Dialogue Engine. Build Hardware Engineering module. Integrate Patent Strategist with USPTO/Google Patents. Deliver first HIIE-generated project to Arthur Labs client. Begin populating ChromaDB. Deploy self-hosted UI toolchain (FreeCAD, KiCad, Stirling PDF, Nextcloud). Build fine-tuning training data partition into ChromaDB — project outcomes begin accumulating as labeled training pairs. Configure MLX-LM for break-state GPU fine-tuning. Begin ANE benchmarking via private API. |
| Phase 2 (Months 6–12) Full Agent Team | Launch all domain modules. Ethics Officer with full scoring and audit logging. PySpice electrical simulation. Full project agent teams. Anti-slop validation framework fully operational. Launch API product. Target: 10 paying external clients. Registered Agentics multi-machine hosting live. First LoRA adapter deployment via MLX-LM — Feasibility Manager and Patent Strategist adapters trained on Phase 1 outcomes. Fscore delta tracking begins. ANE vs. MLX-LM efficiency benchmarks published internally. |
| Phase 3 (Months 12–24) Simulation + Fine-Tuning | FreeCAD mechanical simulation. Full factory line and batch manufacturing design. Environmental impact scoring in all modules. Full specialist adapter suite across all domain agent roles deployed via MLX-LM. Adapter versioning live on HDD. Arthur matures as persistent cross-session companion. ANE concurrent fine-tuning evaluated for production promotion. Scale to 100+ API clients. Builder/Enterprise clients begin receiving year-one machines with trained adapter packages. |
| Phase 4 (Months 24–48) Platform + Custom Hardware | Purpose-built inference cluster designed by HIIE itself. LPU/custom chip generation. Multi-layer fine-tuning matured; ANE promoted to concurrent production path if Phase 3 benchmarks confirm stability. Full autonomous design-to-patent pipeline. Platform licensing. HIIE designs its own next-generation compute hardware — potentially including custom NPU architectures optimized for the fine-tuning loop it has been running. |
§18Risks, Limitations & Mitigations
| Risk | Likelihood | Impact | Mitigation |
|---|---|---|---|
| Model hallucination in engineering specs | High | High | Simulation validation required before any design clears pipeline; physical ground-truth anchoring mandatory |
| RAM pressure under full multi-agent load | Medium | Medium | Celery async queuing; state serialization to SSD above 85% memory pressure; Nactive throttle enforced |
| Patent data staleness creating prior art blind spots | Medium | Medium | Live retrieval on every project — no cached patent data older than 24 hours used in novelty analysis |
| Ethics framework circumvention | Low | Very High | Hard-coded constraints in protected system layer; Ethics Officer runs as a separate model instance |
| Large lab models closing capability gap | High | Medium | HIIE's moat is the full pipeline + ethics governance + domain specialization + self-improving feedback loop |
| Single hardware node failure | Low | High | Daily HDD backup; Coolify restart policies; all project state checkpointed to SSD; Registered Agentics on-site maintenance |
| Legal uncertainty around AI-generated patent claims | Medium | High | HIIE generates drafts for human attorney review — not direct filing; human-in-the-loop documented at every step |
| Recursive loop / stack overflow | Medium | Medium | Hard depth limit Dmax = 8; cosine similarity divergence enforcement; Celery task timeout at 300s per agent |
| HCT economy miscalibration causing agent starvation | Low | Medium | Treasury Agent monitors spending velocity; reserve pool absorbs cascade failures; α,β,γ coefficients recalibrated per project by Treasury Agent |
| Alice intake gate creating friction rather than convergence | Low | Medium | Gate returns one targeted question per cycle, never a list; Exploratory Mode bypasses gate entirely; Arthur surfaces calibration recommendations if pass rate degrades below 70% |
| System-economy reputation scores calcifying around early data | Low | Low | Exponential decay (λd, 90-day half-life) ensures recent performance always outweighs historical; Arthur flags stale weight distributions |
| ANE private API instability across macOS updates | Medium | Low | Production fine-tuning runs on MLX-LM (stable, open-source); ANE path is research/benchmark only; adapter deployment and training data accumulation are never blocked by ANE API changes |
| MLX-LM framework regression | Low | Medium | Version-pinned in Coolify; stable public API; rollback to prior pinned version if update breaks fine-tuning pipeline |
| LoRA adapter degradation from low-quality training batches | Low | Medium | Adapter versioning with rollback; Treasury Agent monitors Fscore delta per adapter version; degraded adapters automatically flagged and rolled back |
§19Conclusion
The Hardware Innovation Intelligence Engine represents a genuine category creation in applied AI — not a tool, not an assistant, but a complete innovation organization compressed into an ethically-governed intelligence system. Where existing AI systems excel at fragments of the innovation pipeline, HIIE is designed to own the entire chain from human intent to physical engineered reality. It is what emerges when the reasoning capabilities of frontier language models are combined with the disciplined, domain-grounded methodology of a world-class engineering firm — the closest existing analogy being what one would achieve if CRISPR-GPT and a frontier reasoning model produced a system capable of touching physical space.
The Mac Mini M4 Pro implementation, hosted at Registered Agentics, proves viability at minimum hardware cost, generating commercial revenue before scaling to purpose-built infrastructure. The Persistent Intellectual Capital layer (§8.9) means the machine does not merely execute projects — it compounds from them. Every validated output encodes learning into specialist model weights via MLX-LM fine-tuning during post-project idle cycles, with concurrent ANE fine-tuning under active benchmarking as a future concurrent path.
Ethics and anti-slop validation are not HIIE's constraints — they are HIIE's competitive advantage. As AI systems become more capable, those trusted with consequential engineering decisions will be the ones with demonstrably robust human oversight, embedded governance, and validation architectures that prevent plausible-sounding nonsense from entering the physical world.
The future of machines will not be designed by humans alone, nor by AI alone. It will be designed through the collaboration HIIE is built to enable — human intent directed by values, executed with engineering precision, validated against the physical world, and improved with every project that completes.
§20Terms, Legal Compliance & Liability
Intellectual Property Notice
Arthur Labs, Inc., incorporated in Wyoming, retains all intellectual property rights in the HIIE system architecture, pipeline design, ethics governance framework, anti-slop validation methodology, and all domain modules described in this whitepaper. Outputs generated by HIIE on behalf of a client are the exclusive property of that client under the applicable service agreement. Arthur Labs asserts no ownership over client-directed outputs.
Patent and Filing Disclaimer
HIIE generates provisional patent application drafts and patent strategy analyses as an informational service. These materials are not legal advice and do not constitute the work product of a licensed patent attorney. All patent filings must be reviewed, amended, and submitted by a licensed patent practitioner in the relevant jurisdiction. Alice (the directing human principal) is responsible for ensuring compliance with USPTO inventorship and duty-of-disclosure requirements. Arthur Labs makes no representations regarding patentability, freedom to operate, or enforceability of any HIIE-generated patent draft.
Engineering Liability Disclaimer
HIIE-generated engineering specifications, schematics, bills of materials, process designs, and other technical outputs are provided for informational and prototyping purposes only. The Anti-Slop Validation Framework (§5) is designed to minimize physically infeasible outputs through simulation validation, ground-truth anchoring, and feasibility scoring — but it does not constitute professional engineering certification and does not reduce the obligation for qualified review prior to implementation. They have not been certified, stamped, or reviewed by a licensed professional engineer (PE) unless explicitly contracted. Any implementation of HIIE outputs in a physical product, manufacturing environment, or safety-critical application must be reviewed and approved by qualified licensed engineers before use. Arthur Labs, Inc. accepts no liability for physical, financial, or consequential damages arising from the implementation of HIIE outputs without appropriate professional review.
Registered Agentics Service Terms
Registered Agentics, operated by Marko Ruble, provides physical hardware hosting, registered agent services, and logistics under separate service agreements. Arthur Labs, Inc. and Registered Agentics are independent entities. HIIE's intellectual property and ethical constraints are governed solely by Arthur Labs, Inc. Registered Agentics has no authority to modify, override, or grant exceptions to HIIE's ethics framework or operational constraints.
Data and Privacy
HIIE does not retain raw internet content analyzed during live retrieval sessions — it is processed in RAM and discarded. Structured embeddings stored in ChromaDB are retained as part of the project record under the applicable client service agreement. The fine-tuning training partition stores only labeled output pairs — no raw internet content, no PII. Clients should not submit personally identifiable information (PII) as part of project inputs unless explicitly covered by a data processing agreement with Arthur Labs, Inc.
Version and Architecture Notice
This document (HIIE v1.1.1, April 2026) represents the architectural specification as of its publication date. It is subject to revision as development progresses. The most current version is maintained internally by Arthur Labs, Inc. Ambition grounded in ethics and engineering rigor is how the future gets built.
Governing Law
This whitepaper and any service relationships described herein are governed by the laws of the State of Wyoming, United States of America. Disputes shall be subject to binding arbitration in Laramie County, Wyoming.
© 2026 Arthur Labs, Inc. All rights reserved. Watson Lewis-Rodriguez, Founder & CEO · Omaha, Nebraska — Wyoming Incorporated. Co-Author / Sponsor: Marko Ruble, Registered Agentics. HIIE v1.1.0.