noscium 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.
noscium-0.0.1/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Ragesh
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
noscium-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,85 @@
1
+ Metadata-Version: 2.5
2
+ Name: noscium
3
+ Version: 0.0.1
4
+ Summary: Institutional memory for enterprise AI assistants — governed, multi-user, organizational memory framework.
5
+ Project-URL: Homepage, https://github.com/YOUR_GITHUB_USERNAME/noscium
6
+ Project-URL: Repository, https://github.com/YOUR_GITHUB_USERNAME/noscium
7
+ Project-URL: Issues, https://github.com/YOUR_GITHUB_USERNAME/noscium/issues
8
+ Author: Ragesh
9
+ License: MIT
10
+ License-File: LICENSE
11
+ Keywords: agents,ai,enterprise-ai,institutional-memory,llm,memory,organizational-memory,rag
12
+ Classifier: Development Status :: 2 - Pre-Alpha
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: OSI Approved :: MIT License
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.9
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
21
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
+ Requires-Python: >=3.9
23
+ Description-Content-Type: text/markdown
24
+
25
+ # Noscium
26
+
27
+ Institutional memory for enterprise AI assistants.
28
+
29
+ Unlike retrieval systems (RAG) or single-user memory libraries, Noscium is
30
+ designed for organizations: multiple users, teams, roles, and the governance
31
+ that comes with it.
32
+
33
+ > **Status: pre-alpha.** This repo currently holds the initial scaffold and
34
+ > roadmap. Follow along via the [Institutional Intelligence newsletter](#)
35
+ > for build updates.
36
+
37
+ ## Why Noscium
38
+
39
+ Most AI agent memory systems (Mem0, Zep, and others) optimize for *individual
40
+ recall* — one user's memories, retrieved well over time. Noscium's focus is
41
+ different: *organizational* memory — many users, teams, and roles, and the
42
+ access control, consolidation, and conflict resolution that come with that.
43
+
44
+ ## Planned Features
45
+
46
+ - **Multi-user access control** — memories scoped by role and team
47
+ - **Organizational consolidation** — individual facts become org-level knowledge
48
+ - **Conflict resolution** — when memories contradict, track and resolve
49
+ - **Compliance & retention** — configurable policies, audit trails, provenance
50
+ - **Importance judging** — LLM + user feedback decides what's worth remembering
51
+ - **Memory types** — episodic (what happened), semantic (what is true), procedural (how to do X)
52
+
53
+ ## Roadmap
54
+
55
+ | Phase | Focus | Status |
56
+ |---|---|---|
57
+ | Phase 1 | Core memory model, extraction, scoped retrieval | In progress |
58
+ | Phase 2 | Organizational consolidation, conflict resolution, memory graph | Planned |
59
+ | Phase 3 | Governance, compliance, retention policies, full audit trail | Planned |
60
+
61
+ ## Installation
62
+
63
+ ```bash
64
+ pip install noscium
65
+ ```
66
+
67
+ (Pre-alpha — API will change without notice until a 0.1.0 release.)
68
+
69
+ ## Quickstart
70
+
71
+ ```python
72
+ from noscium import Memory, MemoryType, VisibilityScope
73
+
74
+ m = Memory(
75
+ id="mem_001",
76
+ fact="Customer X prefers async standups",
77
+ type=MemoryType.SEMANTIC,
78
+ team_id="support-team",
79
+ visibility_scope=VisibilityScope.TEAM,
80
+ )
81
+ ```
82
+
83
+ ## License
84
+
85
+ MIT
@@ -0,0 +1,61 @@
1
+ # Noscium
2
+
3
+ Institutional memory for enterprise AI assistants.
4
+
5
+ Unlike retrieval systems (RAG) or single-user memory libraries, Noscium is
6
+ designed for organizations: multiple users, teams, roles, and the governance
7
+ that comes with it.
8
+
9
+ > **Status: pre-alpha.** This repo currently holds the initial scaffold and
10
+ > roadmap. Follow along via the [Institutional Intelligence newsletter](#)
11
+ > for build updates.
12
+
13
+ ## Why Noscium
14
+
15
+ Most AI agent memory systems (Mem0, Zep, and others) optimize for *individual
16
+ recall* — one user's memories, retrieved well over time. Noscium's focus is
17
+ different: *organizational* memory — many users, teams, and roles, and the
18
+ access control, consolidation, and conflict resolution that come with that.
19
+
20
+ ## Planned Features
21
+
22
+ - **Multi-user access control** — memories scoped by role and team
23
+ - **Organizational consolidation** — individual facts become org-level knowledge
24
+ - **Conflict resolution** — when memories contradict, track and resolve
25
+ - **Compliance & retention** — configurable policies, audit trails, provenance
26
+ - **Importance judging** — LLM + user feedback decides what's worth remembering
27
+ - **Memory types** — episodic (what happened), semantic (what is true), procedural (how to do X)
28
+
29
+ ## Roadmap
30
+
31
+ | Phase | Focus | Status |
32
+ |---|---|---|
33
+ | Phase 1 | Core memory model, extraction, scoped retrieval | In progress |
34
+ | Phase 2 | Organizational consolidation, conflict resolution, memory graph | Planned |
35
+ | Phase 3 | Governance, compliance, retention policies, full audit trail | Planned |
36
+
37
+ ## Installation
38
+
39
+ ```bash
40
+ pip install noscium
41
+ ```
42
+
43
+ (Pre-alpha — API will change without notice until a 0.1.0 release.)
44
+
45
+ ## Quickstart
46
+
47
+ ```python
48
+ from noscium import Memory, MemoryType, VisibilityScope
49
+
50
+ m = Memory(
51
+ id="mem_001",
52
+ fact="Customer X prefers async standups",
53
+ type=MemoryType.SEMANTIC,
54
+ team_id="support-team",
55
+ visibility_scope=VisibilityScope.TEAM,
56
+ )
57
+ ```
58
+
59
+ ## License
60
+
61
+ MIT
@@ -0,0 +1,44 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "noscium"
7
+ version = "0.0.1"
8
+ description = "Institutional memory for enterprise AI assistants — governed, multi-user, organizational memory framework."
9
+ readme = "README.md"
10
+ license = { text = "MIT" }
11
+ requires-python = ">=3.9"
12
+ authors = [
13
+ { name = "Ragesh" }
14
+ ]
15
+ keywords = [
16
+ "ai",
17
+ "memory",
18
+ "agents",
19
+ "llm",
20
+ "enterprise-ai",
21
+ "institutional-memory",
22
+ "organizational-memory",
23
+ "rag",
24
+ ]
25
+ classifiers = [
26
+ "Development Status :: 2 - Pre-Alpha",
27
+ "Intended Audience :: Developers",
28
+ "License :: OSI Approved :: MIT License",
29
+ "Programming Language :: Python :: 3",
30
+ "Programming Language :: Python :: 3.9",
31
+ "Programming Language :: Python :: 3.10",
32
+ "Programming Language :: Python :: 3.11",
33
+ "Programming Language :: Python :: 3.12",
34
+ "Topic :: Software Development :: Libraries :: Python Modules",
35
+ "Topic :: Scientific/Engineering :: Artificial Intelligence",
36
+ ]
37
+
38
+ [project.urls]
39
+ Homepage = "https://github.com/YOUR_GITHUB_USERNAME/noscium"
40
+ Repository = "https://github.com/YOUR_GITHUB_USERNAME/noscium"
41
+ Issues = "https://github.com/YOUR_GITHUB_USERNAME/noscium/issues"
42
+
43
+ [tool.hatch.build.targets.wheel]
44
+ packages = ["src/noscium"]
@@ -0,0 +1,62 @@
1
+ """
2
+ Noscium — Institutional memory for enterprise AI assistants.
3
+
4
+ Unlike retrieval systems (RAG) or single-user memory libraries, Noscium is
5
+ designed for organizations: multiple users, teams, roles, and the governance
6
+ that comes with it.
7
+
8
+ This is an early pre-alpha scaffold. See the project README and roadmap for
9
+ the phased build plan (Phase 1: core memory + extraction + scoped retrieval;
10
+ Phase 2: consolidation + conflict resolution; Phase 3: governance + compliance).
11
+ """
12
+
13
+ from __future__ import annotations
14
+
15
+ from dataclasses import dataclass, field
16
+ from datetime import datetime
17
+ from enum import Enum
18
+ from typing import Optional
19
+
20
+
21
+ __version__ = "0.0.1"
22
+
23
+
24
+ class MemoryType(str, Enum):
25
+ """What kind of knowledge a memory represents."""
26
+ EPISODIC = "episodic" # what happened
27
+ SEMANTIC = "semantic" # what is true
28
+ PROCEDURAL = "procedural" # how to do something
29
+
30
+
31
+ class VisibilityScope(str, Enum):
32
+ """Who in the organization can see a memory."""
33
+ PERSONAL = "personal"
34
+ TEAM = "team"
35
+ ORG = "org"
36
+
37
+
38
+ @dataclass
39
+ class Memory:
40
+ """
41
+ Core memory record.
42
+
43
+ This is a Phase 1 scaffold: the shape of the data model, not yet a
44
+ working extraction/retrieval/consolidation pipeline. See the roadmap.
45
+ """
46
+ id: str
47
+ fact: str
48
+ type: MemoryType
49
+
50
+ user_id: Optional[str] = None
51
+ agent_id: Optional[str] = None
52
+ created_at: datetime = field(default_factory=datetime.utcnow)
53
+
54
+ team_id: Optional[str] = None
55
+ department_id: Optional[str] = None
56
+ visibility_scope: VisibilityScope = VisibilityScope.PERSONAL
57
+
58
+ importance_score: float = 0.0
59
+ invalidated: bool = False
60
+
61
+
62
+ __all__ = ["Memory", "MemoryType", "VisibilityScope", "__version__"]