ワンクリックで
aurelion-core
The Aurelion cognitive architecture — five modules that together form a complete autonomous agentic AI system.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
The Aurelion cognitive architecture — five modules that together form a complete autonomous agentic AI system.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
The Aurelion cognitive architecture — five modules that together form a complete autonomous agentic AI system.
Chase-Key's cognitive identity — who he is, how he thinks, and how to work with him effectively.
The Stonecrest world, the Darklight Chambers library, and the Memoria Engine — CK's creative universe that shapes the architecture of everything.
The RELL compliance audit engine — architecture, philosophy, active modules, and development status.
The workload tracker system — scoring engine, team operations, and the Josefina deployment context.
Chase-Key's cognitive identity — who he is, how he thinks, and how to work with him effectively.
SOC 職業分類に基づく
| name | aurelion-core |
| version | 1.0.0 |
| description | The Aurelion cognitive architecture — five modules that together form a complete autonomous agentic AI system. |
| author | z3rosl33p |
| tags | ["aurelion","architecture","agentic","kernel","memory","nexus","advisor","agent"] |
| last_updated | "2026-03-22T00:00:00.000Z" |
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
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 withinstall_modules.ps1.
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 ✅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 logsaurelion-agent)Package: pip install -e ./modules/agent
Import: from aurelion_agent import BaseAgent, LLMProvider
What it does:
LLMProvider — wired connector for OpenAI, Anthropic Claude, Ollama (local)BaseAgent — abstract base class; subclass and implement build_system_prompt()chat_loop() CLI
Status: Extracted and installed in nexus-premium venv. RellAgent now extends BaseAgent. ✅aurelion-advisor)Package: pip install -e ./modules/advisor
Import: from aurelion_advisor import KnowledgeRetriever, TopicAdvisor
What it does:
KnowledgeRetriever — keyword search over a corpus of .md/.json files; plug into build_context()TopicAdvisor — assembles context from multiple retrievers with character budget
Status: Extracted and installed in nexus-premium venv ✅aurelion-nexus-premium)Location: modules/nexus/aurelion-nexus-premium/
What it does: Stonecrest world simulation — uses all 4 modules above. The working AI engine.
RellAgent extends BaseAgent from aurelion-agentStateManager/MemoryManager available for import from kernel/memory modulespython main.py cli (with Ollama running + llama3 pulled)
Status: Running. Wired to module ecosystem. ✅# From project root, pointing at aurelion-eco
../../install_modules.ps1 -VenvPath .venv
Or one at a time:
.venv\Scripts\pip install -e ../../modules/kernel
.venv\Scripts\pip install -e ../../modules/memory
.venv\Scripts\pip install -e ../../modules/agent
.venv\Scripts\pip install -e ../../modules/advisor
```---
## The 5-Floor Architecture (Darklight Chambers)
Inspired by Rell's circular library in Stonecrest. All knowledge in the Aurelion ecosystem is organized on 5 floors:
Floor 5: VISION — Long-term goals, identity, strategic direction
Floor 4: STRATEGY — Frameworks, methodologies, decision models
Floor 3: RELATIONS — People, orgs, teams, stakeholders
Floor 2: OPERATIONS — Active projects, workflows, current work
Floor 1: FOUNDATION — Core facts, hard data, non-negotiable truths
Every kernel file, every audit finding, every skill — maps to a floor.
---
## System Relationships
KERNEL ──defines schema──► MEMORY ──stores data──► NEXUS ──routes to──► AGENT ▲ │ └──────────────────── ADVISOR ────────────────────────┘
- **KERNEL + MEMORY** = Knowledge base
- **NEXUS + AGENT** = Autonomous action layer
- **ADVISOR** = Strategic layer connecting knowledge to decisions
- **AAI-Complete** = All five, pre-wired
---
## How Aurelion Relates to Other Projects
| Project | Aurelion Relationship |
|---|---|
| `aurelion-k-ck-instance` | CK's personal KERNEL instance |
| `memoria-engine` | NEXUS Premium prototype (Stonecrest showcase) |
| `rell-eco` | Audit product built on Aurelion architecture patterns |
| `aurelion-skills` | Context scaffolding layer for bridging Aurelion into any project |