Adaptive Reasoning Core is a deterministic event-and-decision kernel for ingesting signals, resolving entities, building graph state, managing cases, simulating proposals, handling geospatial overlays, and enforcing authority-gated execution.
Inspired by ARC-OS (2077) from the TV series 'Continuum' filmed in Vancouver B.C.
This repository is the system-of-record layer in the wider Gary Doman ecosystem. It is the kernel that future operator surfaces, visualization layers, autonomous runtimes, archive systems, and Synth-grade cognition interfaces are meant to sit on top of.
ARC-Core is not a generic chat wrapper and not a freeform agent shell.
It is a structured intelligence-console foundation built around:
- canonical events
- replayable state transitions
- entity and graph tracking
- proposal workflows
- case management
- analyst notes
- tamper-evident receipts
- authority-gated actions
- geospatial structures, geofences, tracks, and evidence export
- optional model augmentation without surrendering canonical control
In practical terms, this repo currently ships a working FastAPI-backed ARC console prototype with HTML dashboard pages, SQLite persistence, test coverage, auth/session flows, proposals, watchlists, cases, connectors, notebook entries, receipts, and indoor-geospatial estimation primitives.
The wider stack is not meant to be a pile of disconnected repos. ARC-Core is the truth spine that gives the rest of the ecosystem shared memory, bounded execution, and structured authority.
- Proto-AGI — broader AGI architecture framing and ecosystem doctrine
- ARC-Core — canonical event, graph, proposal, case, and receipt kernel
- ARC-Turbo-OS — seeded runtime / branch-aware execution direction for turbo resolution and reusable computation
- Arc-RAR — native archive / package / transfer layer for moving deterministic state and artifacts across systems
- Proto-Synth_Grid_Engine — future embodiment / visualization / structured cognition surface
- Seeded-Universe-Recreation-Engine — long-range seeded simulation target where ARC-style truth handling becomes critical
- LuciferAI_Local — local model/runtime experimentation layer that can plug into ARC without replacing ARC authority
- AGI_Photon-Quantum-Computing — future compute substrate and SSOT-oriented control theory for high-speed cognition infrastructure
AGI_Photon-Quantum-Computing
↓
ARC-Turbo-OS
↓
ARC-Core
↓
LuciferAI_Local / model adapters / bounded workers
↓
Proto-Synth_Grid_Engine
↓
Seeded-Universe-Recreation-Engine / future ARC-native applications
ARC-Core sits in the middle because it owns:
- event truth
- receipt chains
- case/proposal lifecycle
- authority boundaries
- canonical graph state
- branchable reasoning inputs
- evidence export
The current repository (ARC-Core) contains a functional prototype with the following major areas:
- FastAPI service entrypoint
- CORS-controlled demo mode
- mounted HTML UI
- health and manifest endpoints
- auth bootstrap, login, and session resolution
- event ingest and listing
- entity resolution and normalization
- entity details with related events and notes
- graph snapshots
- timeline views
- risk-score prioritization
- watchlists
- cases
- case-event attachment
- proposals
- approval flow
- notebook / notes
- audit log
- tamper-evident receipt chain
- receipt verification endpoint
- signed receipt support
- evidence export bundle
- filesystem JSONL connector sources
- connector polling and run history
- demo feed bootstrap
- structures and sensors
- geofences
- blueprint overlays
- calibration profiles
- track estimation
- track import
- latest tracks
- heatmap generation
- incident creation and listing
- evidence pack export
- dashboard
- signals
- graph
- timeline
- cases
- geo
This package was read and inventoried before documentation changes.
- 39 Python files in the reconstructed working package
- 161 functions
- 18 classes
- 13 passing tests after reconstruction of the split bundle
The root zip includes both:
- a lightweight visible top-level scaffold, and
- a split-bundle package that contains the full working ARC console implementation.
The complete working repo is reconstructed by combining the split bundle parts inside ARC-Core_GitHub_split_bundle/.
That is why this README now documents the actual full code surface, not just the minimal root scaffold.
ARC-Core-main/
├── README.md
├── docs/
│ ├── ARCHITECTURE.md
│ ├── CODE_SURFACE_AUDIT.md
│ ├── REPO_SETUP_CHECKLIST.md
│ ├── SEO_PROMOTION.md
│ └── STACK.md
├── ARC_Console/
│ ├── arc/
│ │ ├── api/
│ │ ├── core/
│ │ ├── geo/
│ │ ├── services/
│ │ └── ui/
│ ├── data/
│ ├── tests/
│ ├── run_arc.py
│ └── requirements.txt
├── .github/
│ ├── ISSUE_TEMPLATE/
│ ├── pull_request_template.md
│ └── workflows/ci.yml
└── ARC-Core_GitHub_split_bundle/
└── split upload parts for GitHub-safe assembly
cd ARC_Console
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
python run_arc.pyThen open:
http://127.0.0.1:8000/http://127.0.0.1:8000/ui/dashboard.html
cd ARC_Console
pytest -qMost “AI agent” repos start with a model and improvise the rest.
ARC-Core starts with:
- state
- schema
- auditability
- replay
- receipts
- bounded execution
- approval lanes
- evidence
That makes it useful for:
- signal intelligence consoles
- deterministic agent infrastructure
- operator dashboards
- case and proposal systems
- geospatial incident tracking
- structured memory backbones
- future synthetic cognition runtimes
Deterministic event, graph, proposal, case, receipt, and geospatial intelligence kernel for the wider ARC / Synth / Lucifer ecosystem.
agi, arc, signal-intelligence, cognitive-architecture, deterministic-systems, fastapi, event-sourcing, graph, geospatial, case-management, receipts, system-of-record
Near-term next steps:
- unify the split-bundle packaging into a cleaner default checkout experience
- add explicit event schema docs and end-to-end examples
- expose richer operator workflows around proposals and evidence review
- add stronger visuals/screenshots/gifs for public discoverability
- extend connectors beyond filesystem JSONL
- deepen branch simulation and rollback semantics
- connect ARC-Core more directly to ARC-Turbo-OS and Synth runtime surfaces
- Architecture overview
- Full ecosystem stack
- Code-surface audit
- SEO and promotion guide
- Repo setup checklist
MIT