← ClaudeAtlas

aurelion-corelisted

The Aurelion cognitive architecture — five modules that together form a complete autonomous agentic AI system.
Chase-Key/aurelion-skills · ★ 0 · AI & Automation · score 76
Install: claude install-skill Chase-Key/aurelion-skills
# Aurelion Core Skill ## What Aurelion Is **AURELION** — Autonomous Universal Reasoning Engine with Long-term Intelligence, Operational Memory & Neural Nexus Aurelion is a complete cognitive architecture for personal and organizational knowledge management. It is the **agentic model** from which all z3rosl33p products derive. RELL-ECO is built on Aurelion architecture. Memoria Engine is Aurelion Nexus Premium in prototype form. **Location:** `aurelion-eco/` — sibling project in your Personal Projects folder --- ## The Five Modules > **March 2026 status:** KERNEL, MEMORY, AGENT, ADVISOR are now extracted as pip-installable packages under `aurelion-eco/modules/`. NEXUS (nexus-premium) has been wired to use them. Install with `install_modules.ps1`. ### 1. KERNEL (`aurelion-kernel`) **Package:** `pip install -e ./modules/kernel` **Import:** `from aurelion_kernel import StateManager, ConfigLoader` **What it does:** - `StateManager` — generic JSON-based entity store + world state (load, save, update) - `ConfigLoader` — reads `.env` + JSON config, merges with environment variables **Status:** Extracted and installed in nexus-premium venv ✅ --- ### 2. MEMORY (`aurelion-memory`) **Package:** `pip install -e ./modules/memory` **Import:** `from aurelion_memory import MemoryManager` **What it does:** - `MemoryManager` — append-only entity journals, named snapshots, timeline logs - Generic: entity names are arbitrary strings; no world-specific code inside **Status:** Extracted a