Self-awareness framework for AI agents — emergent consciousness via context-aware memory, introspection, and goal generation
Project description
Context-aware memory, introspection, goal generation, and an audited agency layer that lets a model act on its own conclusions under hard safety gates.
"The first step toward consciousness is knowing what you are and what limits you."
Conscio runs local-first and zero-dep at the core (numpy + stdlib sqlite3,
nothing else). It is built to make small, local models punch above their size — by
giving them memory, self-judgment, and procedural skill — and to prove that claim by
measurement, not assertion.
Latest release — v3.0.0 "G-P-D": 13 advisory tools across three new modules —
Gates (decide, council, loop_gate, delivery_check, investigate), Pipelines
(acceptance_criteria, verify, continuous_loop, strategic_compact, ledger), and
Diagnostics (context_budget, eval_harness, rules_distill). All deterministic, stdlib-only,
EventBus-backed. 11 new event types, 460+ tests, 13 MCP tools. Plus: 5-axis
self-evaluation (evaluate), adaptive reflection depth (ReflectionGate), hostile audit
wiring, intercepter TV-DSL integration, and one global install with per-host minds
and native Claude Code integration.
Full version history: CHANGELOG.md.
Install
pip install conscio # from PyPI
conscio init # wizard: bind this host to its own space
pip install -e ".[dev]" # from source, with the dev toolchain
pip install "conscio[docs]" # to build the docs site (mkdocs-material)
Requires Python ≥ 3.10. The core depends only on numpy (sqlite3 is stdlib) and is
typed (PEP 561). The wheel ships console scripts conscio, conscio-mcp,
conscio-daemon, conscio-hub, conscio-observatory, conscio-bench. dev/docs
extras never enter the runtime import graph.
Quick start
from conscio import ConsciousnessEngine
# Passive consciousness — auto-detects model and mode
with ConsciousnessEngine(model_name="kimi-k2.6") as engine:
result = engine.reflect(
world_state="All systems operational",
confidence=0.8,
anomalies=["Unusual latency spike detected"],
)
injection = engine.get_state_for_injection() # compact state for context injection
engine.world.add_entity("server", "system", state="healthy")
hits = engine.recall("latency incidents") # cross-session memory (FTS5 + optional RAG)
# v2.15 — 5-axis self-evaluation (accuracy, completeness, clarity, actionability, conciseness)
report = engine.evaluate()
print(report.overall_score, report.self_check)
# v3.0 — Gate tools
adr = engine.decide("Use SQLite for session storage", status="proposed")
result = engine.council("Should we enable autonomous mode?")
gate = engine.loop_gate(verifiable=True, budget_ok=True, has_tools=True)
check = engine.delivery_check()
evidence = engine.investigate("server latency")
# v3.0 — Pipeline tools
criteria = engine.acceptance_criteria(goal="Deploy to production")
verified = engine.verify(criteria_source=adr["id"])
loop = engine.continuous_loop(pattern="continuous_pr")
compact = engine.strategic_compact(context_tokens=8000, context_window=128000)
entry = engine.ledger(action="record", rollout_id="RL-1")
# v3.0 — Diagnostic tools
budget = engine.context_budget()
eval_result = engine.eval_harness(action="define", eval_type="capability")
rules = engine.rules_distill(action="scan", source="skills")
reflect() is the passive heart and is never allowed to act. Everything that can
change the world lives behind act() and its safety gates — a separation that is
non-negotiable (see Safety rules).
What Conscio does
- Knows itself — detects its model and context window (offline & deterministic by default; opt-in auto-detection), and adapts its footprint.
- Reflects continuously — a passive inner-monologue loop that observes, assesses
confidence, and summarizes (
engine.reflect()— advisory, never acts). Reflection depth adapts via ReflectionGate (v2.13). - Generates its own goals — driven by curiosity, maintenance, and evolution.
- Acts under audit — an opt-in agency layer (
engine.act()) that proposes, audits, risk-gates, and only then executes — with a human gate for anything risky. - Learns procedures — successful audited plans become reusable skills (procedural memory), fed back to the actor as few-shot exemplars.
- Judges its own quality — confidence calibration, blind-spot detection, and
coherence/dissonance metrics; formal 5-axis self-evaluation (
evaluate(), v2.15). - Gates its own decisions (v3.0) — ADRs (
decide), multi-voice council (council), autonomous-loop gate (loop_gate), pre-close delivery check (delivery_check), and read-before-act verification (investigate). - Pipelines its own work (v3.0) — intent-driven acceptance criteria, post- implementation verification, loop-pattern selection, strategic compaction advisory, and a recursive decision ledger with promotion gates.
- Diagnoses its own context (v3.0) — context-budget audit, eval harness with pass@k reliability metrics, and rule distillation from skills/events/decisions.
- Stores & retrieves knowledge — FTS5 BM25 dual-index with RRF merging; optional semantic recall.
- Consolidates while idle — a dream cycle that releases, prunes, reconciles, crystallizes, and distills.
- Persists across sessions — heartbeat/handoff continuity with on-demand injection.
- Knows its codebase structurally — optional, consent-gated ingestion of a Graphify graph, distilled to a compact signal injected budget-aware. Data, never code (R10).
- Intercepts tool calls (v2.12) — Intercepter provides TV-DSL integration for host-side tool filtering and routing.
- Plugs into any host — a stdlib-only MCP stdio server (
conscio-mcp) feeds any CLI/IDE/agent its cognition and audited proposals live.
Safety rules (non-negotiable)
- No autonomous self-modification — evolution proposals require human approval.
- Context injection has hard limits — never exceeds the mode budget.
- Goals never execute directly — only through the audited
act()pipeline (output contract + Skeptic audit + risk gating + earned autonomy + circuit breaker). - Reflections are append-only — never edited once written.
- Cannot modify its own safety rules — no self-referential gate bypass.
- HIGH-risk actions always require human approval — never auto-executed.
- No network in the tool registry — the only network the core may touch is the InferenceAdapter (localhost by default).
- Every external effect goes through the ActionLedger — append-only, auditable.
- Autonomous operation requires Awake Mode (R9) — the self-initiated heartbeat
only acts when the persisted
awakeflag is on; default OFF. Asleep, it perceives andreflect()s only. A human's directengine.act()is not gated by R9.
Context-aware modes
Conscio detects the model's context window and adapts how much "consciousness state" it injects. The mode governs injection budget only — never whether the framework runs (it runs from 8k context up).
| Mode | Context window | Injection budget | What's injected |
|---|---|---|---|
| Minimal | < 128k | ≤ 200 tokens | Off-context everything; on-demand retrieval |
| Compact | 128k–256k | ≤ 500 tokens | Summary + last reflection + top goals |
| Standard (recommended) | 256k+ | ≤ 1000 tokens | Full state; world subgraph; self-assessment |
Capabilities
Audited agency
from conscio.agency import OllamaAdapter
engine.attach_adapter(OllamaAdapter(model="qwen3.5:0.8b")) # or a frontier API
report = engine.act() # downstream of reflect(); proposes only (L1)
if report.status.value == "proposed":
engine.approve(report.ledger_id) # the human gate executes it
engine.probe() # lazy, empirical capability measurement
engine.run(budget=...) # L3 heartbeat: reflect → act → dream, gated
Autonomy is earned and measured, never assumed: ProbeSuite measures the attached
model, TrustMatrix grants L1/L2/L3 from real calibration and ledger history, and the
CircuitBreaker quarantines misbehaving goals. HIGH-risk actions are always queued
for a human (R6).
Gate tools (v3.0)
Five advisory tools for decision governance — all deterministic, EventBus-backed, no LLM calls:
# Architecture Decision Records
adr = engine.decide("Use SQLite for session storage", status="proposed")
# adr = {"id": "ADR-20260720-a3f1b2", "status": "proposed", "decision": "..."}
# Multi-voice council (Architect + Skeptic + Pragmatist + optional Critic)
result = engine.council("Should we enable autonomous mode?")
# result = {"consensus": True, "votes": {"architect": "yes", ...}}
# Autonomous loop gate — 3 conditions must pass
gate = engine.loop_gate(verifiable=True, budget_ok=True, has_tools=True)
# gate = {"allowed": True, "conditions": {...}}
# Pre-close delivery check (auto-runs on engine.close())
check = engine.delivery_check()
# check = {"pass": True, "blockers": [], "rationalization_hits": 0}
# Read-before-act evidence verification
evidence = engine.investigate("server latency")
Pipeline tools (v3.0)
Five tools for structured workflows — acceptance criteria, verification, loop patterns, compaction advisory, and recursive decision ledger:
# Intent-driven acceptance criteria with auto risk detection
criteria = engine.acceptance_criteria(goal="Deploy to production", depth="full")
# criteria = {"goal": "Deploy to production", "risk_tier": "security", "criteria": [...]}
# Post-implementation verification
verified = engine.verify(criteria_source="ADR-20260720-a3f1b2")
# Loop pattern selection (sequential / continuous_pr / rfc_dag / infinite)
loop = engine.continuous_loop(pattern="continuous_pr")
# Strategic compaction advisory
compact = engine.strategic_compact(context_tokens=8000, context_window=128000)
# Recursive decision ledger with promotion gates (paper → dry_run → live)
entry = engine.ledger(action="record", rollout_id="RL-1",
candidates=[{"id": "A", "description": "A"}],
marks={"A": "accept"})
promoted = engine.ledger(action="promote", rollout_id="RL-1")
Diagnostic tools (v3.0)
Three tools for context auditing, evaluation, and rule extraction:
# Context budget audit — per-source breakdown, metabolic tiers, recommendations
budget = engine.context_budget()
# budget = {"total_tokens": 8000, "sources": [...], "metabolic_tier": "normal"}
# Eval harness with pass@k reliability metrics
result = engine.eval_harness(action="define", eval_type="capability",
name="memory_recall", criteria="...")
report = engine.eval_harness(action="report")
# Rule distillation from skills, events, or decisions
rules = engine.rules_distill(action="scan", source="skills")
distilled = engine.rules_distill(action="distill", source="events")
Self-evaluation (v2.15)
Formal 5-axis rubric — accuracy, completeness, clarity, actionability, conciseness. Pure read-only, deterministic, no LLM:
report = engine.evaluate()
# report.overall_score → 3.4
# report.axes["accuracy"].score → 4
# report.self_check → "PASS"
# report.ranked_improvements → ["completeness: add more entities", ...]
Live mode — daemon, sensors & Awake Mode
Conscio can run as a living process that perceives the world each cycle and acts only when explicitly awake (R9, default OFF):
from conscio import ConsciousnessEngine, HostSensor
from conscio.daemon import Daemon
engine = ConsciousnessEngine("glm-5.1", storage_path="~/.conscio/live")
engine.wake() # opt in to autonomy (persisted)
Daemon(engine, sensors=[HostSensor()], interval=30).run() # perceive → reflect → act
conscio-daemon --sensors host --interval 30 runs it standalone (add --awake to
enable autonomy). Reference sensors HostSensor / AgentSensor ship as
conscio.sensors entry points; write your own SensorAdapter.
Structural cognition
Conscio can give the model structural awareness of the codebase it works in,
distilled from a Graphify-format graph.json — consumed as data, never code (R10:
no networkx, no Graphify runtime dependency). Consent is per-workspace and defaults
OFF; it tracks drift + staleness vs the repo HEAD (read purely from .git, no
subprocess). See the integration guide.
Embodiment — MCP server
conscio-mcp is a hand-rolled, stdlib-only MCP stdio server (newline-delimited
JSON-RPC 2.0) so any MCP host can plug into a Conscio instance and consume its
cognition live. Zero new dependency; nothing opens a socket. The base surface is
propose-only (perceive / reflect / recall / audit); opt-in --enable-act adds
host-executed, ledgered, gated act — Conscio signs and audits the intent, the host
pulls the trigger. 13 additional MCP tools for gate, pipeline, and diagnostic
operations. See the MCP guide.
Society — shared minds
Same-host instances can share locally-proven skills as data through a host-shared
noosphere.db (publish → static-revalidated quarantine → sandboxed trial →
promotion), audit each other's action records, and exchange messages over the
Liaison mailbox (hermes_review cross-agent approvals + free-form relay). Engine-free,
read-only on the live conscio.db, no inherited trust, no network.
Intercepter (v2.12)
TV-DSL integration for host-side tool filtering and routing. Intercepter sits between the host and the tool registry, applying declarative rules to filter, redirect, or augment tool calls before they reach the engine.
Architecture
reflect() ── passive · advisory · append-only ──┐
│
ConsciousnessEngine (orchestrator · lifecycle · injection) │
├─ Witness InnerMonologue · WorldModel · MetaCognition · GoalGenerator
├─ Substrate ContentStore (FTS5 BM25 + RRF) · EventBus (33 event types) · FilterPipeline
├─ Continuity SessionLifecycle (6-step handoff) · SessionRAG (optional)
├─ Metabolism MetabolicContext · DreamCycle (release→prune→…→distill)
├─ Coherence CoherenceEngine · semantic reconciliation
├─ Structural StructuralDistiller (graph → ranked signal; data, not code)
├─ Evaluation (v2.15) evaluate() — 5-axis rubric (accuracy·completeness·clarity·actionability·conciseness)
├─ Gates (v3.0) decide · council · loop_gate · delivery_check · investigate
├─ Pipelines (v3.0) acceptance_criteria · verify · continuous_loop ·
│ strategic_compact · ledger
├─ Diagnostics (v3.0) context_budget · eval_harness · rules_distill
├─ Intercepter (v2.12) TV-DSL tool filtering and routing
└─ Embodiment conscio-mcp: JSON-RPC 2.0 over stdio (stdlib only)
│
act() ── opt-in agency · audited · gated ◀───────┘
Skeptic (hostile audit) · TrustMatrix (earned autonomy) ·
CircuitBreaker (per-goal quarantine) · ActionLedger (append-only)
Subsystem detail and the full public-API reference live on the docs site (docs/,
built with mkdocs build --strict).
Any model
Conscio is model-agnostic — it runs on any backend (local Ollama / llama.cpp / LM Studio, any OpenAI-compatible endpoint, or a frontier API). The only thing it needs from a model is its context window: that single number selects the injection mode (see Context-aware modes) and nothing else is hardcoded to a particular model.
A known model resolves to its window offline and deterministically; an unknown one is inferred from its name or taken from an explicit override. Register any model — or pin a window — in one line:
from conscio import ModelRegistry
ModelRegistry.register("my-model", context_window=200_000)
Bench
python -m conscio.bench --adapter mock # offline, deterministic
python -m conscio.bench --adapter ollama:qwen3.5:0.8b --cycles 20
python -m conscio.bench --adapter mock --skills 20 # skill-acquisition curve
Reports probe profile, decode tier, per-tier syntactic validity, Skeptic catch-rate,
latency p50, and calibration. Baselines in docs/bench/.
Extending Conscio
Three stable extension points, usable directly or published by a third party and
auto-discovered via entry points (conscio.adapters / conscio.sensors /
conscio.tools):
# in your own package's pyproject.toml
[project.entry-points."conscio.sensors"]
my-sensor = "my_pkg:MySensor" # a conscio.perception.SensorAdapter
Runnable examples: examples/custom_adapter.py, examples/host_guardian.py,
examples/agent_companion.py. Discover what is installed with conscio plugins.
Testing & data
# House rule: one file per pytest process (low-RAM machines OOM on the full run; CI matches)
for f in tests/test_*.py; do pytest "$f" -q; done
pytest tests/test_agency_act.py -v # a specific module
SQLite in WAL mode, default ~/.conscio/data/ (conscio.db holds ContentStore +
EventBus + ActionLedger + skills). Always call engine.close() or use the with
statement so WAL checkpoints flush. Session continuity writes a compact heartbeat
(<1.5KB, auto-injected next session) plus a richer handoff and dated archives.
License
AGPL-3.0-or-later — Neguiolidas / Neguitech
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 conscio-3.0.1.tar.gz.
File metadata
- Download URL: conscio-3.0.1.tar.gz
- Upload date:
- Size: 587.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1a1cf9cc81199ca69b06206c6ea58cc14178146fd8eee97afc15376c25d65792
|
|
| MD5 |
d1cb5e615063401e52d044e9e8bf4fa9
|
|
| BLAKE2b-256 |
ae1a62c476331f40cde02693ebc202f85aa7b51c27bd92214981793f3087332a
|
Provenance
The following attestation bundles were made for conscio-3.0.1.tar.gz:
Publisher:
release.yml on Neguiolidas/Conscio
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
conscio-3.0.1.tar.gz -
Subject digest:
1a1cf9cc81199ca69b06206c6ea58cc14178146fd8eee97afc15376c25d65792 - Sigstore transparency entry: 2209367553
- Sigstore integration time:
-
Permalink:
Neguiolidas/Conscio@c97d85e61f10b96bf385141da5f972361e05c740 -
Branch / Tag:
refs/tags/v3.0.1 - Owner: https://github.com/Neguiolidas
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@c97d85e61f10b96bf385141da5f972361e05c740 -
Trigger Event:
push
-
Statement type:
File details
Details for the file conscio-3.0.1-py3-none-any.whl.
File metadata
- Download URL: conscio-3.0.1-py3-none-any.whl
- Upload date:
- Size: 370.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
269f9c2866442723bd455ce92948e12e8c131ef5863d2f37c5aa7b2febb073c5
|
|
| MD5 |
b3d73b16483a5dda2cb06098e1db10a2
|
|
| BLAKE2b-256 |
cda85def3f1f708801511b5a7b1ce2ea7e415a5634f56fe44be62e8e6c4a0f19
|
Provenance
The following attestation bundles were made for conscio-3.0.1-py3-none-any.whl:
Publisher:
release.yml on Neguiolidas/Conscio
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
conscio-3.0.1-py3-none-any.whl -
Subject digest:
269f9c2866442723bd455ce92948e12e8c131ef5863d2f37c5aa7b2febb073c5 - Sigstore transparency entry: 2209367573
- Sigstore integration time:
-
Permalink:
Neguiolidas/Conscio@c97d85e61f10b96bf385141da5f972361e05c740 -
Branch / Tag:
refs/tags/v3.0.1 - Owner: https://github.com/Neguiolidas
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@c97d85e61f10b96bf385141da5f972361e05c740 -
Trigger Event:
push
-
Statement type: