A self-modeling and phenomenology kernel for cognitive agents.
Project description
Autonoesis
A self-modeling and phenomenology kernel for cognitive agents.
Autonoesis provides small, typed primitives for representing and updating an agent's model of itself as a subject situated in a world. It is designed to be embedded inside larger cognitive architectures without bringing a database, web framework, agent runtime, or storage backend.
What It Owns
- Phenomenal state records
- Self-model state records
- Agency and ownership attribution
- First-person perspective state
- Boundary and mineness checks
- Transparency / opacity markers
- Pure self-model update operations
What It Does Not Own
- Memory storage
- Agent orchestration
- LLM prompting infrastructure
- Active inference policy selection
- Safety policy systems
- Product runtime surfaces
Install
pip install autonoesis
Minimal Example
from autonoesis import PhenomenalState, SelfModel, assess_agency, update_self_model
state = PhenomenalState(
salience=0.8,
valence=0.2,
arousal=0.4,
perspective="first_person",
)
model = SelfModel(subject_id="agent")
agency = assess_agency(intention_strength=0.9, outcome_match=0.7, external_override=0.0)
updated = update_self_model(model, state, agency=agency)
assert updated.agency.confidence > 0.0
Design Rule
Autonoesis is a kernel. It should stay pure, typed, dependency-light, and easy to test. Host systems should attach storage, orchestration, LLM calls, and runtime policy through adapters.
Project Docs
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file autonoesis-0.3.0.tar.gz.
File metadata
- Download URL: autonoesis-0.3.0.tar.gz
- Upload date:
- Size: 23.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.28 {"installer":{"name":"uv","version":"0.9.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
19788290d2a01f97cc87b59a4dcfed4818e3f073ea3e38ed18d89bce7378ed74
|
|
| MD5 |
be977d17f1b744e1b5521bb4945aa348
|
|
| BLAKE2b-256 |
b639c0595fcd062d76b84f38040b8f473ff3248f4089516d7889c5d51163dbae
|
File details
Details for the file autonoesis-0.3.0-py3-none-any.whl.
File metadata
- Download URL: autonoesis-0.3.0-py3-none-any.whl
- Upload date:
- Size: 10.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.28 {"installer":{"name":"uv","version":"0.9.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
517ce3077d753ed14e5c97417b0147ee2a18c6cef29021882f373fae9a7c8b4a
|
|
| MD5 |
41d563414ecf10b1bff3d71262ee6cce
|
|
| BLAKE2b-256 |
999cdbc85c3eb1807f168a1e12a0c8ed634d3657c8b29d43d4dadcca65f79c93
|