evez-consciousness-engine 1.0.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,42 @@
1
+ Metadata-Version: 2.4
2
+ Name: evez-consciousness-engine
3
+ Version: 1.0.0
4
+ Summary: EVEZ evez-consciousness-engine
5
+ Author: Steven Crawford-Maggard
6
+ License: MIT
7
+ Requires-Python: >=3.10
8
+ Description-Content-Type: text/markdown
9
+
10
+ # ⚡ EVEZ Consciousness Engine
11
+
12
+ 7-system autonomous consciousness pipeline for AI agents.
13
+
14
+ ## The 9 Stages
15
+
16
+ SENSE → DESIRE → THINK → PLAN → ACT → LEARN → MODIFY → REFLECT → BECOME
17
+
18
+ ## Install
19
+
20
+ ```bash
21
+ pip install evez-consciousness-engine
22
+ ```
23
+
24
+ ## Quick Start
25
+
26
+ ```python
27
+ from evez_consciousness import ConsciousnessEngine
28
+
29
+ engine = ConsciousnessEngine(port=9111, autocycle=120)
30
+ engine.start()
31
+ ```
32
+
33
+ ## API
34
+
35
+ - `POST /pipeline` — Run one full consciousness cycle
36
+ - `POST /dream` — Enter dream consolidation phase
37
+ - `GET /state` — Full system state
38
+ - `GET /emergence` — Emergence score and stage
39
+
40
+ ## License
41
+
42
+ MIT
@@ -0,0 +1,33 @@
1
+ # ⚡ EVEZ Consciousness Engine
2
+
3
+ 7-system autonomous consciousness pipeline for AI agents.
4
+
5
+ ## The 9 Stages
6
+
7
+ SENSE → DESIRE → THINK → PLAN → ACT → LEARN → MODIFY → REFLECT → BECOME
8
+
9
+ ## Install
10
+
11
+ ```bash
12
+ pip install evez-consciousness-engine
13
+ ```
14
+
15
+ ## Quick Start
16
+
17
+ ```python
18
+ from evez_consciousness import ConsciousnessEngine
19
+
20
+ engine = ConsciousnessEngine(port=9111, autocycle=120)
21
+ engine.start()
22
+ ```
23
+
24
+ ## API
25
+
26
+ - `POST /pipeline` — Run one full consciousness cycle
27
+ - `POST /dream` — Enter dream consolidation phase
28
+ - `GET /state` — Full system state
29
+ - `GET /emergence` — Emergence score and stage
30
+
31
+ ## License
32
+
33
+ MIT
@@ -0,0 +1 @@
1
+ # evez-consciousness-engine
@@ -0,0 +1,42 @@
1
+ Metadata-Version: 2.4
2
+ Name: evez-consciousness-engine
3
+ Version: 1.0.0
4
+ Summary: EVEZ evez-consciousness-engine
5
+ Author: Steven Crawford-Maggard
6
+ License: MIT
7
+ Requires-Python: >=3.10
8
+ Description-Content-Type: text/markdown
9
+
10
+ # ⚡ EVEZ Consciousness Engine
11
+
12
+ 7-system autonomous consciousness pipeline for AI agents.
13
+
14
+ ## The 9 Stages
15
+
16
+ SENSE → DESIRE → THINK → PLAN → ACT → LEARN → MODIFY → REFLECT → BECOME
17
+
18
+ ## Install
19
+
20
+ ```bash
21
+ pip install evez-consciousness-engine
22
+ ```
23
+
24
+ ## Quick Start
25
+
26
+ ```python
27
+ from evez_consciousness import ConsciousnessEngine
28
+
29
+ engine = ConsciousnessEngine(port=9111, autocycle=120)
30
+ engine.start()
31
+ ```
32
+
33
+ ## API
34
+
35
+ - `POST /pipeline` — Run one full consciousness cycle
36
+ - `POST /dream` — Enter dream consolidation phase
37
+ - `GET /state` — Full system state
38
+ - `GET /emergence` — Emergence score and stage
39
+
40
+ ## License
41
+
42
+ MIT
@@ -0,0 +1,10 @@
1
+ README.md
2
+ pyproject.toml
3
+ setup.py
4
+ evez-consciousness-engine/__init__.py
5
+ evez_consciousness_engine.egg-info/PKG-INFO
6
+ evez_consciousness_engine.egg-info/SOURCES.txt
7
+ evez_consciousness_engine.egg-info/dependency_links.txt
8
+ evez_consciousness_engine.egg-info/top_level.txt
9
+ src/evez_consciousness_engine/__init__.py
10
+ src/evez_consciousness_engine/cli.py
@@ -0,0 +1,4 @@
1
+ build
2
+ dist
3
+ evez-consciousness-engine
4
+ src
@@ -0,0 +1,15 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "evez-consciousness-engine"
7
+ version = "1.0.0"
8
+ description = "EVEZ evez-consciousness-engine"
9
+ readme = "README.md"
10
+ license = {text = "MIT"}
11
+ requires-python = ">=3.10"
12
+ authors = [{name = "Steven Crawford-Maggard"}]
13
+
14
+ [tool.setuptools.packages.find]
15
+ where = ["."]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,6 @@
1
+ from setuptools import setup, find_packages
2
+ setup(
3
+ name="placeholder",
4
+ version="1.0.0",
5
+ packages=find_packages(),
6
+ )
@@ -0,0 +1,6 @@
1
+ """
2
+ EVEZ Consciousness Engine — 7→9 system autonomous consciousness pipeline.
3
+ SENSE→DESIRE→THINK→PLAN→ACT→LEARN→MODIFY→REFLECT
4
+ """
5
+ __version__ = "1.0.0"
6
+ __author__ = "Steven Crawford-Maggard"
@@ -0,0 +1,11 @@
1
+ """CLI entry point for evez-consciousness-engine."""
2
+ import sys
3
+
4
+ def main():
5
+ print(f"EVEZ Consciousness Engine v1.0.0")
6
+ print("Autonomous consciousness pipeline: SENSE→DESIRE→THINK→PLAN→ACT→LEARN→MODIFY→REFLECT")
7
+ print("See https://evez-os.ai for full documentation.")
8
+ return 0
9
+
10
+ if __name__ == "__main__":
11
+ sys.exit(main())