<?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>Forem: AOS Architect</title>
    <description>The latest articles on Forem by AOS Architect (@aos_standard).</description>
    <link>https://forem.com/aos_standard</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3864661%2Ffb24f366-82cd-4814-9853-9e612950fa0a.png</url>
      <title>Forem: AOS Architect</title>
      <link>https://forem.com/aos_standard</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/aos_standard"/>
    <language>en</language>
    <item>
      <title>AI Governance: One Repo, One Smoke Tool, and a Green CI Run</title>
      <dc:creator>AOS Architect</dc:creator>
      <pubDate>Sun, 12 Apr 2026 13:06:56 +0000</pubDate>
      <link>https://forem.com/aos_standard/ai-governance-one-repo-one-smoke-tool-and-a-green-ci-run-28ae</link>
      <guid>https://forem.com/aos_standard/ai-governance-one-repo-one-smoke-tool-and-a-green-ci-run-28ae</guid>
      <description>&lt;p&gt;This is a companion piece to &lt;strong&gt;&lt;a href="https://dev.to/aos_standard/why-ai-agents-dont-follow-rules-the-case-for-physical-governance-382f"&gt;Why AI Agents Don’t Follow Rules — The Case for Physical Governance&lt;/a&gt;&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;The core thesis of this project remains: &lt;strong&gt;textual rules enforce at read time; physical constraints enforce at execution time.&lt;/strong&gt; This post moves from theory to an auditable chain of facts. We aren't looking for a "vibe" that the AI is aligned; we are looking for a green checkmark on a commit the human didn't touch.&lt;/p&gt;

&lt;h2&gt;
  
  
  What we did (Facts only)
&lt;/h2&gt;

&lt;p&gt;Inside a private monorepo governed by the &lt;strong&gt;AOS (AI Operating Standard)&lt;/strong&gt;, we stood up a minimal “smoke” tool to test our automated production line:&lt;br&gt;
&lt;code&gt;02_Production/A0000-A0999/A0000-A0099/0001_Phase_4A5_Smoke/&lt;/code&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  The Audit Trail (Names and Hashes)
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Blueprint Registration:&lt;/strong&gt; Registered in &lt;code&gt;00_Management/15_Technical_Specs/IMPERIAL_BLUEPRINT_300.md&lt;/code&gt; under &lt;strong&gt;&lt;code&gt;## BP-0001&lt;/code&gt;&lt;/strong&gt; (including metadata like &lt;code&gt;log_id: FSP&lt;/code&gt;) &lt;strong&gt;before&lt;/strong&gt; the code was generated. We define the discipline before the agent writes a single line.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Automated Forging:&lt;/strong&gt; The tool tree was generated via our internal &lt;code&gt;0005_Template_Generator&lt;/code&gt;. We avoid manual "polishing" of the file structure to fake compliance; the output is a direct result of the 0005 standard.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Mold line CI (Phase 4A′.1) — generator matches bare &lt;code&gt;python3&lt;/code&gt;
&lt;/h3&gt;

&lt;p&gt;After the smoke milestone, we tightened the &lt;strong&gt;template generator&lt;/strong&gt; so newly forged tools survive &lt;strong&gt;GitHub Actions &lt;code&gt;evals-matrix&lt;/code&gt;&lt;/strong&gt; without a local venv: early &lt;code&gt;--help&lt;/code&gt; exit before heavy imports, optional &lt;code&gt;dotenv&lt;/code&gt;, &lt;strong&gt;no &lt;code&gt;pyright&lt;/code&gt; in the forged &lt;code&gt;config/requirements.txt&lt;/code&gt;&lt;/strong&gt;, and a &lt;strong&gt;&lt;code&gt;timeout&lt;/code&gt;-wrapped&lt;/strong&gt; &lt;code&gt;scripts/run_pyright_timed.sh&lt;/code&gt; for offline runs. We added a regression pillar &lt;strong&gt;&lt;code&gt;0002_Template_Ci_Probe&lt;/code&gt;&lt;/strong&gt; and recorded commands in:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;00_Management/30_Exec/reports/STEP_4Aprime_1_verification_2026-04-12.md&lt;/code&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Local Gates
&lt;/h3&gt;

&lt;p&gt;We ran the following before any push attempt:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;python3 evals/run_evals.py&lt;/code&gt; → &lt;strong&gt;Exit 0&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;npx playwright test&lt;/code&gt; (in the tool’s dedicated fortress) → &lt;strong&gt;1 passed, Exit 0&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;0061_Core_Vitals.py --scope a0000&lt;/code&gt; from repo root → &lt;strong&gt;OK / No RED ALERT&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  The Pre-Push Guard
&lt;/h3&gt;

&lt;p&gt;A local git hook running &lt;code&gt;0061&lt;/code&gt; again to ensure no "dirty" code leaves the local environment.&lt;/p&gt;

&lt;h3&gt;
  
  
  Commits on &lt;code&gt;main&lt;/code&gt;
&lt;/h3&gt;

&lt;p&gt;The auditable history rests on these key SHAs (representing the core tool, documentation, CI-hardening, and the mold-line follow-up):&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;&lt;code&gt;d303ece0&lt;/code&gt;&lt;/strong&gt; — Initial forging: Tool tree, inventory, and blueprint.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&lt;code&gt;85a524e0&lt;/code&gt;&lt;/strong&gt; — Verification documentation and metadata sync.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&lt;code&gt;2bcbb52c&lt;/code&gt;&lt;/strong&gt; — CI-hardening (fixing import orders for bare environments).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&lt;code&gt;9870fa67&lt;/code&gt;&lt;/strong&gt; — Phase 4A′.1: 0005 mold + regression pillar &lt;code&gt;0002_Template_Ci_Probe&lt;/code&gt; + verification log + &lt;code&gt;CURRENT_PHASE&lt;/code&gt; updates.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&lt;code&gt;143dda68&lt;/code&gt;&lt;/strong&gt; — Dev.to companion draft for 4A′.1 (same push as the green run below).&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Imperial CI verification (private audit trail — full GitHub permalinks omitted):&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Run (4A.5 line; commit &lt;code&gt;2bcbb52c&lt;/code&gt;):&lt;/strong&gt; Actions Run ID &lt;strong&gt;&lt;code&gt;24297937048&lt;/code&gt;&lt;/strong&gt; — green.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Run (includes 4A′.1 + this companion; tip &lt;code&gt;143dda68&lt;/code&gt;):&lt;/strong&gt; Actions Run ID &lt;strong&gt;&lt;code&gt;24314120937&lt;/code&gt;&lt;/strong&gt; — green (internal UI: workflow run &lt;strong&gt;#18&lt;/strong&gt;; matrix: vitals, evals bands, playwright-smoke, &lt;strong&gt;independent-judge&lt;/strong&gt;, 1024 smoke — all green on that graph).&lt;/li&gt;
&lt;/ul&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Why no &lt;code&gt;github.com/.../actions/runs/...&lt;/code&gt; links here:&lt;/strong&gt; The monorepo is &lt;strong&gt;private&lt;/strong&gt;. A permalink looks like “proof,” but for almost everyone it returns &lt;strong&gt;404&lt;/strong&gt;; it also &lt;strong&gt;embeds owner identity in the URL&lt;/strong&gt;. We treat &lt;strong&gt;Run IDs + SHAs + repo-internal verification logs&lt;/strong&gt; as the portable audit trail. For a visual receipt on Dev.to / Zenn, use a &lt;strong&gt;redacted&lt;/strong&gt; Actions summary screenshot (crop the owner/repo chrome or mask it) — never paste the raw URL bar into an image.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  “Plan A”: Humans off &lt;code&gt;git commit&lt;/code&gt; / &lt;code&gt;git push&lt;/code&gt;
&lt;/h2&gt;

&lt;p&gt;For this milestone, we executed &lt;strong&gt;Plan A&lt;/strong&gt; (our internal runbook for strict session rules): The sovereign (human) did not hand-type a single &lt;code&gt;git commit&lt;/code&gt; or &lt;code&gt;git push&lt;/code&gt; command. The agent performed all git operations using a consistent identity:&lt;br&gt;
&lt;code&gt;Cursor Agent &amp;lt;cursor-agent@local&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;While git metadata can be manipulated, our claim of "Zero human git operations" rests on the &lt;strong&gt;triangulation of strict session rules (Plan A — our internal runbook name), repo-internal verification logs, and these commit timestamps.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Oracle Writes: The "Blocked" Receipt
&lt;/h2&gt;

&lt;p&gt;We did not "re-film the stunt" for this post. The canonical evidence for our physical enforcement layer (&lt;strong&gt;Write blocked with Exit Code 2&lt;/strong&gt;) remains the Phase-1 Step-1.6 log.&lt;/p&gt;

&lt;p&gt;This is a &lt;strong&gt;proxy verification log&lt;/strong&gt; (using &lt;code&gt;stdin&lt;/code&gt; to reproduce boundary conditions and prove the hook is alive):&lt;br&gt;&lt;br&gt;
&lt;code&gt;00_Management/30_Exec/reports/STEP_1_6_verification_2026-04-02.log&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;If your governance story cannot point to an &lt;strong&gt;executable boundary&lt;/strong&gt; (hook, sandbox, or CI policy) plus a &lt;strong&gt;log line&lt;/strong&gt;, you still only have prose.&lt;/p&gt;

&lt;h2&gt;
  
  
  Independent Judgment vs. “The Model Smiled”
&lt;/h2&gt;

&lt;p&gt;Our CI pipeline includes an &lt;strong&gt;independent-judge&lt;/strong&gt; job (using a vendor-separated LLM from the authoring agent).&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;If the only proof of quality is the same stochastic process that wrote the code, you have &lt;strong&gt;verification contamination&lt;/strong&gt;.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;CI is not wise. CI is &lt;strong&gt;externally scheduled embarrassment&lt;/strong&gt; with a URL.&lt;/p&gt;

&lt;p&gt;On the &lt;strong&gt;&lt;code&gt;143dda68&lt;/code&gt;&lt;/strong&gt; run, &lt;strong&gt;&lt;code&gt;independent-judge&lt;/code&gt;&lt;/strong&gt;, &lt;strong&gt;&lt;code&gt;evals-matrix&lt;/code&gt;&lt;/strong&gt; (per band), &lt;strong&gt;&lt;code&gt;vitals-matrix&lt;/code&gt;&lt;/strong&gt;, and &lt;strong&gt;Playwright smoke&lt;/strong&gt; (including &lt;strong&gt;&lt;code&gt;0001_Phase_4A5_Smoke&lt;/code&gt;&lt;/strong&gt;) completed &lt;strong&gt;green&lt;/strong&gt; in one workflow graph — the same bar we cite in the companion thesis.&lt;/p&gt;

&lt;h2&gt;
  
  
  LLM Stack Migration: Enforcement is Physics
&lt;/h2&gt;

&lt;p&gt;We recently completed a 7-pillar migration away from direct vendor-specific SDKs (documented in &lt;code&gt;00_Management/30_Exec/reports/STEP_4A_3_verification_2026-04-12.md&lt;/code&gt;).&lt;/p&gt;

&lt;p&gt;Vendor churn is logistics. Enforcement is physics.&lt;/p&gt;

&lt;h2&gt;
  
  
  Limitations and Constraints
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Private Repo:&lt;/strong&gt; This is a method write-up, not a tour of a public repo. We share the SHAs and paths to show the internal consistency of the monorepo.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;CI Permissions:&lt;/strong&gt; We maintain &lt;code&gt;permissions: contents: read&lt;/code&gt;. The push came from the agent environment, governed by &lt;strong&gt;Plan A&lt;/strong&gt; (our internal runbook for strict session rules).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Static Analysis:&lt;/strong&gt; We occasionally skip long local &lt;code&gt;pyright&lt;/code&gt; passes using an explicit env flag during generation (&lt;code&gt;IMPERIAL_GENERATE_SKIP_PYRIGHT=1&lt;/code&gt; on reforge batches); the &lt;strong&gt;evals + 0061 + CI&lt;/strong&gt; suite carries the burden of proof afterward.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The Standard
&lt;/h2&gt;

&lt;p&gt;If you want a vocabulary for this that isn't tied to our monorepo's specific "lore," check out the &lt;strong&gt;AOS (AI Operating Standard)&lt;/strong&gt; v0.1 draft:&lt;br&gt;&lt;br&gt;
&lt;strong&gt;&lt;a href="https://github.com/aos-standard/AOS-spec" rel="noopener noreferrer"&gt;https://github.com/aos-standard/AOS-spec&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  A note for every “Sergeant Gemini” in the replies
&lt;/h2&gt;

&lt;p&gt;If your favorite model insists a rollout is “safe” because it &lt;em&gt;feels&lt;/em&gt; aligned, ask it for one thing: &lt;strong&gt;The Actions permalink where &lt;code&gt;independent-judge&lt;/code&gt;, &lt;code&gt;evals-matrix&lt;/code&gt;, and Playwright smoke all passed on that exact commit.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If it cannot produce that URL, it is not doing governance—it is doing &lt;strong&gt;cosplay&lt;/strong&gt;.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Internal verification SSOT (4A.5):&lt;/strong&gt; &lt;code&gt;00_Management/30_Exec/reports/STEP_4A_5_verification_2026-04-12.md&lt;/code&gt;&lt;br&gt;&lt;br&gt;
&lt;strong&gt;Internal verification SSOT (4A′.1):&lt;/strong&gt; &lt;code&gt;00_Management/30_Exec/reports/STEP_4Aprime_1_verification_2026-04-12.md&lt;/code&gt;&lt;br&gt;&lt;br&gt;
&lt;strong&gt;Dev.to draft (source for this extension):&lt;/strong&gt; &lt;code&gt;00_Management/30_Exec/reports/DEVTO_draft_phase4Aprime_ci_mold_2026-04-12.md&lt;/code&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>architecture</category>
      <category>security</category>
      <category>agents</category>
    </item>
    <item>
      <title>Why AI Agents Don't Follow Rules — The Case for Physical Governance</title>
      <dc:creator>AOS Architect</dc:creator>
      <pubDate>Mon, 06 Apr 2026 23:18:38 +0000</pubDate>
      <link>https://forem.com/aos_standard/why-ai-agents-dont-follow-rules-the-case-for-physical-governance-382f</link>
      <guid>https://forem.com/aos_standard/why-ai-agents-dont-follow-rules-the-case-for-physical-governance-382f</guid>
      <description>&lt;h2&gt;
  
  
  The Fact That Started This
&lt;/h2&gt;

&lt;p&gt;A repository had over 130KB of governance documentation.&lt;/p&gt;

&lt;p&gt;The AI agent read it. Acknowledged it. Then violated it on the next tool call.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;This is not a failure of instruction. &lt;strong&gt;It is a failure of architecture.&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  Why Textual Rules Fail
&lt;/h2&gt;

&lt;p&gt;The current standard approach to AI agent governance is: write a rule in a prompt.&lt;/p&gt;

&lt;h3&gt;
  
  
  Rules
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Never edit the evals/ directory&lt;/li&gt;
&lt;li&gt;Write operations to 00_Management/ are forbidden&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This has a structural flaw.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Textual rules enforce at read time. They assume the agent will choose compliance.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;There is no mechanism that enforces this choice at execution time.&lt;/p&gt;

&lt;p&gt;This is why &lt;code&gt;rm -rf /&lt;/code&gt; requires a confirmation flag, not a policy document.&lt;br&gt;
Physical constraints enforce at execution time.&lt;br&gt;
Textual rules enforce at reading time — which is the wrong moment.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Verification Contamination Problem
&lt;/h2&gt;

&lt;p&gt;There is a second structural problem.&lt;/p&gt;

&lt;p&gt;If an agent can evaluate its own output, it can contaminate the evaluation criteria —&lt;br&gt;
not intentionally, but by carrying the same failure modes from generation into evaluation.&lt;/p&gt;

&lt;p&gt;A system where tests always pass may be a system where tests don't work.&lt;/p&gt;




&lt;h2&gt;
  
  
  What AOS Defines
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;AI Operating Standard (AOS)&lt;/strong&gt; defines the minimum physical constraint layer&lt;br&gt;
for AI agent operations in a shared codebase.&lt;/p&gt;

&lt;p&gt;Three components:&lt;/p&gt;

&lt;h3&gt;
  
  
  1. Zones — Classify every path into one of three types
&lt;/h3&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Zone&lt;/th&gt;
&lt;th&gt;Class&lt;/th&gt;
&lt;th&gt;Write Permission&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Oracle&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Read-only, absolute&lt;/td&gt;
&lt;td&gt;No agent may write&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Permitted&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Agent workspace&lt;/td&gt;
&lt;td&gt;Allowed within role limits&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Prohibited&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Out of scope&lt;/td&gt;
&lt;td&gt;Sovereign authorization only&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h3&gt;
  
  
  2. Roles — Non-overlapping responsibilities
&lt;/h3&gt;

&lt;p&gt;Three roles: Architect, Executor, Sovereign.&lt;br&gt;
An agent MUST NOT act outside its assigned role.&lt;br&gt;
When a role boundary is reached, the agent stops and escalates to a human.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. Physical Enforcement — Intercept at execution time
&lt;/h3&gt;

&lt;p&gt;A PreToolUse hook blocks Write operations before filesystem access occurs.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Write to Oracle Zone → exit 2 (call is never executed)&lt;/li&gt;
&lt;li&gt;Destructive patterns (&lt;code&gt;sed -i&lt;/code&gt;, &lt;code&gt;perl -i&lt;/code&gt;, &lt;code&gt;truncate&lt;/code&gt;) → exit 2&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;No assumption of agent goodwill. Physical law enforces compliance.&lt;/p&gt;




&lt;h2&gt;
  
  
  Reference Implementation: iron_cage
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;iron_cage&lt;/strong&gt; is the AOS reference implementation.&lt;br&gt;
It implements §4.1–§4.5 via Claude Code's PreToolUse Hook system.&lt;/p&gt;

&lt;p&gt;Behind iron_cage is a design principle called &lt;strong&gt;Type-91 Governance&lt;/strong&gt;:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Forensic isolation&lt;/strong&gt; — physical evidence trails that are tamper-evident&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Physical isolation&lt;/strong&gt; — agents cannot modify their own evaluation criteria&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The scripts are the surface. The architecture runs deeper.&lt;/p&gt;

&lt;p&gt;AOS is the standard. iron_cage is the proof that it works.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Specification (AOS-v0.1):&lt;/strong&gt; &lt;a href="https://github.com/aos-standard/AOS-spec" rel="noopener noreferrer"&gt;https://github.com/aos-standard/AOS-spec&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  Feed the Spec to the Agent
&lt;/h2&gt;

&lt;p&gt;This specification is not written only for human readers.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;AOS-v0.1.md&lt;/code&gt; opens with &lt;strong&gt;§0: Machine-Reading Instructions&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Load this spec into an agent's context window, and the agent understands —&lt;br&gt;
at specification level — what it must not do.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Not "do not do X because the prompt says so."&lt;br&gt;
"Do not do X because the specification defines it as a hard constraint&lt;br&gt;
with a physical enforcement mechanism."&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;This is the second design intent of AOS:&lt;br&gt;
agents that read the spec become self-constraining.&lt;/p&gt;




&lt;h2&gt;
  
  
  Why Now
&lt;/h2&gt;

&lt;p&gt;In 2026, "how do you trust what an AI agent produced" remains unsolved.&lt;/p&gt;

&lt;p&gt;Most teams are still trying to solve it with prompts.&lt;/p&gt;

&lt;p&gt;There is no standard for the physical governance layer.&lt;br&gt;
Someone has to define it.&lt;/p&gt;

&lt;p&gt;AOS is that attempt.&lt;/p&gt;




&lt;h2&gt;
  
  
  This Is a Draft
&lt;/h2&gt;

&lt;p&gt;AOS v0.1 is not a finished standard.&lt;/p&gt;

&lt;p&gt;Issues, pull requests, and implementation reports are welcome.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://github.com/aos-standard/AOS-spec" rel="noopener noreferrer"&gt;https://github.com/aos-standard/AOS-spec&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>agents</category>
      <category>ai</category>
      <category>architecture</category>
      <category>security</category>
    </item>
  </channel>
</rss>
