minni 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.
- minni-0.0.1/PKG-INFO +27 -0
- minni-0.0.1/README.md +14 -0
- minni-0.0.1/pyproject.toml +20 -0
- minni-0.0.1/src/minni/__init__.py +1 -0
minni-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: minni
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Minni — local-first memory and governance layer for AI agents. Placeholder release; the installable package arrives in v0.2. Install from source: https://github.com/infektyd/Minni
|
|
5
|
+
Project-URL: Homepage, https://github.com/infektyd/Minni
|
|
6
|
+
Project-URL: Repository, https://github.com/infektyd/Minni
|
|
7
|
+
Author: Hans Axelsson (infektyd)
|
|
8
|
+
License-Expression: MIT
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Requires-Python: >=3.10
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# Minni
|
|
15
|
+
|
|
16
|
+
**Local-first memory and governance layer for AI agents.**
|
|
17
|
+
|
|
18
|
+
This PyPI name is reserved for Minni. The pip-installable package ships with
|
|
19
|
+
v0.2 (pending an internal package-layout change). Until then, install from
|
|
20
|
+
source — it takes one `make setup`:
|
|
21
|
+
|
|
22
|
+
https://github.com/infektyd/Minni
|
|
23
|
+
|
|
24
|
+
- Every agent runtime (Claude Code, Codex, Gemini, Grok, any MCP client) talks
|
|
25
|
+
to one local daemon; durable memory writes are gated behind human approval
|
|
26
|
+
by default.
|
|
27
|
+
- Everything stays on your machine: no telemetry, no remote endpoints.
|
minni-0.0.1/README.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# Minni
|
|
2
|
+
|
|
3
|
+
**Local-first memory and governance layer for AI agents.**
|
|
4
|
+
|
|
5
|
+
This PyPI name is reserved for Minni. The pip-installable package ships with
|
|
6
|
+
v0.2 (pending an internal package-layout change). Until then, install from
|
|
7
|
+
source — it takes one `make setup`:
|
|
8
|
+
|
|
9
|
+
https://github.com/infektyd/Minni
|
|
10
|
+
|
|
11
|
+
- Every agent runtime (Claude Code, Codex, Gemini, Grok, any MCP client) talks
|
|
12
|
+
to one local daemon; durable memory writes are gated behind human approval
|
|
13
|
+
by default.
|
|
14
|
+
- Everything stays on your machine: no telemetry, no remote endpoints.
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "minni"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Minni — local-first memory and governance layer for AI agents. Placeholder release; the installable package arrives in v0.2. Install from source: https://github.com/infektyd/Minni"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "MIT"
|
|
11
|
+
authors = [{ name = "Hans Axelsson (infektyd)" }]
|
|
12
|
+
requires-python = ">=3.10"
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 1 - Planning",
|
|
15
|
+
"License :: OSI Approved :: MIT License",
|
|
16
|
+
]
|
|
17
|
+
|
|
18
|
+
[project.urls]
|
|
19
|
+
Homepage = "https://github.com/infektyd/Minni"
|
|
20
|
+
Repository = "https://github.com/infektyd/Minni"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.0.1"
|