<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Matias Meza</title>
    <description>The latest articles on DEV Community by Matias Meza (@matiasmeza_09).</description>
    <link>https://dev.to/matiasmeza_09</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4076815%2Fab00ef22-862f-4ab3-b250-9e65be0d0207.png</url>
      <title>DEV Community: Matias Meza</title>
      <link>https://dev.to/matiasmeza_09</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/matiasmeza_09"/>
    <language>en</language>
    <item>
      <title>Arca Sophia Open-Core: Building Air-Gapped Local AI Inference for Industrial SCADA/PLC Systems</title>
      <dc:creator>Matias Meza</dc:creator>
      <pubDate>Thu, 13 Aug 2026 21:38:38 +0000</pubDate>
      <link>https://dev.to/matiasmeza_09/arca-sophia-open-core-building-air-gapped-local-ai-inference-for-industrial-scadaplc-systems-5917</link>
      <guid>https://dev.to/matiasmeza_09/arca-sophia-open-core-building-air-gapped-local-ai-inference-for-industrial-scadaplc-systems-5917</guid>
      <description>&lt;h1&gt;
  
  
  Arca Sophia Open-Core: Building Air-Gapped Local AI Inference for Industrial SCADA/PLC Systems
&lt;/h1&gt;

&lt;p&gt;Integrating Artificial Intelligence into Operational Technology (OT) and Industrial Control Systems (ICS) presents a fundamental engineering trade-off: &lt;strong&gt;Cloud latency vs. Plant Security.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;In continuous industrial processing, sending telemetry to public cloud LLMs breaks air-gapped network designs and introduces non-deterministic network delays.&lt;/p&gt;

&lt;p&gt;To solve this, we designed &lt;strong&gt;Arca Sophia Open-Core&lt;/strong&gt;—an open-source (AGPLv3) reference architecture for executing quantized LLMs directly at the edge, fully containerized and bound by physical safety rules.&lt;/p&gt;




&lt;h2&gt;
  
  
  Key Architectural Challenges in Industrial Edge AI
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Strict Air-Gap Requirements&lt;/strong&gt;: OT networks cannot expose open WAN ports or send raw telemetry to third-party endpoints.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Resource Constraints&lt;/strong&gt;: Edge nodes in industrial cabinets operate with capped hardware specifications (e.g., 4 vCPUs, 8GB RAM).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Non-Deterministic Risk&lt;/strong&gt;: Raw LLM output cannot directly trigger PLC actuators without a deterministic safety layer.&lt;/li&gt;
&lt;/ol&gt;




&lt;h2&gt;
  
  
  The Stack &amp;amp; System Architecture
&lt;/h2&gt;

&lt;p&gt;Arca Sophia Open-Core resolves these constraints through a modular Docker setup:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Inference Engine&lt;/strong&gt;: Runs 4-bit quantized GGUF models (e.g., &lt;code&gt;Qwen3-8B-Instruct&lt;/code&gt;) via local backends without internet access.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;PLC Simulation Layer&lt;/strong&gt;: Isolated container simulating real-time SCADA telemetry and register reads.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Deterministic Shield (SILIC-ETHIC)&lt;/strong&gt;: A rules-based containment layer that sanitizes model inferences against physical operational thresholds before any output is passed down the pipeline.&lt;/li&gt;
&lt;/ul&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
yaml
services:
  ics-core-sophia:
    build: .
    ports:
      - "8080:8000"
    environment:
      - SINTROPIC_SHIELD=active
      - NODE_ROLE=Architect
      - MODEL_PATH=/models/Qwen3-8B-Instruct-MTP-Q4_K_M.gguf
      - SPEC_TYPE=mtp
      - SPEC_DRAFT_N_MAX=2
      - CTX_SIZE=65536
    deploy:
      resources:
        limits:
          cpus: '4.0'
          memory: 8192M
    restart: unless-stopped
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>ai</category>
      <category>docker</category>
      <category>architecture</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
