Skip to content

Repository files navigation

Agentics Foundation

Agentics Foundation

The OIA Model · Reader

An interactive review and implementation workspace for the Open Intelligence Architecture — a nine-layer reference architecture for enterprise intelligent systems.

License: MITLiveVersionCloud RunReact 18TypeScriptVite

Live · oia.agentics.org · Reader's Digest · Decision Log · ADR-0001


About

The OIA Model — Open Intelligence Architecture — is the Agentics Foundation's reference architecture for intelligent systems at enterprise scale. It defines nine layers (physical compute at the bottom, the human and browser interface at the top), two state-holding layers that bracket the operational core, and six horizontal cross-layer spans that cannot be localised to any one layer.

This repository contains the OIA Model Reader: a single-page application that turns the two published digests (the Reader's Digest and the Decision Log Digest) into a practical, interactive system — allowing reviewers, architects, vendors, regulators, and researchers to use the model rather than just read it.

Every section of the source documents is preserved verbatim. Every section also carries a tied-in operator tool that produces a real Markdown artefact (brief, spec, memo, plan) you can paste straight into your operations.


Feature Highlights

Reading surface (verbatim from the source digests)

  • Masthead and foreword in their original institutional + personal registers
  • §1 Introduction through §8 Deferrals, the Decision Log Digest, and the Closing — every paragraph preserved
  • Six figure-quality SVG visualisations positioned inline with the prose they illuminate

Interactive implementation workspace

ToolWhat it produces
Workspace (hub)Live KPIs + single-file Markdown Review Package + JSON bundle for team sharing
Stack DiagramInteractive 10-layer × 6-span canvas with Assessment overlay
Architecture AssessmentRate each layer COHERENT / GAP / NOT YET / N/A — live span coherence scores
Provider Footprint33-vendor × 10-layer matrix; flags "vertical extension" (Decision 10)
Implementation RoadmapPer-layer checklists, Markdown plan export
ExplorerSearch 55 concerns, 91 reference technologies, 42 open questions
Decision Review RegisterPer-decision vote (REOPEN / HOLD / CONFIRM) + Markdown export
FeedbackForm backed by SQLite, five Foundation-featured questions + eleven review prompts

Per-section operator tools

Each prose section has a tied-in micro-tool that turns the content into a business deliverable:

SectionOperator toolArtefact
On ReadingReading Plan GeneratorTeam-channel reading plan by role × depth
ForewordEra Transition BriefExec-level "we are at this moment" memo
§1 IntroductionSystem Scope GeneratorProject-charter scope statement
§2.1 LineageGovernance OverlayFramework-stack mapping to OIA
§2.2 ContextUrgency BriefBoard-level urgency memo
§2.3 PropertiesLayer Priority PlanRanked investment plan
§3 Nine LayersLayer Scope MemoRACI-style owned-layers memo
§5 SpansSpan Gap MemoCISO / audit gap memo
§6 RelationshipsStack SpecGovernance stack spec for ARB / RFP
§7 AdoptionAdoption PlaybookFour-step program kickoff
§8 DeferralsCommunity InputSubmission to the Foundation
Decision LogReviewer BriefStance-tailored review protocol

All tools persist state to localStorage; every exported artefact is plain Markdown.


Architecture

┌──────────────────────────────────────────────────────────────────────┐
│ Client (oia.agentics.org) │
│ ┌──────────────────────────────────────────────────────────────┐ │
│ │ Single-page app — React 18 + TypeScript + TailwindCSS │ │
│ │ Telemetry-dashboard design system (palette-locked) │ │
│ └──────────────────────────────────────────────────────────────┘ │
└───────────────────────┬──────────────────────────────────────────────┘
│
HTTPS (SNI oia.agentics.org · CORS allow-list)
│
┌───────────────────────▼──────────────────────────────────────────────┐
│ Static hosting — GitHub Pages (oia.agentics.org) │
│ │
│ Cross-origin fetch ↓ /api/* │
│ │
│ Cloud Run service oia-model-reader (us-central1, Gen 2) │
│ Node 20 + Express 5 + better-sqlite3 │
│ │
│ SQLite volume mount: │
│ gs://agentics-oia-model-data → /data/feedback.db │
└──────────────────────────────────────────────────────────────────────┘

Design references

  • Telemetry UI aesthetic homage — see animated-telemetry-dashboard-section (1).tsx
  • Palette: #000000 / #FFFFFF / #F05122 (Agentics orange) — strict
  • All visual motion gated behind IntersectionObserver and disabled under prefers-reduced-motion

Quick Start

Prerequisites

  • Node.js ≥ 20
  • npm ≥ 10
  • For local feedback DB: no setup; the API writes to data/feedback.db on first run
  • For containerised builds: Docker ≥ 20.10

Local development

git clone https://github.com/agenticsorg/OIA-Model
cd OIA-Model
npm install
npm run dev

The SPA and feedback API run together on http://localhost:5173 via a Vite middleware plugin (server/vite-api-plugin.ts).

Production build (local)

npm run build # type-check + Vite build → dist/
npm run server:build # compile server TS → server-dist/
npm run server:start # run dist/ + API on PORT=8080

Container

docker build --platform=linux/amd64 -t oia-model-reader .
docker run --rm -p 8080:8080 \
-v $(pwd)/data:/data \
-e DB_PATH=/data/feedback.db \
oia-model-reader

Deployment

Production runs on Google Cloud Run (Gen 2) in project agenticsorg, region us-central1.

ComponentResource
Containerus-central1-docker.pkg.dev/agenticsorg/gcf-artifacts/oia-model-reader
ServiceCloud Run oia-model-reader, --execution-environment=gen2, allow-unauthenticated
Storagegs://agentics-oia-model-data mounted at /data for SQLite persistence
StaticGitHub Pages (gh-pages branch) serving the SPA on oia.agentics.org
DNSCloudflare CNAME oia.agentics.org → agenticsorg.github.io (DNS-only)
API CORSAllow-list: oia.agentics.org, agenticsorg.github.io, localhost

Redeploy (container only)

# 1. Build and push new image
TAG="v$(date +%Y%m%d-%H%M)"
IMG="us-central1-docker.pkg.dev/agenticsorg/gcf-artifacts/oia-model-reader:$TAG"
docker build --platform=linux/amd64 -t "$IMG".
docker push "$IMG"# 2. Deploy
gcloud run deploy oia-model-reader --image="$IMG" \
--region=us-central1 --project=agenticsorg

Redeploy (static SPA only)

export VITE_API_BASE="https://oia-model-reader-2slhzrawja-uc.a.run.app"
npm run build
echo oia.agentics.org > dist/CNAME
cp dist/index.html dist/404.html
# Push dist/ contents to the gh-pages branch

Feedback Channel & Queryable Data

Agentics Foundation members submit structured feedback via the Feedback section. Submissions are stored in SQLite (data/feedback.db locally, /data/feedback.db on Cloud Run, backed by GCS).

Schema (21 columns)

  • Identity — optional name / email / organisation / role; share_name toggle redacts from public listing
  • Foundation-featured prompts — hyperscaler monopolies, L8 certification, legacy vendor mapping, Foundation funding, regulatory alignment
  • Review prompts drawn from the digests — shape assessment, decisions to reopen + reasons, open-question contribution, missing concerns / tech / spans, vertical-extension experience, improvements, general notes

Query from the CLI

# Human-readable
npm run feedback:list
# Every field, every row
npm run feedback:full
# Arbitrary SELECT (SELECT only; mutations refused)
npm run feedback:query -- "SELECT id, role, substr(shape_response, 1, 120) FROM feedback"# Sync production DB down for local inspection
gcloud storage cp gs://agentics-oia-model-data/feedback.db ./data/feedback.db

Project Layout

OIA-Model/
├── src/
│ ├── sections/ 14 top-level sections + Workspace + Feedback
│ ├── components/
│ │ ├── viz/ Six SVG figures inline with the digest prose
│ │ └── micro/ 13 operator tools (Markdown-artefact generators)
│ ├── content/ Verbatim digest text · layers · spans · refs · decisions
│ ├── lib/ Workspace aggregation + export
│ └── styles/ Telemetry design tokens
├── server/ Production Express app + Vite dev middleware + SQLite
├── scripts/ Feedback CLI (list / full / query)
├── docs/ Source digests (v0.1)
└── plans/ ADR-0001 (the architecture decision record)

Contributing

The OIA Model is open for community review. Two paths:

  1. Through the UI — use the Feedback section on oia.agentics.org. All five Foundation-featured questions and eleven review prompts are structured for machine query.
  2. Through Git — open a pull request against main. Please follow the palette, verbatim-source, and section-structure conventions in plans/ADR-0001-oia-model-reader-ui.md.

For substantive architectural disagreement, cite a specific decision number in the form reopen decision NN, because … — as the Decision Log Digest itself requests.


Security & Privacy

  • The feedback API enforces a CORS allow-list (see server/handlers.ts).
  • Public listings of feedback redact name, email, and organisation for any submission where the reviewer left share_name unchecked. The listFeedbackPublic() view enforces this at the SQL level.
  • No secrets are stored in the repository. Cloudflare and Google credentials live in Google Secret Manager under the agenticsorg project.
  • Cloud Run is public (--allow-unauthenticated) — please do not submit confidential material. Only review-relevant content should be posted.

License

Released under the MIT License. See LICENSE.

Copyright © 2026 Agentics Foundation


Acknowledgments

  • Reuven Cohen — Founder, Agentics Foundation, author of the OIA Model Foreword.
  • Source documents — the OIA Model v0.1 Reader's Digest and the Decision Log Digest are the normative texts this UI renders.
  • Frameworks the model builds on — ISO/IEC 7498 (OSI), NIST Cybersecurity Framework, MITRE ATT&CK / ATLAS, NIST AI Risk Management Framework, OWASP Top 10 for LLM Applications, ISO/IEC 42001, Model Context Protocol.

Published by the Agentics Foundation · 2026

About

An interactive review and implementation workspace for the Open Intelligence Architecture — a nine-layer reference architecture for enterprise intelligent systems.

Resources

Stars

11 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { // Add copy buttons to all
 blocks
(function() {
function addCopyButtons() {
document.querySelectorAll('pre code').forEach(function(codeBlock) {
if (codeBlock.parentElement.hasAttribute('data-copy-added')) return;
codeBlock.parentElement.setAttribute('data-copy-added', 'true');
var btn = document.createElement('button');
btn.textContent = 'Copy';
btn.style.cssText = 'position:absolute;top:4px;right:4px;padding:2px 8px;font-size:11px;background:#4ecdc4;border:none;border-radius:4px;color:#1a1a2e;cursor:pointer;opacity:0.7;transition:opacity 0.2s;';
btn.onmouseover = function() { this.style.opacity = '1'; };
btn.onmouseout = function() { this.style.opacity = '0.7'; };
btn.onclick = function() {
navigator.clipboard.writeText(codeBlock.textContent).then(function() {
btn.textContent = 'Copied!';
setTimeout(function() { btn.textContent = 'Copy'; }, 1500);
});
};
codeBlock.parentElement.style.position = 'relative';
codeBlock.parentElement.appendChild(btn);
});
}
addCopyButtons();
// Re-run on dynamic content
var observer = new MutationObserver(addCopyButtons);
observer.observe(document.body, { childList: true, subtree: true });
})();
}
} catch(__e) { console.warn('[Userscript:Add Copy Buttons to Code Blocks]', __e); }
})();
(function(){
try {
var __m = "github.com";
var __re = new RegExp('^' + "github\\.com" + '
GitHub - agenticsorg/OIA-Model: An interactive review and implementation workspace for the Open Intelligence Architecture — a nine-layer reference architecture for enterprise intelligent systems. · GitHub
Skip to content

Repository files navigation

Agentics Foundation

Agentics Foundation

The OIA Model · Reader

An interactive review and implementation workspace for the Open Intelligence Architecture — a nine-layer reference architecture for enterprise intelligent systems.

License: MITLiveVersionCloud RunReact 18TypeScriptVite

Live · oia.agentics.org · Reader's Digest · Decision Log · ADR-0001


About

The OIA Model — Open Intelligence Architecture — is the Agentics Foundation's reference architecture for intelligent systems at enterprise scale. It defines nine layers (physical compute at the bottom, the human and browser interface at the top), two state-holding layers that bracket the operational core, and six horizontal cross-layer spans that cannot be localised to any one layer.

This repository contains the OIA Model Reader: a single-page application that turns the two published digests (the Reader's Digest and the Decision Log Digest) into a practical, interactive system — allowing reviewers, architects, vendors, regulators, and researchers to use the model rather than just read it.

Every section of the source documents is preserved verbatim. Every section also carries a tied-in operator tool that produces a real Markdown artefact (brief, spec, memo, plan) you can paste straight into your operations.


Feature Highlights

Reading surface (verbatim from the source digests)

  • Masthead and foreword in their original institutional + personal registers
  • §1 Introduction through §8 Deferrals, the Decision Log Digest, and the Closing — every paragraph preserved
  • Six figure-quality SVG visualisations positioned inline with the prose they illuminate

Interactive implementation workspace

ToolWhat it produces
Workspace (hub)Live KPIs + single-file Markdown Review Package + JSON bundle for team sharing
Stack DiagramInteractive 10-layer × 6-span canvas with Assessment overlay
Architecture AssessmentRate each layer COHERENT / GAP / NOT YET / N/A — live span coherence scores
Provider Footprint33-vendor × 10-layer matrix; flags "vertical extension" (Decision 10)
Implementation RoadmapPer-layer checklists, Markdown plan export
ExplorerSearch 55 concerns, 91 reference technologies, 42 open questions
Decision Review RegisterPer-decision vote (REOPEN / HOLD / CONFIRM) + Markdown export
FeedbackForm backed by SQLite, five Foundation-featured questions + eleven review prompts

Per-section operator tools

Each prose section has a tied-in micro-tool that turns the content into a business deliverable:

SectionOperator toolArtefact
On ReadingReading Plan GeneratorTeam-channel reading plan by role × depth
ForewordEra Transition BriefExec-level "we are at this moment" memo
§1 IntroductionSystem Scope GeneratorProject-charter scope statement
§2.1 LineageGovernance OverlayFramework-stack mapping to OIA
§2.2 ContextUrgency BriefBoard-level urgency memo
§2.3 PropertiesLayer Priority PlanRanked investment plan
§3 Nine LayersLayer Scope MemoRACI-style owned-layers memo
§5 SpansSpan Gap MemoCISO / audit gap memo
§6 RelationshipsStack SpecGovernance stack spec for ARB / RFP
§7 AdoptionAdoption PlaybookFour-step program kickoff
§8 DeferralsCommunity InputSubmission to the Foundation
Decision LogReviewer BriefStance-tailored review protocol

All tools persist state to localStorage; every exported artefact is plain Markdown.


Architecture

┌──────────────────────────────────────────────────────────────────────┐
│ Client (oia.agentics.org) │
│ ┌──────────────────────────────────────────────────────────────┐ │
│ │ Single-page app — React 18 + TypeScript + TailwindCSS │ │
│ │ Telemetry-dashboard design system (palette-locked) │ │
│ └──────────────────────────────────────────────────────────────┘ │
└───────────────────────┬──────────────────────────────────────────────┘
│
HTTPS (SNI oia.agentics.org · CORS allow-list)
│
┌───────────────────────▼──────────────────────────────────────────────┐
│ Static hosting — GitHub Pages (oia.agentics.org) │
│ │
│ Cross-origin fetch ↓ /api/* │
│ │
│ Cloud Run service oia-model-reader (us-central1, Gen 2) │
│ Node 20 + Express 5 + better-sqlite3 │
│ │
│ SQLite volume mount: │
│ gs://agentics-oia-model-data → /data/feedback.db │
└──────────────────────────────────────────────────────────────────────┘

Design references

  • Telemetry UI aesthetic homage — see animated-telemetry-dashboard-section (1).tsx
  • Palette: #000000 / #FFFFFF / #F05122 (Agentics orange) — strict
  • All visual motion gated behind IntersectionObserver and disabled under prefers-reduced-motion

Quick Start

Prerequisites

  • Node.js ≥ 20
  • npm ≥ 10
  • For local feedback DB: no setup; the API writes to data/feedback.db on first run
  • For containerised builds: Docker ≥ 20.10

Local development

git clone https://github.com/agenticsorg/OIA-Model
cd OIA-Model
npm install
npm run dev

The SPA and feedback API run together on http://localhost:5173 via a Vite middleware plugin (server/vite-api-plugin.ts).

Production build (local)

npm run build # type-check + Vite build → dist/
npm run server:build # compile server TS → server-dist/
npm run server:start # run dist/ + API on PORT=8080

Container

docker build --platform=linux/amd64 -t oia-model-reader .
docker run --rm -p 8080:8080 \
-v $(pwd)/data:/data \
-e DB_PATH=/data/feedback.db \
oia-model-reader

Deployment

Production runs on Google Cloud Run (Gen 2) in project agenticsorg, region us-central1.

ComponentResource
Containerus-central1-docker.pkg.dev/agenticsorg/gcf-artifacts/oia-model-reader
ServiceCloud Run oia-model-reader, --execution-environment=gen2, allow-unauthenticated
Storagegs://agentics-oia-model-data mounted at /data for SQLite persistence
StaticGitHub Pages (gh-pages branch) serving the SPA on oia.agentics.org
DNSCloudflare CNAME oia.agentics.org → agenticsorg.github.io (DNS-only)
API CORSAllow-list: oia.agentics.org, agenticsorg.github.io, localhost

Redeploy (container only)

# 1. Build and push new image
TAG="v$(date +%Y%m%d-%H%M)"
IMG="us-central1-docker.pkg.dev/agenticsorg/gcf-artifacts/oia-model-reader:$TAG"
docker build --platform=linux/amd64 -t "$IMG".
docker push "$IMG"# 2. Deploy
gcloud run deploy oia-model-reader --image="$IMG" \
--region=us-central1 --project=agenticsorg

Redeploy (static SPA only)

export VITE_API_BASE="https://oia-model-reader-2slhzrawja-uc.a.run.app"
npm run build
echo oia.agentics.org > dist/CNAME
cp dist/index.html dist/404.html
# Push dist/ contents to the gh-pages branch

Feedback Channel & Queryable Data

Agentics Foundation members submit structured feedback via the Feedback section. Submissions are stored in SQLite (data/feedback.db locally, /data/feedback.db on Cloud Run, backed by GCS).

Schema (21 columns)

  • Identity — optional name / email / organisation / role; share_name toggle redacts from public listing
  • Foundation-featured prompts — hyperscaler monopolies, L8 certification, legacy vendor mapping, Foundation funding, regulatory alignment
  • Review prompts drawn from the digests — shape assessment, decisions to reopen + reasons, open-question contribution, missing concerns / tech / spans, vertical-extension experience, improvements, general notes

Query from the CLI

# Human-readable
npm run feedback:list
# Every field, every row
npm run feedback:full
# Arbitrary SELECT (SELECT only; mutations refused)
npm run feedback:query -- "SELECT id, role, substr(shape_response, 1, 120) FROM feedback"# Sync production DB down for local inspection
gcloud storage cp gs://agentics-oia-model-data/feedback.db ./data/feedback.db

Project Layout

OIA-Model/
├── src/
│ ├── sections/ 14 top-level sections + Workspace + Feedback
│ ├── components/
│ │ ├── viz/ Six SVG figures inline with the digest prose
│ │ └── micro/ 13 operator tools (Markdown-artefact generators)
│ ├── content/ Verbatim digest text · layers · spans · refs · decisions
│ ├── lib/ Workspace aggregation + export
│ └── styles/ Telemetry design tokens
├── server/ Production Express app + Vite dev middleware + SQLite
├── scripts/ Feedback CLI (list / full / query)
├── docs/ Source digests (v0.1)
└── plans/ ADR-0001 (the architecture decision record)

Contributing

The OIA Model is open for community review. Two paths:

  1. Through the UI — use the Feedback section on oia.agentics.org. All five Foundation-featured questions and eleven review prompts are structured for machine query.
  2. Through Git — open a pull request against main. Please follow the palette, verbatim-source, and section-structure conventions in plans/ADR-0001-oia-model-reader-ui.md.

For substantive architectural disagreement, cite a specific decision number in the form reopen decision NN, because … — as the Decision Log Digest itself requests.


Security & Privacy

  • The feedback API enforces a CORS allow-list (see server/handlers.ts).
  • Public listings of feedback redact name, email, and organisation for any submission where the reviewer left share_name unchecked. The listFeedbackPublic() view enforces this at the SQL level.
  • No secrets are stored in the repository. Cloudflare and Google credentials live in Google Secret Manager under the agenticsorg project.
  • Cloud Run is public (--allow-unauthenticated) — please do not submit confidential material. Only review-relevant content should be posted.

License

Released under the MIT License. See LICENSE.

Copyright © 2026 Agentics Foundation


Acknowledgments

  • Reuven Cohen — Founder, Agentics Foundation, author of the OIA Model Foreword.
  • Source documents — the OIA Model v0.1 Reader's Digest and the Decision Log Digest are the normative texts this UI renders.
  • Frameworks the model builds on — ISO/IEC 7498 (OSI), NIST Cybersecurity Framework, MITRE ATT&CK / ATLAS, NIST AI Risk Management Framework, OWASP Top 10 for LLM Applications, ISO/IEC 42001, Model Context Protocol.

Published by the Agentics Foundation · 2026

About

An interactive review and implementation workspace for the Open Intelligence Architecture — a nine-layer reference architecture for enterprise intelligent systems.

Resources

Stars

11 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { // Force GitHub README to respect dark mode (function() { var style = document.createElement('style'); style.textContent = ' .markdown-body { color-scheme: dark light; } .markdown-body pre { background: #161b22 !important; } .markdown-body code { background: rgba(110, 118, 129, 0.4) !important; } .markdown-body table th, .markdown-body table td { border-color: #30363d !important; } .markdown-body img { background: #0d1117; } .markdown-body blockquote { border-left-color: #8b949e; } .markdown-body hr { border-color: #30363d; } '; document.head.appendChild(style); })(); } } catch(__e) { console.warn('[Userscript:GitHub Dark Mode README Fix]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ' GitHub - agenticsorg/OIA-Model: An interactive review and implementation workspace for the Open Intelligence Architecture — a nine-layer reference architecture for enterprise intelligent systems. · GitHub
Skip to content

Repository files navigation

Agentics Foundation

Agentics Foundation

The OIA Model · Reader

An interactive review and implementation workspace for the Open Intelligence Architecture — a nine-layer reference architecture for enterprise intelligent systems.

License: MITLiveVersionCloud RunReact 18TypeScriptVite

Live · oia.agentics.org · Reader's Digest · Decision Log · ADR-0001


About

The OIA Model — Open Intelligence Architecture — is the Agentics Foundation's reference architecture for intelligent systems at enterprise scale. It defines nine layers (physical compute at the bottom, the human and browser interface at the top), two state-holding layers that bracket the operational core, and six horizontal cross-layer spans that cannot be localised to any one layer.

This repository contains the OIA Model Reader: a single-page application that turns the two published digests (the Reader's Digest and the Decision Log Digest) into a practical, interactive system — allowing reviewers, architects, vendors, regulators, and researchers to use the model rather than just read it.

Every section of the source documents is preserved verbatim. Every section also carries a tied-in operator tool that produces a real Markdown artefact (brief, spec, memo, plan) you can paste straight into your operations.


Feature Highlights

Reading surface (verbatim from the source digests)

  • Masthead and foreword in their original institutional + personal registers
  • §1 Introduction through §8 Deferrals, the Decision Log Digest, and the Closing — every paragraph preserved
  • Six figure-quality SVG visualisations positioned inline with the prose they illuminate

Interactive implementation workspace

ToolWhat it produces
Workspace (hub)Live KPIs + single-file Markdown Review Package + JSON bundle for team sharing
Stack DiagramInteractive 10-layer × 6-span canvas with Assessment overlay
Architecture AssessmentRate each layer COHERENT / GAP / NOT YET / N/A — live span coherence scores
Provider Footprint33-vendor × 10-layer matrix; flags "vertical extension" (Decision 10)
Implementation RoadmapPer-layer checklists, Markdown plan export
ExplorerSearch 55 concerns, 91 reference technologies, 42 open questions
Decision Review RegisterPer-decision vote (REOPEN / HOLD / CONFIRM) + Markdown export
FeedbackForm backed by SQLite, five Foundation-featured questions + eleven review prompts

Per-section operator tools

Each prose section has a tied-in micro-tool that turns the content into a business deliverable:

SectionOperator toolArtefact
On ReadingReading Plan GeneratorTeam-channel reading plan by role × depth
ForewordEra Transition BriefExec-level "we are at this moment" memo
§1 IntroductionSystem Scope GeneratorProject-charter scope statement
§2.1 LineageGovernance OverlayFramework-stack mapping to OIA
§2.2 ContextUrgency BriefBoard-level urgency memo
§2.3 PropertiesLayer Priority PlanRanked investment plan
§3 Nine LayersLayer Scope MemoRACI-style owned-layers memo
§5 SpansSpan Gap MemoCISO / audit gap memo
§6 RelationshipsStack SpecGovernance stack spec for ARB / RFP
§7 AdoptionAdoption PlaybookFour-step program kickoff
§8 DeferralsCommunity InputSubmission to the Foundation
Decision LogReviewer BriefStance-tailored review protocol

All tools persist state to localStorage; every exported artefact is plain Markdown.


Architecture

┌──────────────────────────────────────────────────────────────────────┐
│ Client (oia.agentics.org) │
│ ┌──────────────────────────────────────────────────────────────┐ │
│ │ Single-page app — React 18 + TypeScript + TailwindCSS │ │
│ │ Telemetry-dashboard design system (palette-locked) │ │
│ └──────────────────────────────────────────────────────────────┘ │
└───────────────────────┬──────────────────────────────────────────────┘
│
HTTPS (SNI oia.agentics.org · CORS allow-list)
│
┌───────────────────────▼──────────────────────────────────────────────┐
│ Static hosting — GitHub Pages (oia.agentics.org) │
│ │
│ Cross-origin fetch ↓ /api/* │
│ │
│ Cloud Run service oia-model-reader (us-central1, Gen 2) │
│ Node 20 + Express 5 + better-sqlite3 │
│ │
│ SQLite volume mount: │
│ gs://agentics-oia-model-data → /data/feedback.db │
└──────────────────────────────────────────────────────────────────────┘

Design references

  • Telemetry UI aesthetic homage — see animated-telemetry-dashboard-section (1).tsx
  • Palette: #000000 / #FFFFFF / #F05122 (Agentics orange) — strict
  • All visual motion gated behind IntersectionObserver and disabled under prefers-reduced-motion

Quick Start

Prerequisites

  • Node.js ≥ 20
  • npm ≥ 10
  • For local feedback DB: no setup; the API writes to data/feedback.db on first run
  • For containerised builds: Docker ≥ 20.10

Local development

git clone https://github.com/agenticsorg/OIA-Model
cd OIA-Model
npm install
npm run dev

The SPA and feedback API run together on http://localhost:5173 via a Vite middleware plugin (server/vite-api-plugin.ts).

Production build (local)

npm run build # type-check + Vite build → dist/
npm run server:build # compile server TS → server-dist/
npm run server:start # run dist/ + API on PORT=8080

Container

docker build --platform=linux/amd64 -t oia-model-reader .
docker run --rm -p 8080:8080 \
-v $(pwd)/data:/data \
-e DB_PATH=/data/feedback.db \
oia-model-reader

Deployment

Production runs on Google Cloud Run (Gen 2) in project agenticsorg, region us-central1.

ComponentResource
Containerus-central1-docker.pkg.dev/agenticsorg/gcf-artifacts/oia-model-reader
ServiceCloud Run oia-model-reader, --execution-environment=gen2, allow-unauthenticated
Storagegs://agentics-oia-model-data mounted at /data for SQLite persistence
StaticGitHub Pages (gh-pages branch) serving the SPA on oia.agentics.org
DNSCloudflare CNAME oia.agentics.org → agenticsorg.github.io (DNS-only)
API CORSAllow-list: oia.agentics.org, agenticsorg.github.io, localhost

Redeploy (container only)

# 1. Build and push new image
TAG="v$(date +%Y%m%d-%H%M)"
IMG="us-central1-docker.pkg.dev/agenticsorg/gcf-artifacts/oia-model-reader:$TAG"
docker build --platform=linux/amd64 -t "$IMG".
docker push "$IMG"# 2. Deploy
gcloud run deploy oia-model-reader --image="$IMG" \
--region=us-central1 --project=agenticsorg

Redeploy (static SPA only)

export VITE_API_BASE="https://oia-model-reader-2slhzrawja-uc.a.run.app"
npm run build
echo oia.agentics.org > dist/CNAME
cp dist/index.html dist/404.html
# Push dist/ contents to the gh-pages branch

Feedback Channel & Queryable Data

Agentics Foundation members submit structured feedback via the Feedback section. Submissions are stored in SQLite (data/feedback.db locally, /data/feedback.db on Cloud Run, backed by GCS).

Schema (21 columns)

  • Identity — optional name / email / organisation / role; share_name toggle redacts from public listing
  • Foundation-featured prompts — hyperscaler monopolies, L8 certification, legacy vendor mapping, Foundation funding, regulatory alignment
  • Review prompts drawn from the digests — shape assessment, decisions to reopen + reasons, open-question contribution, missing concerns / tech / spans, vertical-extension experience, improvements, general notes

Query from the CLI

# Human-readable
npm run feedback:list
# Every field, every row
npm run feedback:full
# Arbitrary SELECT (SELECT only; mutations refused)
npm run feedback:query -- "SELECT id, role, substr(shape_response, 1, 120) FROM feedback"# Sync production DB down for local inspection
gcloud storage cp gs://agentics-oia-model-data/feedback.db ./data/feedback.db

Project Layout

OIA-Model/
├── src/
│ ├── sections/ 14 top-level sections + Workspace + Feedback
│ ├── components/
│ │ ├── viz/ Six SVG figures inline with the digest prose
│ │ └── micro/ 13 operator tools (Markdown-artefact generators)
│ ├── content/ Verbatim digest text · layers · spans · refs · decisions
│ ├── lib/ Workspace aggregation + export
│ └── styles/ Telemetry design tokens
├── server/ Production Express app + Vite dev middleware + SQLite
├── scripts/ Feedback CLI (list / full / query)
├── docs/ Source digests (v0.1)
└── plans/ ADR-0001 (the architecture decision record)

Contributing

The OIA Model is open for community review. Two paths:

  1. Through the UI — use the Feedback section on oia.agentics.org. All five Foundation-featured questions and eleven review prompts are structured for machine query.
  2. Through Git — open a pull request against main. Please follow the palette, verbatim-source, and section-structure conventions in plans/ADR-0001-oia-model-reader-ui.md.

For substantive architectural disagreement, cite a specific decision number in the form reopen decision NN, because … — as the Decision Log Digest itself requests.


Security & Privacy

  • The feedback API enforces a CORS allow-list (see server/handlers.ts).
  • Public listings of feedback redact name, email, and organisation for any submission where the reviewer left share_name unchecked. The listFeedbackPublic() view enforces this at the SQL level.
  • No secrets are stored in the repository. Cloudflare and Google credentials live in Google Secret Manager under the agenticsorg project.
  • Cloud Run is public (--allow-unauthenticated) — please do not submit confidential material. Only review-relevant content should be posted.

License

Released under the MIT License. See LICENSE.

Copyright © 2026 Agentics Foundation


Acknowledgments

  • Reuven Cohen — Founder, Agentics Foundation, author of the OIA Model Foreword.
  • Source documents — the OIA Model v0.1 Reader's Digest and the Decision Log Digest are the normative texts this UI renders.
  • Frameworks the model builds on — ISO/IEC 7498 (OSI), NIST Cybersecurity Framework, MITRE ATT&CK / ATLAS, NIST AI Risk Management Framework, OWASP Top 10 for LLM Applications, ISO/IEC 42001, Model Context Protocol.

Published by the Agentics Foundation · 2026

About

An interactive review and implementation workspace for the Open Intelligence Architecture — a nine-layer reference architecture for enterprise intelligent systems.

Resources

Stars

11 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { // Highlight search terms from Google/DuckDuckGo/Bing referrer (function() { var ref = document.referrer; var terms = []; if (ref.includes('google.com') || ref.includes('duckduckgo.com') || ref.includes('bing.com')) { var url = new URL(ref); var q = url.searchParams.get('q') || url.searchParams.get('p'); if (q) { terms = q.split(/\s+/).filter(function(t) { return t.length > 2; }); } } if (terms.length === 0) return; var style = document.createElement('style'); style.textContent = '.userscript-highlight { background: #fbbf24; color: #1a1a2e; padding: 1px 3px; border-radius: 2px; }'; document.head.appendChild(style); function highlight(node) { if (node.nodeType === 3) { // text node var text = node.textContent; var found = false; terms.forEach(function(term) { var regex = new RegExp('(' + term.replace(/[.*+?^${}()|[\]\\]/g, '\\') + ')', 'gi'); if (regex.test(text)) { found = true; var frag = document.createDocumentFragment(); var parts = text.split(regex); parts.forEach(function(part, i) { if (i % 2 === 0) { frag.appendChild(document.createTextNode(part)); } else { var span = document.createElement('span'); span.className = 'userscript-highlight'; span.textContent = part; frag.appendChild(span); } }); node.parentNode.replaceChild(frag, node); } }); } else if (node.nodeType === 1 && node.childNodes) { // element var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT']; if (!skipTags.includes(node.tagName)) { Array.from(node.childNodes).forEach(highlight); } } } highlight(document.body); // Re-highlight on dynamic content var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1 || node.nodeType === 3) highlight(node); }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ' GitHub - agenticsorg/OIA-Model: An interactive review and implementation workspace for the Open Intelligence Architecture — a nine-layer reference architecture for enterprise intelligent systems. · GitHub
Skip to content

Repository files navigation

Agentics Foundation

Agentics Foundation

The OIA Model · Reader

An interactive review and implementation workspace for the Open Intelligence Architecture — a nine-layer reference architecture for enterprise intelligent systems.

License: MITLiveVersionCloud RunReact 18TypeScriptVite

Live · oia.agentics.org · Reader's Digest · Decision Log · ADR-0001


About

The OIA Model — Open Intelligence Architecture — is the Agentics Foundation's reference architecture for intelligent systems at enterprise scale. It defines nine layers (physical compute at the bottom, the human and browser interface at the top), two state-holding layers that bracket the operational core, and six horizontal cross-layer spans that cannot be localised to any one layer.

This repository contains the OIA Model Reader: a single-page application that turns the two published digests (the Reader's Digest and the Decision Log Digest) into a practical, interactive system — allowing reviewers, architects, vendors, regulators, and researchers to use the model rather than just read it.

Every section of the source documents is preserved verbatim. Every section also carries a tied-in operator tool that produces a real Markdown artefact (brief, spec, memo, plan) you can paste straight into your operations.


Feature Highlights

Reading surface (verbatim from the source digests)

  • Masthead and foreword in their original institutional + personal registers
  • §1 Introduction through §8 Deferrals, the Decision Log Digest, and the Closing — every paragraph preserved
  • Six figure-quality SVG visualisations positioned inline with the prose they illuminate

Interactive implementation workspace

ToolWhat it produces
Workspace (hub)Live KPIs + single-file Markdown Review Package + JSON bundle for team sharing
Stack DiagramInteractive 10-layer × 6-span canvas with Assessment overlay
Architecture AssessmentRate each layer COHERENT / GAP / NOT YET / N/A — live span coherence scores
Provider Footprint33-vendor × 10-layer matrix; flags "vertical extension" (Decision 10)
Implementation RoadmapPer-layer checklists, Markdown plan export
ExplorerSearch 55 concerns, 91 reference technologies, 42 open questions
Decision Review RegisterPer-decision vote (REOPEN / HOLD / CONFIRM) + Markdown export
FeedbackForm backed by SQLite, five Foundation-featured questions + eleven review prompts

Per-section operator tools

Each prose section has a tied-in micro-tool that turns the content into a business deliverable:

SectionOperator toolArtefact
On ReadingReading Plan GeneratorTeam-channel reading plan by role × depth
ForewordEra Transition BriefExec-level "we are at this moment" memo
§1 IntroductionSystem Scope GeneratorProject-charter scope statement
§2.1 LineageGovernance OverlayFramework-stack mapping to OIA
§2.2 ContextUrgency BriefBoard-level urgency memo
§2.3 PropertiesLayer Priority PlanRanked investment plan
§3 Nine LayersLayer Scope MemoRACI-style owned-layers memo
§5 SpansSpan Gap MemoCISO / audit gap memo
§6 RelationshipsStack SpecGovernance stack spec for ARB / RFP
§7 AdoptionAdoption PlaybookFour-step program kickoff
§8 DeferralsCommunity InputSubmission to the Foundation
Decision LogReviewer BriefStance-tailored review protocol

All tools persist state to localStorage; every exported artefact is plain Markdown.


Architecture

┌──────────────────────────────────────────────────────────────────────┐
│ Client (oia.agentics.org) │
│ ┌──────────────────────────────────────────────────────────────┐ │
│ │ Single-page app — React 18 + TypeScript + TailwindCSS │ │
│ │ Telemetry-dashboard design system (palette-locked) │ │
│ └──────────────────────────────────────────────────────────────┘ │
└───────────────────────┬──────────────────────────────────────────────┘
│
HTTPS (SNI oia.agentics.org · CORS allow-list)
│
┌───────────────────────▼──────────────────────────────────────────────┐
│ Static hosting — GitHub Pages (oia.agentics.org) │
│ │
│ Cross-origin fetch ↓ /api/* │
│ │
│ Cloud Run service oia-model-reader (us-central1, Gen 2) │
│ Node 20 + Express 5 + better-sqlite3 │
│ │
│ SQLite volume mount: │
│ gs://agentics-oia-model-data → /data/feedback.db │
└──────────────────────────────────────────────────────────────────────┘

Design references

  • Telemetry UI aesthetic homage — see animated-telemetry-dashboard-section (1).tsx
  • Palette: #000000 / #FFFFFF / #F05122 (Agentics orange) — strict
  • All visual motion gated behind IntersectionObserver and disabled under prefers-reduced-motion

Quick Start

Prerequisites

  • Node.js ≥ 20
  • npm ≥ 10
  • For local feedback DB: no setup; the API writes to data/feedback.db on first run
  • For containerised builds: Docker ≥ 20.10

Local development

git clone https://github.com/agenticsorg/OIA-Model
cd OIA-Model
npm install
npm run dev

The SPA and feedback API run together on http://localhost:5173 via a Vite middleware plugin (server/vite-api-plugin.ts).

Production build (local)

npm run build # type-check + Vite build → dist/
npm run server:build # compile server TS → server-dist/
npm run server:start # run dist/ + API on PORT=8080

Container

docker build --platform=linux/amd64 -t oia-model-reader .
docker run --rm -p 8080:8080 \
-v $(pwd)/data:/data \
-e DB_PATH=/data/feedback.db \
oia-model-reader

Deployment

Production runs on Google Cloud Run (Gen 2) in project agenticsorg, region us-central1.

ComponentResource
Containerus-central1-docker.pkg.dev/agenticsorg/gcf-artifacts/oia-model-reader
ServiceCloud Run oia-model-reader, --execution-environment=gen2, allow-unauthenticated
Storagegs://agentics-oia-model-data mounted at /data for SQLite persistence
StaticGitHub Pages (gh-pages branch) serving the SPA on oia.agentics.org
DNSCloudflare CNAME oia.agentics.org → agenticsorg.github.io (DNS-only)
API CORSAllow-list: oia.agentics.org, agenticsorg.github.io, localhost

Redeploy (container only)

# 1. Build and push new image
TAG="v$(date +%Y%m%d-%H%M)"
IMG="us-central1-docker.pkg.dev/agenticsorg/gcf-artifacts/oia-model-reader:$TAG"
docker build --platform=linux/amd64 -t "$IMG".
docker push "$IMG"# 2. Deploy
gcloud run deploy oia-model-reader --image="$IMG" \
--region=us-central1 --project=agenticsorg

Redeploy (static SPA only)

export VITE_API_BASE="https://oia-model-reader-2slhzrawja-uc.a.run.app"
npm run build
echo oia.agentics.org > dist/CNAME
cp dist/index.html dist/404.html
# Push dist/ contents to the gh-pages branch

Feedback Channel & Queryable Data

Agentics Foundation members submit structured feedback via the Feedback section. Submissions are stored in SQLite (data/feedback.db locally, /data/feedback.db on Cloud Run, backed by GCS).

Schema (21 columns)

  • Identity — optional name / email / organisation / role; share_name toggle redacts from public listing
  • Foundation-featured prompts — hyperscaler monopolies, L8 certification, legacy vendor mapping, Foundation funding, regulatory alignment
  • Review prompts drawn from the digests — shape assessment, decisions to reopen + reasons, open-question contribution, missing concerns / tech / spans, vertical-extension experience, improvements, general notes

Query from the CLI

# Human-readable
npm run feedback:list
# Every field, every row
npm run feedback:full
# Arbitrary SELECT (SELECT only; mutations refused)
npm run feedback:query -- "SELECT id, role, substr(shape_response, 1, 120) FROM feedback"# Sync production DB down for local inspection
gcloud storage cp gs://agentics-oia-model-data/feedback.db ./data/feedback.db

Project Layout

OIA-Model/
├── src/
│ ├── sections/ 14 top-level sections + Workspace + Feedback
│ ├── components/
│ │ ├── viz/ Six SVG figures inline with the digest prose
│ │ └── micro/ 13 operator tools (Markdown-artefact generators)
│ ├── content/ Verbatim digest text · layers · spans · refs · decisions
│ ├── lib/ Workspace aggregation + export
│ └── styles/ Telemetry design tokens
├── server/ Production Express app + Vite dev middleware + SQLite
├── scripts/ Feedback CLI (list / full / query)
├── docs/ Source digests (v0.1)
└── plans/ ADR-0001 (the architecture decision record)

Contributing

The OIA Model is open for community review. Two paths:

  1. Through the UI — use the Feedback section on oia.agentics.org. All five Foundation-featured questions and eleven review prompts are structured for machine query.
  2. Through Git — open a pull request against main. Please follow the palette, verbatim-source, and section-structure conventions in plans/ADR-0001-oia-model-reader-ui.md.

For substantive architectural disagreement, cite a specific decision number in the form reopen decision NN, because … — as the Decision Log Digest itself requests.


Security & Privacy

  • The feedback API enforces a CORS allow-list (see server/handlers.ts).
  • Public listings of feedback redact name, email, and organisation for any submission where the reviewer left share_name unchecked. The listFeedbackPublic() view enforces this at the SQL level.
  • No secrets are stored in the repository. Cloudflare and Google credentials live in Google Secret Manager under the agenticsorg project.
  • Cloud Run is public (--allow-unauthenticated) — please do not submit confidential material. Only review-relevant content should be posted.

License

Released under the MIT License. See LICENSE.

Copyright © 2026 Agentics Foundation


Acknowledgments

  • Reuven Cohen — Founder, Agentics Foundation, author of the OIA Model Foreword.
  • Source documents — the OIA Model v0.1 Reader's Digest and the Decision Log Digest are the normative texts this UI renders.
  • Frameworks the model builds on — ISO/IEC 7498 (OSI), NIST Cybersecurity Framework, MITRE ATT&CK / ATLAS, NIST AI Risk Management Framework, OWASP Top 10 for LLM Applications, ISO/IEC 42001, Model Context Protocol.

Published by the Agentics Foundation · 2026

About

An interactive review and implementation workspace for the Open Intelligence Architecture — a nine-layer reference architecture for enterprise intelligent systems.

Resources

Stars

11 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { // Strip utm_, fbclid, gclid, etc. from all links on page (function() { var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid', 'ref', 'ref_src', 'source', 'medium', 'campaign']; function cleanUrl(url) { try { var u = new URL(url, window.location.origin); var changed = false; trackingParams.forEach(function(p) { if (u.searchParams.has(p)) { u.searchParams.delete(p); changed = true; } }); return changed ? u.toString() : url; } catch (e) { return url; } } function cleanLinks() { document.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } cleanLinks(); var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1) { if (node.tagName === 'A') cleanLinks(); node.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + ' GitHub - agenticsorg/OIA-Model: An interactive review and implementation workspace for the Open Intelligence Architecture — a nine-layer reference architecture for enterprise intelligent systems. · GitHub
Skip to content

Repository files navigation

Agentics Foundation

Agentics Foundation

The OIA Model · Reader

An interactive review and implementation workspace for the Open Intelligence Architecture — a nine-layer reference architecture for enterprise intelligent systems.

License: MITLiveVersionCloud RunReact 18TypeScriptVite

Live · oia.agentics.org · Reader's Digest · Decision Log · ADR-0001


About

The OIA Model — Open Intelligence Architecture — is the Agentics Foundation's reference architecture for intelligent systems at enterprise scale. It defines nine layers (physical compute at the bottom, the human and browser interface at the top), two state-holding layers that bracket the operational core, and six horizontal cross-layer spans that cannot be localised to any one layer.

This repository contains the OIA Model Reader: a single-page application that turns the two published digests (the Reader's Digest and the Decision Log Digest) into a practical, interactive system — allowing reviewers, architects, vendors, regulators, and researchers to use the model rather than just read it.

Every section of the source documents is preserved verbatim. Every section also carries a tied-in operator tool that produces a real Markdown artefact (brief, spec, memo, plan) you can paste straight into your operations.


Feature Highlights

Reading surface (verbatim from the source digests)

  • Masthead and foreword in their original institutional + personal registers
  • §1 Introduction through §8 Deferrals, the Decision Log Digest, and the Closing — every paragraph preserved
  • Six figure-quality SVG visualisations positioned inline with the prose they illuminate

Interactive implementation workspace

ToolWhat it produces
Workspace (hub)Live KPIs + single-file Markdown Review Package + JSON bundle for team sharing
Stack DiagramInteractive 10-layer × 6-span canvas with Assessment overlay
Architecture AssessmentRate each layer COHERENT / GAP / NOT YET / N/A — live span coherence scores
Provider Footprint33-vendor × 10-layer matrix; flags "vertical extension" (Decision 10)
Implementation RoadmapPer-layer checklists, Markdown plan export
ExplorerSearch 55 concerns, 91 reference technologies, 42 open questions
Decision Review RegisterPer-decision vote (REOPEN / HOLD / CONFIRM) + Markdown export
FeedbackForm backed by SQLite, five Foundation-featured questions + eleven review prompts

Per-section operator tools

Each prose section has a tied-in micro-tool that turns the content into a business deliverable:

SectionOperator toolArtefact
On ReadingReading Plan GeneratorTeam-channel reading plan by role × depth
ForewordEra Transition BriefExec-level "we are at this moment" memo
§1 IntroductionSystem Scope GeneratorProject-charter scope statement
§2.1 LineageGovernance OverlayFramework-stack mapping to OIA
§2.2 ContextUrgency BriefBoard-level urgency memo
§2.3 PropertiesLayer Priority PlanRanked investment plan
§3 Nine LayersLayer Scope MemoRACI-style owned-layers memo
§5 SpansSpan Gap MemoCISO / audit gap memo
§6 RelationshipsStack SpecGovernance stack spec for ARB / RFP
§7 AdoptionAdoption PlaybookFour-step program kickoff
§8 DeferralsCommunity InputSubmission to the Foundation
Decision LogReviewer BriefStance-tailored review protocol

All tools persist state to localStorage; every exported artefact is plain Markdown.


Architecture

┌──────────────────────────────────────────────────────────────────────┐
│ Client (oia.agentics.org) │
│ ┌──────────────────────────────────────────────────────────────┐ │
│ │ Single-page app — React 18 + TypeScript + TailwindCSS │ │
│ │ Telemetry-dashboard design system (palette-locked) │ │
│ └──────────────────────────────────────────────────────────────┘ │
└───────────────────────┬──────────────────────────────────────────────┘
│
HTTPS (SNI oia.agentics.org · CORS allow-list)
│
┌───────────────────────▼──────────────────────────────────────────────┐
│ Static hosting — GitHub Pages (oia.agentics.org) │
│ │
│ Cross-origin fetch ↓ /api/* │
│ │
│ Cloud Run service oia-model-reader (us-central1, Gen 2) │
│ Node 20 + Express 5 + better-sqlite3 │
│ │
│ SQLite volume mount: │
│ gs://agentics-oia-model-data → /data/feedback.db │
└──────────────────────────────────────────────────────────────────────┘

Design references

  • Telemetry UI aesthetic homage — see animated-telemetry-dashboard-section (1).tsx
  • Palette: #000000 / #FFFFFF / #F05122 (Agentics orange) — strict
  • All visual motion gated behind IntersectionObserver and disabled under prefers-reduced-motion

Quick Start

Prerequisites

  • Node.js ≥ 20
  • npm ≥ 10
  • For local feedback DB: no setup; the API writes to data/feedback.db on first run
  • For containerised builds: Docker ≥ 20.10

Local development

git clone https://github.com/agenticsorg/OIA-Model
cd OIA-Model
npm install
npm run dev

The SPA and feedback API run together on http://localhost:5173 via a Vite middleware plugin (server/vite-api-plugin.ts).

Production build (local)

npm run build # type-check + Vite build → dist/
npm run server:build # compile server TS → server-dist/
npm run server:start # run dist/ + API on PORT=8080

Container

docker build --platform=linux/amd64 -t oia-model-reader .
docker run --rm -p 8080:8080 \
-v $(pwd)/data:/data \
-e DB_PATH=/data/feedback.db \
oia-model-reader

Deployment

Production runs on Google Cloud Run (Gen 2) in project agenticsorg, region us-central1.

ComponentResource
Containerus-central1-docker.pkg.dev/agenticsorg/gcf-artifacts/oia-model-reader
ServiceCloud Run oia-model-reader, --execution-environment=gen2, allow-unauthenticated
Storagegs://agentics-oia-model-data mounted at /data for SQLite persistence
StaticGitHub Pages (gh-pages branch) serving the SPA on oia.agentics.org
DNSCloudflare CNAME oia.agentics.org → agenticsorg.github.io (DNS-only)
API CORSAllow-list: oia.agentics.org, agenticsorg.github.io, localhost

Redeploy (container only)

# 1. Build and push new image
TAG="v$(date +%Y%m%d-%H%M)"
IMG="us-central1-docker.pkg.dev/agenticsorg/gcf-artifacts/oia-model-reader:$TAG"
docker build --platform=linux/amd64 -t "$IMG".
docker push "$IMG"# 2. Deploy
gcloud run deploy oia-model-reader --image="$IMG" \
--region=us-central1 --project=agenticsorg

Redeploy (static SPA only)

export VITE_API_BASE="https://oia-model-reader-2slhzrawja-uc.a.run.app"
npm run build
echo oia.agentics.org > dist/CNAME
cp dist/index.html dist/404.html
# Push dist/ contents to the gh-pages branch

Feedback Channel & Queryable Data

Agentics Foundation members submit structured feedback via the Feedback section. Submissions are stored in SQLite (data/feedback.db locally, /data/feedback.db on Cloud Run, backed by GCS).

Schema (21 columns)

  • Identity — optional name / email / organisation / role; share_name toggle redacts from public listing
  • Foundation-featured prompts — hyperscaler monopolies, L8 certification, legacy vendor mapping, Foundation funding, regulatory alignment
  • Review prompts drawn from the digests — shape assessment, decisions to reopen + reasons, open-question contribution, missing concerns / tech / spans, vertical-extension experience, improvements, general notes

Query from the CLI

# Human-readable
npm run feedback:list
# Every field, every row
npm run feedback:full
# Arbitrary SELECT (SELECT only; mutations refused)
npm run feedback:query -- "SELECT id, role, substr(shape_response, 1, 120) FROM feedback"# Sync production DB down for local inspection
gcloud storage cp gs://agentics-oia-model-data/feedback.db ./data/feedback.db

Project Layout

OIA-Model/
├── src/
│ ├── sections/ 14 top-level sections + Workspace + Feedback
│ ├── components/
│ │ ├── viz/ Six SVG figures inline with the digest prose
│ │ └── micro/ 13 operator tools (Markdown-artefact generators)
│ ├── content/ Verbatim digest text · layers · spans · refs · decisions
│ ├── lib/ Workspace aggregation + export
│ └── styles/ Telemetry design tokens
├── server/ Production Express app + Vite dev middleware + SQLite
├── scripts/ Feedback CLI (list / full / query)
├── docs/ Source digests (v0.1)
└── plans/ ADR-0001 (the architecture decision record)

Contributing

The OIA Model is open for community review. Two paths:

  1. Through the UI — use the Feedback section on oia.agentics.org. All five Foundation-featured questions and eleven review prompts are structured for machine query.
  2. Through Git — open a pull request against main. Please follow the palette, verbatim-source, and section-structure conventions in plans/ADR-0001-oia-model-reader-ui.md.

For substantive architectural disagreement, cite a specific decision number in the form reopen decision NN, because … — as the Decision Log Digest itself requests.


Security & Privacy

  • The feedback API enforces a CORS allow-list (see server/handlers.ts).
  • Public listings of feedback redact name, email, and organisation for any submission where the reviewer left share_name unchecked. The listFeedbackPublic() view enforces this at the SQL level.
  • No secrets are stored in the repository. Cloudflare and Google credentials live in Google Secret Manager under the agenticsorg project.
  • Cloud Run is public (--allow-unauthenticated) — please do not submit confidential material. Only review-relevant content should be posted.

License

Released under the MIT License. See LICENSE.

Copyright © 2026 Agentics Foundation


Acknowledgments

  • Reuven Cohen — Founder, Agentics Foundation, author of the OIA Model Foreword.
  • Source documents — the OIA Model v0.1 Reader's Digest and the Decision Log Digest are the normative texts this UI renders.
  • Frameworks the model builds on — ISO/IEC 7498 (OSI), NIST Cybersecurity Framework, MITRE ATT&CK / ATLAS, NIST AI Risk Management Framework, OWASP Top 10 for LLM Applications, ISO/IEC 42001, Model Context Protocol.

Published by the Agentics Foundation · 2026

About

An interactive review and implementation workspace for the Open Intelligence Architecture — a nine-layer reference architecture for enterprise intelligent systems.

Resources

Stars

11 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { // Auto-enable theater mode on YouTube (function() { function tryTheater() { var btn = document.querySelector('button[aria-label="Theater mode"], ytd-player #player button[title="Theater mode"]'); if (btn && !btn.classList.contains('activated')) { btn.click(); } } // Try immediately tryTheater(); // Try after navigation (SPA) var lastUrl = location.href; setInterval(function() { if (location.href !== lastUrl) { lastUrl = location.href; setTimeout(tryTheater, 500); } }, 1000); // Also try on player load var observer = new MutationObserver(tryTheater); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ' GitHub - agenticsorg/OIA-Model: An interactive review and implementation workspace for the Open Intelligence Architecture — a nine-layer reference architecture for enterprise intelligent systems. · GitHub
Skip to content

Repository files navigation

Agentics Foundation

Agentics Foundation

The OIA Model · Reader

An interactive review and implementation workspace for the Open Intelligence Architecture — a nine-layer reference architecture for enterprise intelligent systems.

License: MITLiveVersionCloud RunReact 18TypeScriptVite

Live · oia.agentics.org · Reader's Digest · Decision Log · ADR-0001


About

The OIA Model — Open Intelligence Architecture — is the Agentics Foundation's reference architecture for intelligent systems at enterprise scale. It defines nine layers (physical compute at the bottom, the human and browser interface at the top), two state-holding layers that bracket the operational core, and six horizontal cross-layer spans that cannot be localised to any one layer.

This repository contains the OIA Model Reader: a single-page application that turns the two published digests (the Reader's Digest and the Decision Log Digest) into a practical, interactive system — allowing reviewers, architects, vendors, regulators, and researchers to use the model rather than just read it.

Every section of the source documents is preserved verbatim. Every section also carries a tied-in operator tool that produces a real Markdown artefact (brief, spec, memo, plan) you can paste straight into your operations.


Feature Highlights

Reading surface (verbatim from the source digests)

  • Masthead and foreword in their original institutional + personal registers
  • §1 Introduction through §8 Deferrals, the Decision Log Digest, and the Closing — every paragraph preserved
  • Six figure-quality SVG visualisations positioned inline with the prose they illuminate

Interactive implementation workspace

ToolWhat it produces
Workspace (hub)Live KPIs + single-file Markdown Review Package + JSON bundle for team sharing
Stack DiagramInteractive 10-layer × 6-span canvas with Assessment overlay
Architecture AssessmentRate each layer COHERENT / GAP / NOT YET / N/A — live span coherence scores
Provider Footprint33-vendor × 10-layer matrix; flags "vertical extension" (Decision 10)
Implementation RoadmapPer-layer checklists, Markdown plan export
ExplorerSearch 55 concerns, 91 reference technologies, 42 open questions
Decision Review RegisterPer-decision vote (REOPEN / HOLD / CONFIRM) + Markdown export
FeedbackForm backed by SQLite, five Foundation-featured questions + eleven review prompts

Per-section operator tools

Each prose section has a tied-in micro-tool that turns the content into a business deliverable:

SectionOperator toolArtefact
On ReadingReading Plan GeneratorTeam-channel reading plan by role × depth
ForewordEra Transition BriefExec-level "we are at this moment" memo
§1 IntroductionSystem Scope GeneratorProject-charter scope statement
§2.1 LineageGovernance OverlayFramework-stack mapping to OIA
§2.2 ContextUrgency BriefBoard-level urgency memo
§2.3 PropertiesLayer Priority PlanRanked investment plan
§3 Nine LayersLayer Scope MemoRACI-style owned-layers memo
§5 SpansSpan Gap MemoCISO / audit gap memo
§6 RelationshipsStack SpecGovernance stack spec for ARB / RFP
§7 AdoptionAdoption PlaybookFour-step program kickoff
§8 DeferralsCommunity InputSubmission to the Foundation
Decision LogReviewer BriefStance-tailored review protocol

All tools persist state to localStorage; every exported artefact is plain Markdown.


Architecture

┌──────────────────────────────────────────────────────────────────────┐
│ Client (oia.agentics.org) │
│ ┌──────────────────────────────────────────────────────────────┐ │
│ │ Single-page app — React 18 + TypeScript + TailwindCSS │ │
│ │ Telemetry-dashboard design system (palette-locked) │ │
│ └──────────────────────────────────────────────────────────────┘ │
└───────────────────────┬──────────────────────────────────────────────┘
│
HTTPS (SNI oia.agentics.org · CORS allow-list)
│
┌───────────────────────▼──────────────────────────────────────────────┐
│ Static hosting — GitHub Pages (oia.agentics.org) │
│ │
│ Cross-origin fetch ↓ /api/* │
│ │
│ Cloud Run service oia-model-reader (us-central1, Gen 2) │
│ Node 20 + Express 5 + better-sqlite3 │
│ │
│ SQLite volume mount: │
│ gs://agentics-oia-model-data → /data/feedback.db │
└──────────────────────────────────────────────────────────────────────┘

Design references

  • Telemetry UI aesthetic homage — see animated-telemetry-dashboard-section (1).tsx
  • Palette: #000000 / #FFFFFF / #F05122 (Agentics orange) — strict
  • All visual motion gated behind IntersectionObserver and disabled under prefers-reduced-motion

Quick Start

Prerequisites

  • Node.js ≥ 20
  • npm ≥ 10
  • For local feedback DB: no setup; the API writes to data/feedback.db on first run
  • For containerised builds: Docker ≥ 20.10

Local development

git clone https://github.com/agenticsorg/OIA-Model
cd OIA-Model
npm install
npm run dev

The SPA and feedback API run together on http://localhost:5173 via a Vite middleware plugin (server/vite-api-plugin.ts).

Production build (local)

npm run build # type-check + Vite build → dist/
npm run server:build # compile server TS → server-dist/
npm run server:start # run dist/ + API on PORT=8080

Container

docker build --platform=linux/amd64 -t oia-model-reader .
docker run --rm -p 8080:8080 \
-v $(pwd)/data:/data \
-e DB_PATH=/data/feedback.db \
oia-model-reader

Deployment

Production runs on Google Cloud Run (Gen 2) in project agenticsorg, region us-central1.

ComponentResource
Containerus-central1-docker.pkg.dev/agenticsorg/gcf-artifacts/oia-model-reader
ServiceCloud Run oia-model-reader, --execution-environment=gen2, allow-unauthenticated
Storagegs://agentics-oia-model-data mounted at /data for SQLite persistence
StaticGitHub Pages (gh-pages branch) serving the SPA on oia.agentics.org
DNSCloudflare CNAME oia.agentics.org → agenticsorg.github.io (DNS-only)
API CORSAllow-list: oia.agentics.org, agenticsorg.github.io, localhost

Redeploy (container only)

# 1. Build and push new image
TAG="v$(date +%Y%m%d-%H%M)"
IMG="us-central1-docker.pkg.dev/agenticsorg/gcf-artifacts/oia-model-reader:$TAG"
docker build --platform=linux/amd64 -t "$IMG".
docker push "$IMG"# 2. Deploy
gcloud run deploy oia-model-reader --image="$IMG" \
--region=us-central1 --project=agenticsorg

Redeploy (static SPA only)

export VITE_API_BASE="https://oia-model-reader-2slhzrawja-uc.a.run.app"
npm run build
echo oia.agentics.org > dist/CNAME
cp dist/index.html dist/404.html
# Push dist/ contents to the gh-pages branch

Feedback Channel & Queryable Data

Agentics Foundation members submit structured feedback via the Feedback section. Submissions are stored in SQLite (data/feedback.db locally, /data/feedback.db on Cloud Run, backed by GCS).

Schema (21 columns)

  • Identity — optional name / email / organisation / role; share_name toggle redacts from public listing
  • Foundation-featured prompts — hyperscaler monopolies, L8 certification, legacy vendor mapping, Foundation funding, regulatory alignment
  • Review prompts drawn from the digests — shape assessment, decisions to reopen + reasons, open-question contribution, missing concerns / tech / spans, vertical-extension experience, improvements, general notes

Query from the CLI

# Human-readable
npm run feedback:list
# Every field, every row
npm run feedback:full
# Arbitrary SELECT (SELECT only; mutations refused)
npm run feedback:query -- "SELECT id, role, substr(shape_response, 1, 120) FROM feedback"# Sync production DB down for local inspection
gcloud storage cp gs://agentics-oia-model-data/feedback.db ./data/feedback.db

Project Layout

OIA-Model/
├── src/
│ ├── sections/ 14 top-level sections + Workspace + Feedback
│ ├── components/
│ │ ├── viz/ Six SVG figures inline with the digest prose
│ │ └── micro/ 13 operator tools (Markdown-artefact generators)
│ ├── content/ Verbatim digest text · layers · spans · refs · decisions
│ ├── lib/ Workspace aggregation + export
│ └── styles/ Telemetry design tokens
├── server/ Production Express app + Vite dev middleware + SQLite
├── scripts/ Feedback CLI (list / full / query)
├── docs/ Source digests (v0.1)
└── plans/ ADR-0001 (the architecture decision record)

Contributing

The OIA Model is open for community review. Two paths:

  1. Through the UI — use the Feedback section on oia.agentics.org. All five Foundation-featured questions and eleven review prompts are structured for machine query.
  2. Through Git — open a pull request against main. Please follow the palette, verbatim-source, and section-structure conventions in plans/ADR-0001-oia-model-reader-ui.md.

For substantive architectural disagreement, cite a specific decision number in the form reopen decision NN, because … — as the Decision Log Digest itself requests.


Security & Privacy

  • The feedback API enforces a CORS allow-list (see server/handlers.ts).
  • Public listings of feedback redact name, email, and organisation for any submission where the reviewer left share_name unchecked. The listFeedbackPublic() view enforces this at the SQL level.
  • No secrets are stored in the repository. Cloudflare and Google credentials live in Google Secret Manager under the agenticsorg project.
  • Cloud Run is public (--allow-unauthenticated) — please do not submit confidential material. Only review-relevant content should be posted.

License

Released under the MIT License. See LICENSE.

Copyright © 2026 Agentics Foundation


Acknowledgments

  • Reuven Cohen — Founder, Agentics Foundation, author of the OIA Model Foreword.
  • Source documents — the OIA Model v0.1 Reader's Digest and the Decision Log Digest are the normative texts this UI renders.
  • Frameworks the model builds on — ISO/IEC 7498 (OSI), NIST Cybersecurity Framework, MITRE ATT&CK / ATLAS, NIST AI Risk Management Framework, OWASP Top 10 for LLM Applications, ISO/IEC 42001, Model Context Protocol.

Published by the Agentics Foundation · 2026

About

An interactive review and implementation workspace for the Open Intelligence Architecture — a nine-layer reference architecture for enterprise intelligent systems.

Resources

Stars

11 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { // Remove or un-stick sticky/fixed headers that block content (function() { function unstick() { document.querySelectorAll('header, nav, [role="banner"], .header, .navbar, .sticky, .fixed-top, [style*="position: fixed"], [style*="position:sticky"]').forEach(function(el) { if (el.style.position === 'fixed' || el.style.position === 'sticky' || getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') { el.style.position = 'static'; el.style.top = 'auto'; el.style.zIndex = 'auto'; } }); } unstick(); var observer = new MutationObserver(unstick); observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] }); })(); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ' GitHub - agenticsorg/OIA-Model: An interactive review and implementation workspace for the Open Intelligence Architecture — a nine-layer reference architecture for enterprise intelligent systems. · GitHub
Skip to content

Repository files navigation

Agentics Foundation

Agentics Foundation

The OIA Model · Reader

An interactive review and implementation workspace for the Open Intelligence Architecture — a nine-layer reference architecture for enterprise intelligent systems.

License: MITLiveVersionCloud RunReact 18TypeScriptVite

Live · oia.agentics.org · Reader's Digest · Decision Log · ADR-0001


About

The OIA Model — Open Intelligence Architecture — is the Agentics Foundation's reference architecture for intelligent systems at enterprise scale. It defines nine layers (physical compute at the bottom, the human and browser interface at the top), two state-holding layers that bracket the operational core, and six horizontal cross-layer spans that cannot be localised to any one layer.

This repository contains the OIA Model Reader: a single-page application that turns the two published digests (the Reader's Digest and the Decision Log Digest) into a practical, interactive system — allowing reviewers, architects, vendors, regulators, and researchers to use the model rather than just read it.

Every section of the source documents is preserved verbatim. Every section also carries a tied-in operator tool that produces a real Markdown artefact (brief, spec, memo, plan) you can paste straight into your operations.


Feature Highlights

Reading surface (verbatim from the source digests)

  • Masthead and foreword in their original institutional + personal registers
  • §1 Introduction through §8 Deferrals, the Decision Log Digest, and the Closing — every paragraph preserved
  • Six figure-quality SVG visualisations positioned inline with the prose they illuminate

Interactive implementation workspace

ToolWhat it produces
Workspace (hub)Live KPIs + single-file Markdown Review Package + JSON bundle for team sharing
Stack DiagramInteractive 10-layer × 6-span canvas with Assessment overlay
Architecture AssessmentRate each layer COHERENT / GAP / NOT YET / N/A — live span coherence scores
Provider Footprint33-vendor × 10-layer matrix; flags "vertical extension" (Decision 10)
Implementation RoadmapPer-layer checklists, Markdown plan export
ExplorerSearch 55 concerns, 91 reference technologies, 42 open questions
Decision Review RegisterPer-decision vote (REOPEN / HOLD / CONFIRM) + Markdown export
FeedbackForm backed by SQLite, five Foundation-featured questions + eleven review prompts

Per-section operator tools

Each prose section has a tied-in micro-tool that turns the content into a business deliverable:

SectionOperator toolArtefact
On ReadingReading Plan GeneratorTeam-channel reading plan by role × depth
ForewordEra Transition BriefExec-level "we are at this moment" memo
§1 IntroductionSystem Scope GeneratorProject-charter scope statement
§2.1 LineageGovernance OverlayFramework-stack mapping to OIA
§2.2 ContextUrgency BriefBoard-level urgency memo
§2.3 PropertiesLayer Priority PlanRanked investment plan
§3 Nine LayersLayer Scope MemoRACI-style owned-layers memo
§5 SpansSpan Gap MemoCISO / audit gap memo
§6 RelationshipsStack SpecGovernance stack spec for ARB / RFP
§7 AdoptionAdoption PlaybookFour-step program kickoff
§8 DeferralsCommunity InputSubmission to the Foundation
Decision LogReviewer BriefStance-tailored review protocol

All tools persist state to localStorage; every exported artefact is plain Markdown.


Architecture

┌──────────────────────────────────────────────────────────────────────┐
│ Client (oia.agentics.org) │
│ ┌──────────────────────────────────────────────────────────────┐ │
│ │ Single-page app — React 18 + TypeScript + TailwindCSS │ │
│ │ Telemetry-dashboard design system (palette-locked) │ │
│ └──────────────────────────────────────────────────────────────┘ │
└───────────────────────┬──────────────────────────────────────────────┘
│
HTTPS (SNI oia.agentics.org · CORS allow-list)
│
┌───────────────────────▼──────────────────────────────────────────────┐
│ Static hosting — GitHub Pages (oia.agentics.org) │
│ │
│ Cross-origin fetch ↓ /api/* │
│ │
│ Cloud Run service oia-model-reader (us-central1, Gen 2) │
│ Node 20 + Express 5 + better-sqlite3 │
│ │
│ SQLite volume mount: │
│ gs://agentics-oia-model-data → /data/feedback.db │
└──────────────────────────────────────────────────────────────────────┘

Design references

  • Telemetry UI aesthetic homage — see animated-telemetry-dashboard-section (1).tsx
  • Palette: #000000 / #FFFFFF / #F05122 (Agentics orange) — strict
  • All visual motion gated behind IntersectionObserver and disabled under prefers-reduced-motion

Quick Start

Prerequisites

  • Node.js ≥ 20
  • npm ≥ 10
  • For local feedback DB: no setup; the API writes to data/feedback.db on first run
  • For containerised builds: Docker ≥ 20.10

Local development

git clone https://github.com/agenticsorg/OIA-Model
cd OIA-Model
npm install
npm run dev

The SPA and feedback API run together on http://localhost:5173 via a Vite middleware plugin (server/vite-api-plugin.ts).

Production build (local)

npm run build # type-check + Vite build → dist/
npm run server:build # compile server TS → server-dist/
npm run server:start # run dist/ + API on PORT=8080

Container

docker build --platform=linux/amd64 -t oia-model-reader .
docker run --rm -p 8080:8080 \
-v $(pwd)/data:/data \
-e DB_PATH=/data/feedback.db \
oia-model-reader

Deployment

Production runs on Google Cloud Run (Gen 2) in project agenticsorg, region us-central1.

ComponentResource
Containerus-central1-docker.pkg.dev/agenticsorg/gcf-artifacts/oia-model-reader
ServiceCloud Run oia-model-reader, --execution-environment=gen2, allow-unauthenticated
Storagegs://agentics-oia-model-data mounted at /data for SQLite persistence
StaticGitHub Pages (gh-pages branch) serving the SPA on oia.agentics.org
DNSCloudflare CNAME oia.agentics.org → agenticsorg.github.io (DNS-only)
API CORSAllow-list: oia.agentics.org, agenticsorg.github.io, localhost

Redeploy (container only)

# 1. Build and push new image
TAG="v$(date +%Y%m%d-%H%M)"
IMG="us-central1-docker.pkg.dev/agenticsorg/gcf-artifacts/oia-model-reader:$TAG"
docker build --platform=linux/amd64 -t "$IMG".
docker push "$IMG"# 2. Deploy
gcloud run deploy oia-model-reader --image="$IMG" \
--region=us-central1 --project=agenticsorg

Redeploy (static SPA only)

export VITE_API_BASE="https://oia-model-reader-2slhzrawja-uc.a.run.app"
npm run build
echo oia.agentics.org > dist/CNAME
cp dist/index.html dist/404.html
# Push dist/ contents to the gh-pages branch

Feedback Channel & Queryable Data

Agentics Foundation members submit structured feedback via the Feedback section. Submissions are stored in SQLite (data/feedback.db locally, /data/feedback.db on Cloud Run, backed by GCS).

Schema (21 columns)

  • Identity — optional name / email / organisation / role; share_name toggle redacts from public listing
  • Foundation-featured prompts — hyperscaler monopolies, L8 certification, legacy vendor mapping, Foundation funding, regulatory alignment
  • Review prompts drawn from the digests — shape assessment, decisions to reopen + reasons, open-question contribution, missing concerns / tech / spans, vertical-extension experience, improvements, general notes

Query from the CLI

# Human-readable
npm run feedback:list
# Every field, every row
npm run feedback:full
# Arbitrary SELECT (SELECT only; mutations refused)
npm run feedback:query -- "SELECT id, role, substr(shape_response, 1, 120) FROM feedback"# Sync production DB down for local inspection
gcloud storage cp gs://agentics-oia-model-data/feedback.db ./data/feedback.db

Project Layout

OIA-Model/
├── src/
│ ├── sections/ 14 top-level sections + Workspace + Feedback
│ ├── components/
│ │ ├── viz/ Six SVG figures inline with the digest prose
│ │ └── micro/ 13 operator tools (Markdown-artefact generators)
│ ├── content/ Verbatim digest text · layers · spans · refs · decisions
│ ├── lib/ Workspace aggregation + export
│ └── styles/ Telemetry design tokens
├── server/ Production Express app + Vite dev middleware + SQLite
├── scripts/ Feedback CLI (list / full / query)
├── docs/ Source digests (v0.1)
└── plans/ ADR-0001 (the architecture decision record)

Contributing

The OIA Model is open for community review. Two paths:

  1. Through the UI — use the Feedback section on oia.agentics.org. All five Foundation-featured questions and eleven review prompts are structured for machine query.
  2. Through Git — open a pull request against main. Please follow the palette, verbatim-source, and section-structure conventions in plans/ADR-0001-oia-model-reader-ui.md.

For substantive architectural disagreement, cite a specific decision number in the form reopen decision NN, because … — as the Decision Log Digest itself requests.


Security & Privacy

  • The feedback API enforces a CORS allow-list (see server/handlers.ts).
  • Public listings of feedback redact name, email, and organisation for any submission where the reviewer left share_name unchecked. The listFeedbackPublic() view enforces this at the SQL level.
  • No secrets are stored in the repository. Cloudflare and Google credentials live in Google Secret Manager under the agenticsorg project.
  • Cloud Run is public (--allow-unauthenticated) — please do not submit confidential material. Only review-relevant content should be posted.

License

Released under the MIT License. See LICENSE.

Copyright © 2026 Agentics Foundation


Acknowledgments

  • Reuven Cohen — Founder, Agentics Foundation, author of the OIA Model Foreword.
  • Source documents — the OIA Model v0.1 Reader's Digest and the Decision Log Digest are the normative texts this UI renders.
  • Frameworks the model builds on — ISO/IEC 7498 (OSI), NIST Cybersecurity Framework, MITRE ATT&CK / ATLAS, NIST AI Risk Management Framework, OWASP Top 10 for LLM Applications, ISO/IEC 42001, Model Context Protocol.

Published by the Agentics Foundation · 2026

About

An interactive review and implementation workspace for the Open Intelligence Architecture — a nine-layer reference architecture for enterprise intelligent systems.

Resources

Stars

11 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { // Universal Dark Mode - works on any site (function() { var enabled = true; function applyDarkMode() { if (!enabled) return; // Create style element if it doesn't exist var style = document.getElementById('universal-dark-mode-style'); if (!style) { style = document.createElement('style'); style.id = 'universal-dark-mode-style'; document.head.appendChild(style); } // Dark mode CSS - inverts colors but preserves images/video style.textContent = ' /* Invert everything except media */ html { filter: invert(1) hue-rotate(180deg) !important; background: #1a1a2e !important; } /* Restore images, videos, iframes, canvas */ img, video, iframe, canvas, svg, picture, [style*="background-image"] { filter: invert(1) hue-rotate(180deg) !important; } /* Preserve specific elements that should not be inverted */ .no-dark-mode, .no-dark-mode *, [data-theme="light"], [data-theme="light"], .ace_editor, .ace_editor *, .CodeMirror, .CodeMirror *, .monaco-editor, .monaco-editor *, .markdown-body pre, .markdown-body pre *, .highlight, .highlight *, pre code, pre code * { filter: none !important; } /* Fix common UI elements */ .modal, .popup, .dropdown-menu, .tooltip, .popover { filter: invert(1) hue-rotate(180deg) !important; background: #2d2d44 !important; border-color: #444 !important; } /* Scrollbars */ ::-webkit-scrollbar { background: #1a1a2e !important; } ::-webkit-scrollbar-thumb { background: #444 !important; } ::-webkit-scrollbar-thumb:hover { background: #555 !important; } /* Selection */ ::selection { background: #4ecdc4 !important; color: #1a1a2e !important; } ::-moz-selection { background: #4ecdc4 !important; color: #1a1a2e !important; } '; } function removeDarkMode() { var style = document.getElementById('universal-dark-mode-style'); if (style) style.remove(); } // Toggle with Alt+Shift+D document.addEventListener('keydown', function(e) { if (e.altKey && e.shiftKey && e.key === 'D') { e.preventDefault(); enabled = !enabled; if (enabled) { applyDarkMode(); console.log('[Universal Dark Mode] Enabled'); } else { removeDarkMode(); console.log('[Universal Dark Mode] Disabled'); } } }); // Apply on load applyDarkMode(); // Re-apply on dynamic content var observer = new MutationObserver(function(mutations) { if (enabled && !document.getElementById('universal-dark-mode-style')) { applyDarkMode(); } }); observer.observe(document.head, { childList: true }); console.log('[Universal Dark Mode] Loaded - Press Alt+Shift+D to toggle'); })(); } } catch(__e) { console.warn('[Userscript:Universal Dark Mode]', __e); } })(); })(); GitHub - agenticsorg/OIA-Model: An interactive review and implementation workspace for the Open Intelligence Architecture — a nine-layer reference architecture for enterprise intelligent systems. · GitHub
Skip to content

Repository files navigation

Agentics Foundation

Agentics Foundation

The OIA Model · Reader

An interactive review and implementation workspace for the Open Intelligence Architecture — a nine-layer reference architecture for enterprise intelligent systems.

License: MITLiveVersionCloud RunReact 18TypeScriptVite

Live · oia.agentics.org · Reader's Digest · Decision Log · ADR-0001


About

The OIA Model — Open Intelligence Architecture — is the Agentics Foundation's reference architecture for intelligent systems at enterprise scale. It defines nine layers (physical compute at the bottom, the human and browser interface at the top), two state-holding layers that bracket the operational core, and six horizontal cross-layer spans that cannot be localised to any one layer.

This repository contains the OIA Model Reader: a single-page application that turns the two published digests (the Reader's Digest and the Decision Log Digest) into a practical, interactive system — allowing reviewers, architects, vendors, regulators, and researchers to use the model rather than just read it.

Every section of the source documents is preserved verbatim. Every section also carries a tied-in operator tool that produces a real Markdown artefact (brief, spec, memo, plan) you can paste straight into your operations.


Feature Highlights

Reading surface (verbatim from the source digests)

  • Masthead and foreword in their original institutional + personal registers
  • §1 Introduction through §8 Deferrals, the Decision Log Digest, and the Closing — every paragraph preserved
  • Six figure-quality SVG visualisations positioned inline with the prose they illuminate

Interactive implementation workspace

ToolWhat it produces
Workspace (hub)Live KPIs + single-file Markdown Review Package + JSON bundle for team sharing
Stack DiagramInteractive 10-layer × 6-span canvas with Assessment overlay
Architecture AssessmentRate each layer COHERENT / GAP / NOT YET / N/A — live span coherence scores
Provider Footprint33-vendor × 10-layer matrix; flags "vertical extension" (Decision 10)
Implementation RoadmapPer-layer checklists, Markdown plan export
ExplorerSearch 55 concerns, 91 reference technologies, 42 open questions
Decision Review RegisterPer-decision vote (REOPEN / HOLD / CONFIRM) + Markdown export
FeedbackForm backed by SQLite, five Foundation-featured questions + eleven review prompts

Per-section operator tools

Each prose section has a tied-in micro-tool that turns the content into a business deliverable:

SectionOperator toolArtefact
On ReadingReading Plan GeneratorTeam-channel reading plan by role × depth
ForewordEra Transition BriefExec-level "we are at this moment" memo
§1 IntroductionSystem Scope GeneratorProject-charter scope statement
§2.1 LineageGovernance OverlayFramework-stack mapping to OIA
§2.2 ContextUrgency BriefBoard-level urgency memo
§2.3 PropertiesLayer Priority PlanRanked investment plan
§3 Nine LayersLayer Scope MemoRACI-style owned-layers memo
§5 SpansSpan Gap MemoCISO / audit gap memo
§6 RelationshipsStack SpecGovernance stack spec for ARB / RFP
§7 AdoptionAdoption PlaybookFour-step program kickoff
§8 DeferralsCommunity InputSubmission to the Foundation
Decision LogReviewer BriefStance-tailored review protocol

All tools persist state to localStorage; every exported artefact is plain Markdown.


Architecture

┌──────────────────────────────────────────────────────────────────────┐
│ Client (oia.agentics.org) │
│ ┌──────────────────────────────────────────────────────────────┐ │
│ │ Single-page app — React 18 + TypeScript + TailwindCSS │ │
│ │ Telemetry-dashboard design system (palette-locked) │ │
│ └──────────────────────────────────────────────────────────────┘ │
└───────────────────────┬──────────────────────────────────────────────┘
│
HTTPS (SNI oia.agentics.org · CORS allow-list)
│
┌───────────────────────▼──────────────────────────────────────────────┐
│ Static hosting — GitHub Pages (oia.agentics.org) │
│ │
│ Cross-origin fetch ↓ /api/* │
│ │
│ Cloud Run service oia-model-reader (us-central1, Gen 2) │
│ Node 20 + Express 5 + better-sqlite3 │
│ │
│ SQLite volume mount: │
│ gs://agentics-oia-model-data → /data/feedback.db │
└──────────────────────────────────────────────────────────────────────┘

Design references

  • Telemetry UI aesthetic homage — see animated-telemetry-dashboard-section (1).tsx
  • Palette: #000000 / #FFFFFF / #F05122 (Agentics orange) — strict
  • All visual motion gated behind IntersectionObserver and disabled under prefers-reduced-motion

Quick Start

Prerequisites

  • Node.js ≥ 20
  • npm ≥ 10
  • For local feedback DB: no setup; the API writes to data/feedback.db on first run
  • For containerised builds: Docker ≥ 20.10

Local development

git clone https://github.com/agenticsorg/OIA-Model
cd OIA-Model
npm install
npm run dev

The SPA and feedback API run together on http://localhost:5173 via a Vite middleware plugin (server/vite-api-plugin.ts).

Production build (local)

npm run build # type-check + Vite build → dist/
npm run server:build # compile server TS → server-dist/
npm run server:start # run dist/ + API on PORT=8080

Container

docker build --platform=linux/amd64 -t oia-model-reader .
docker run --rm -p 8080:8080 \
-v $(pwd)/data:/data \
-e DB_PATH=/data/feedback.db \
oia-model-reader

Deployment

Production runs on Google Cloud Run (Gen 2) in project agenticsorg, region us-central1.

ComponentResource
Containerus-central1-docker.pkg.dev/agenticsorg/gcf-artifacts/oia-model-reader
ServiceCloud Run oia-model-reader, --execution-environment=gen2, allow-unauthenticated
Storagegs://agentics-oia-model-data mounted at /data for SQLite persistence
StaticGitHub Pages (gh-pages branch) serving the SPA on oia.agentics.org
DNSCloudflare CNAME oia.agentics.org → agenticsorg.github.io (DNS-only)
API CORSAllow-list: oia.agentics.org, agenticsorg.github.io, localhost

Redeploy (container only)

# 1. Build and push new image
TAG="v$(date +%Y%m%d-%H%M)"
IMG="us-central1-docker.pkg.dev/agenticsorg/gcf-artifacts/oia-model-reader:$TAG"
docker build --platform=linux/amd64 -t "$IMG".
docker push "$IMG"# 2. Deploy
gcloud run deploy oia-model-reader --image="$IMG" \
--region=us-central1 --project=agenticsorg

Redeploy (static SPA only)

export VITE_API_BASE="https://oia-model-reader-2slhzrawja-uc.a.run.app"
npm run build
echo oia.agentics.org > dist/CNAME
cp dist/index.html dist/404.html
# Push dist/ contents to the gh-pages branch

Feedback Channel & Queryable Data

Agentics Foundation members submit structured feedback via the Feedback section. Submissions are stored in SQLite (data/feedback.db locally, /data/feedback.db on Cloud Run, backed by GCS).

Schema (21 columns)

  • Identity — optional name / email / organisation / role; share_name toggle redacts from public listing
  • Foundation-featured prompts — hyperscaler monopolies, L8 certification, legacy vendor mapping, Foundation funding, regulatory alignment
  • Review prompts drawn from the digests — shape assessment, decisions to reopen + reasons, open-question contribution, missing concerns / tech / spans, vertical-extension experience, improvements, general notes

Query from the CLI

# Human-readable
npm run feedback:list
# Every field, every row
npm run feedback:full
# Arbitrary SELECT (SELECT only; mutations refused)
npm run feedback:query -- "SELECT id, role, substr(shape_response, 1, 120) FROM feedback"# Sync production DB down for local inspection
gcloud storage cp gs://agentics-oia-model-data/feedback.db ./data/feedback.db

Project Layout

OIA-Model/
├── src/
│ ├── sections/ 14 top-level sections + Workspace + Feedback
│ ├── components/
│ │ ├── viz/ Six SVG figures inline with the digest prose
│ │ └── micro/ 13 operator tools (Markdown-artefact generators)
│ ├── content/ Verbatim digest text · layers · spans · refs · decisions
│ ├── lib/ Workspace aggregation + export
│ └── styles/ Telemetry design tokens
├── server/ Production Express app + Vite dev middleware + SQLite
├── scripts/ Feedback CLI (list / full / query)
├── docs/ Source digests (v0.1)
└── plans/ ADR-0001 (the architecture decision record)

Contributing

The OIA Model is open for community review. Two paths:

  1. Through the UI — use the Feedback section on oia.agentics.org. All five Foundation-featured questions and eleven review prompts are structured for machine query.
  2. Through Git — open a pull request against main. Please follow the palette, verbatim-source, and section-structure conventions in plans/ADR-0001-oia-model-reader-ui.md.

For substantive architectural disagreement, cite a specific decision number in the form reopen decision NN, because … — as the Decision Log Digest itself requests.


Security & Privacy

  • The feedback API enforces a CORS allow-list (see server/handlers.ts).
  • Public listings of feedback redact name, email, and organisation for any submission where the reviewer left share_name unchecked. The listFeedbackPublic() view enforces this at the SQL level.
  • No secrets are stored in the repository. Cloudflare and Google credentials live in Google Secret Manager under the agenticsorg project.
  • Cloud Run is public (--allow-unauthenticated) — please do not submit confidential material. Only review-relevant content should be posted.

License

Released under the MIT License. See LICENSE.

Copyright © 2026 Agentics Foundation


Acknowledgments

  • Reuven Cohen — Founder, Agentics Foundation, author of the OIA Model Foreword.
  • Source documents — the OIA Model v0.1 Reader's Digest and the Decision Log Digest are the normative texts this UI renders.
  • Frameworks the model builds on — ISO/IEC 7498 (OSI), NIST Cybersecurity Framework, MITRE ATT&CK / ATLAS, NIST AI Risk Management Framework, OWASP Top 10 for LLM Applications, ISO/IEC 42001, Model Context Protocol.

Published by the Agentics Foundation · 2026

About

An interactive review and implementation workspace for the Open Intelligence Architecture — a nine-layer reference architecture for enterprise intelligent systems.

Resources

Stars

11 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages