shinon 0.0.1__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.
- shinon-0.0.1/PKG-INFO +48 -0
- shinon-0.0.1/README.md +32 -0
- shinon-0.0.1/pyproject.toml +28 -0
- shinon-0.0.1/setup.cfg +4 -0
- shinon-0.0.1/shinon/__init__.py +8 -0
- shinon-0.0.1/shinon.egg-info/PKG-INFO +48 -0
- shinon-0.0.1/shinon.egg-info/SOURCES.txt +7 -0
- shinon-0.0.1/shinon.egg-info/dependency_links.txt +1 -0
- shinon-0.0.1/shinon.egg-info/top_level.txt +1 -0
shinon-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: shinon
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Shinon — AI-powered conversational memory engine
|
|
5
|
+
Author-email: Mark Cognitive <mark@cognis.ai>
|
|
6
|
+
Project-URL: Homepage, https://github.com/markedcognitive/shinon
|
|
7
|
+
Project-URL: Repository, https://github.com/markedcognitive/shinon
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
14
|
+
Requires-Python: >=3.10
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# Cognis
|
|
18
|
+
|
|
19
|
+
> Cognis gives AI agents a persistent personality that evolves over time. No chatbots that forget — just continuous, self-curating memory and mood.
|
|
20
|
+
|
|
21
|
+
Cognis is a lightweight, local-first architecture that transitions AI from stateless chatbots into continuous, embodied entities. Backed by a dynamic semantic memory stream and an internal two-dimensional affective engine (Valence & Arousal), Cognis computes expectancy deltas at every interaction turn to drive an organic, evolving personality trajectory.
|
|
22
|
+
|
|
23
|
+
## Status
|
|
24
|
+
|
|
25
|
+
**v0.0.1 — Planning**
|
|
26
|
+
|
|
27
|
+
This is a placeholder release to claim the package name on PyPI. Full API docs and features coming soon.
|
|
28
|
+
|
|
29
|
+
## Quick Start
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
pip install mc-cognis
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
## Features
|
|
36
|
+
|
|
37
|
+
- Fixed-section context model (SOUL, MEMORY, EXPECTANCY, CONVERSATION, WORKING_SPACE)
|
|
38
|
+
- LLM-driven mood management with expectancy calculus
|
|
39
|
+
- Personality system with configurable baselines
|
|
40
|
+
- Token-budget-aware context curation
|
|
41
|
+
|
|
42
|
+
## Repository
|
|
43
|
+
|
|
44
|
+
https://github.com/markedcognitive/cognis
|
|
45
|
+
|
|
46
|
+
## License
|
|
47
|
+
|
|
48
|
+
AGPL-3.0 — All modifications must be shared back, even when used as a service.
|
shinon-0.0.1/README.md
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# Cognis
|
|
2
|
+
|
|
3
|
+
> Cognis gives AI agents a persistent personality that evolves over time. No chatbots that forget — just continuous, self-curating memory and mood.
|
|
4
|
+
|
|
5
|
+
Cognis is a lightweight, local-first architecture that transitions AI from stateless chatbots into continuous, embodied entities. Backed by a dynamic semantic memory stream and an internal two-dimensional affective engine (Valence & Arousal), Cognis computes expectancy deltas at every interaction turn to drive an organic, evolving personality trajectory.
|
|
6
|
+
|
|
7
|
+
## Status
|
|
8
|
+
|
|
9
|
+
**v0.0.1 — Planning**
|
|
10
|
+
|
|
11
|
+
This is a placeholder release to claim the package name on PyPI. Full API docs and features coming soon.
|
|
12
|
+
|
|
13
|
+
## Quick Start
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
pip install mc-cognis
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Features
|
|
20
|
+
|
|
21
|
+
- Fixed-section context model (SOUL, MEMORY, EXPECTANCY, CONVERSATION, WORKING_SPACE)
|
|
22
|
+
- LLM-driven mood management with expectancy calculus
|
|
23
|
+
- Personality system with configurable baselines
|
|
24
|
+
- Token-budget-aware context curation
|
|
25
|
+
|
|
26
|
+
## Repository
|
|
27
|
+
|
|
28
|
+
https://github.com/markedcognitive/cognis
|
|
29
|
+
|
|
30
|
+
## License
|
|
31
|
+
|
|
32
|
+
AGPL-3.0 — All modifications must be shared back, even when used as a service.
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "shinon"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Shinon — AI-powered conversational memory engine"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
authors = [
|
|
12
|
+
{name = "Mark Cognitive", email = "mark@cognis.ai"}
|
|
13
|
+
]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
"Programming Language :: Python :: 3.10",
|
|
19
|
+
"Programming Language :: Python :: 3.11",
|
|
20
|
+
"Programming Language :: Python :: 3.12",
|
|
21
|
+
]
|
|
22
|
+
|
|
23
|
+
[project.urls]
|
|
24
|
+
Homepage = "https://github.com/markedcognitive/shinon"
|
|
25
|
+
Repository = "https://github.com/markedcognitive/shinon"
|
|
26
|
+
|
|
27
|
+
[tool.setuptools.packages.find]
|
|
28
|
+
include = ["shinon*"]
|
shinon-0.0.1/setup.cfg
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: shinon
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Shinon — AI-powered conversational memory engine
|
|
5
|
+
Author-email: Mark Cognitive <mark@cognis.ai>
|
|
6
|
+
Project-URL: Homepage, https://github.com/markedcognitive/shinon
|
|
7
|
+
Project-URL: Repository, https://github.com/markedcognitive/shinon
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
14
|
+
Requires-Python: >=3.10
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# Cognis
|
|
18
|
+
|
|
19
|
+
> Cognis gives AI agents a persistent personality that evolves over time. No chatbots that forget — just continuous, self-curating memory and mood.
|
|
20
|
+
|
|
21
|
+
Cognis is a lightweight, local-first architecture that transitions AI from stateless chatbots into continuous, embodied entities. Backed by a dynamic semantic memory stream and an internal two-dimensional affective engine (Valence & Arousal), Cognis computes expectancy deltas at every interaction turn to drive an organic, evolving personality trajectory.
|
|
22
|
+
|
|
23
|
+
## Status
|
|
24
|
+
|
|
25
|
+
**v0.0.1 — Planning**
|
|
26
|
+
|
|
27
|
+
This is a placeholder release to claim the package name on PyPI. Full API docs and features coming soon.
|
|
28
|
+
|
|
29
|
+
## Quick Start
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
pip install mc-cognis
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
## Features
|
|
36
|
+
|
|
37
|
+
- Fixed-section context model (SOUL, MEMORY, EXPECTANCY, CONVERSATION, WORKING_SPACE)
|
|
38
|
+
- LLM-driven mood management with expectancy calculus
|
|
39
|
+
- Personality system with configurable baselines
|
|
40
|
+
- Token-budget-aware context curation
|
|
41
|
+
|
|
42
|
+
## Repository
|
|
43
|
+
|
|
44
|
+
https://github.com/markedcognitive/cognis
|
|
45
|
+
|
|
46
|
+
## License
|
|
47
|
+
|
|
48
|
+
AGPL-3.0 — All modifications must be shared back, even when used as a service.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
shinon
|