| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| bias module.py | 2026-07-17 | 6.9 kB | |
| world module.py | 2026-07-17 | 6.3 kB | |
| value module.py | 2026-07-17 | 7.5 kB | |
| Identity module.py | 2026-07-17 | 6.9 kB | |
| Goal module.py | 2026-07-17 | 6.9 kB | |
| Totals: 5 Items | 34.5 kB | 0 | |
Anthropomorphic Psychology · SPL Pure Core V8.0
ANTHROPOMORPHIC-AGENT-ENGINE is an anthropomorphic psychology engine built on SPL Pure Core V8.0. It models cognition, emotion, motivation, and sociality as composable subsystems, giving AI agents anthropomorphic internal states and consistent personalities for coherent, emotionally credible behavior in long-term interactions.
— ✦ —
✦ Quick Start
git clone git@github.com:NOHN-AI/ANTHROPOMORPHIC-AGENT-ENGINE.git
cd ANTHROPOMORPHIC-AGENT-ENGINE
# Pure Python ≥3.8 — standard library only, nothing to install
python "SPL-anthropic-engine.py" # run the engine / bundled demo
Install from PyPI
The engine is also published on PyPI as spl-agent-engine:
pip install spl-agent-engine==0.1.0
from spl_agent_engine import SPLPureCoreV7_3
core = SPLPureCoreV7_3()
core.process_vector({"belonging": 0.5, "threat": -0.1}, 1.0)
print(core.snapshot())
— ✦ —
✦ What's Inside — SPL Pure Core V8.0
✦ Composable Modules
✦ Usage
import importlib.util
spec = importlib.util.spec_from_file_location("spl_core", "SPL-anthropic-engine.py")
spl = importlib.util.module_from_spec(spec); spec.loader.exec_module(spl)
core = spl.SPLPureCoreV7_3()
# An external event is mapped to an interoceptive vector by the (swappable) persona layer
vec = spl.NarrativeMapper.map_event("insult", intensity=1.0)
# feed `vec` into `core` to evolve emotion / trust / trauma state over time
✦ Project Structure
ANTHROPOMORPHIC-AGENT-ENGINE/
├── SPL-anthropic-engine.py # core engine + NarrativeMapper
├── feature/ # Goal / Identity / bias / value / world modules
├── sujin-demo/ # reference demo assets
├── assets/ # banner.svg, overview.svg
└── docs/index.html
✦ License & Authorization
This repository is not open-source. It uses a dual-track model: free for individual non-commercial research, paid commercial authorization required for government / enterprise. See LICENSE for the full terms — licensor and governing law are determined by the user's location.
NOHN-AI · nohnlins.com (www.nohnlins.com) · ai@nohnlins.com
NOHN AI · ANTHROPOMORPHIC-AGENT-ENGINE