aleth 0.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.
- aleth-0.0.0/.gitignore +327 -0
- aleth-0.0.0/PKG-INFO +29 -0
- aleth-0.0.0/README.md +14 -0
- aleth-0.0.0/pyproject.toml +26 -0
- aleth-0.0.0/src/aleth/__init__.py +8 -0
aleth-0.0.0/.gitignore
ADDED
|
@@ -0,0 +1,327 @@
|
|
|
1
|
+
# Enki - Cognitive Memory Infrastructure
|
|
2
|
+
# Security-conscious .gitignore
|
|
3
|
+
|
|
4
|
+
# =============================================================================
|
|
5
|
+
# SECURITY CRITICAL - Never commit these
|
|
6
|
+
# =============================================================================
|
|
7
|
+
|
|
8
|
+
# Environment files with secrets
|
|
9
|
+
.env
|
|
10
|
+
.env.local
|
|
11
|
+
.env.*.local
|
|
12
|
+
*.env
|
|
13
|
+
|
|
14
|
+
# MCP server config (contains credentials)
|
|
15
|
+
.mcp.json
|
|
16
|
+
|
|
17
|
+
# Research materials (local reference only, not tracked)
|
|
18
|
+
docs/research/
|
|
19
|
+
|
|
20
|
+
# API keys and credentials
|
|
21
|
+
**/secrets/
|
|
22
|
+
**/credentials/
|
|
23
|
+
*.pem
|
|
24
|
+
*.key
|
|
25
|
+
|
|
26
|
+
# Database files (may contain user data)
|
|
27
|
+
*.db
|
|
28
|
+
*.db-shm
|
|
29
|
+
*.db-wal
|
|
30
|
+
*.db.*_backup
|
|
31
|
+
*.sqlite
|
|
32
|
+
*.sqlite3
|
|
33
|
+
|
|
34
|
+
# Daemon log archives
|
|
35
|
+
daemon.log.*
|
|
36
|
+
|
|
37
|
+
# Temp files with PID suffixes
|
|
38
|
+
*.tmp.*
|
|
39
|
+
|
|
40
|
+
# BIOS configuration (runtime, may contain user preferences)
|
|
41
|
+
*_bios.json
|
|
42
|
+
|
|
43
|
+
# Daemon discovery file (runtime, contains auth token)
|
|
44
|
+
.enki_daemon.json
|
|
45
|
+
|
|
46
|
+
# =============================================================================
|
|
47
|
+
# Python
|
|
48
|
+
# =============================================================================
|
|
49
|
+
|
|
50
|
+
# Byte-compiled / optimized / DLL files
|
|
51
|
+
__pycache__/
|
|
52
|
+
*.py[cod]
|
|
53
|
+
*$py.class
|
|
54
|
+
|
|
55
|
+
# C extensions
|
|
56
|
+
*.so
|
|
57
|
+
|
|
58
|
+
# Distribution / packaging
|
|
59
|
+
.Python
|
|
60
|
+
build/
|
|
61
|
+
develop-eggs/
|
|
62
|
+
dist/
|
|
63
|
+
downloads/
|
|
64
|
+
eggs/
|
|
65
|
+
.eggs/
|
|
66
|
+
/lib/
|
|
67
|
+
/lib64/
|
|
68
|
+
parts/
|
|
69
|
+
sdist/
|
|
70
|
+
var/
|
|
71
|
+
wheels/
|
|
72
|
+
*.egg-info/
|
|
73
|
+
.installed.cfg
|
|
74
|
+
*.egg
|
|
75
|
+
|
|
76
|
+
# PyInstaller
|
|
77
|
+
*.manifest
|
|
78
|
+
*.spec
|
|
79
|
+
|
|
80
|
+
# Installer logs
|
|
81
|
+
pip-log.txt
|
|
82
|
+
pip-delete-this-directory.txt
|
|
83
|
+
|
|
84
|
+
# Unit test / coverage reports
|
|
85
|
+
htmlcov/
|
|
86
|
+
.tox/
|
|
87
|
+
.nox/
|
|
88
|
+
.coverage
|
|
89
|
+
.coverage.*
|
|
90
|
+
.cache
|
|
91
|
+
nosetests.xml
|
|
92
|
+
coverage.xml
|
|
93
|
+
*.cover
|
|
94
|
+
*.py,cover
|
|
95
|
+
.hypothesis/
|
|
96
|
+
.pytest_cache/
|
|
97
|
+
|
|
98
|
+
# Translations
|
|
99
|
+
*.mo
|
|
100
|
+
*.pot
|
|
101
|
+
|
|
102
|
+
# Jupyter Notebook
|
|
103
|
+
.ipynb_checkpoints
|
|
104
|
+
|
|
105
|
+
# pyenv
|
|
106
|
+
.python-version
|
|
107
|
+
|
|
108
|
+
# Virtual environments
|
|
109
|
+
venv/
|
|
110
|
+
ENV/
|
|
111
|
+
env/
|
|
112
|
+
.venv/
|
|
113
|
+
|
|
114
|
+
# mypy
|
|
115
|
+
.mypy_cache/
|
|
116
|
+
.dmypy.json
|
|
117
|
+
dmypy.json
|
|
118
|
+
|
|
119
|
+
# =============================================================================
|
|
120
|
+
# IDE / Editor
|
|
121
|
+
# =============================================================================
|
|
122
|
+
|
|
123
|
+
# VSCode
|
|
124
|
+
.vscode/
|
|
125
|
+
*.code-workspace
|
|
126
|
+
|
|
127
|
+
# PyCharm
|
|
128
|
+
.idea/
|
|
129
|
+
|
|
130
|
+
# Vim
|
|
131
|
+
*.swp
|
|
132
|
+
*.swo
|
|
133
|
+
*~
|
|
134
|
+
|
|
135
|
+
# =============================================================================
|
|
136
|
+
# OS
|
|
137
|
+
# =============================================================================
|
|
138
|
+
|
|
139
|
+
# macOS
|
|
140
|
+
.DS_Store
|
|
141
|
+
.AppleDouble
|
|
142
|
+
.LSOverride
|
|
143
|
+
|
|
144
|
+
# Windows
|
|
145
|
+
Thumbs.db
|
|
146
|
+
ehthumbs.db
|
|
147
|
+
Desktop.ini
|
|
148
|
+
nul
|
|
149
|
+
|
|
150
|
+
# =============================================================================
|
|
151
|
+
# Project Specific
|
|
152
|
+
# =============================================================================
|
|
153
|
+
|
|
154
|
+
# Runtime PID files (daemon lifecycle artifacts)
|
|
155
|
+
**/runtime/daemon.pid
|
|
156
|
+
|
|
157
|
+
# Runtime data directory (S536: centralized data_dir)
|
|
158
|
+
data/
|
|
159
|
+
|
|
160
|
+
# DRC-2 (ch.239, S1524): the MCP route-verdict registry is a record of
|
|
161
|
+
# JUDGEMENTS WITH REASONS -- "the local path is right for this tool, and
|
|
162
|
+
# here is why" -- not runtime state. S1525 found it untracked: 65 rulings
|
|
163
|
+
# lived on one box, a fresh clone would have re-derived every one of them
|
|
164
|
+
# (the exact toil the registry was built to end), and no verdict could be
|
|
165
|
+
# reviewed in a diff. Same shape as the MEK-1 / MPB-1 exceptions below --
|
|
166
|
+
# git cannot re-include a file whose parent directory is excluded, so the
|
|
167
|
+
# directory is un-ignored, its contents re-ignored, and only this one file
|
|
168
|
+
# let back through.
|
|
169
|
+
# ANCHORED to the repo root. Unanchored, ``data/`` matches a directory of
|
|
170
|
+
# that name at ANY depth, so an unanchored negation here re-included
|
|
171
|
+
# ui/ambient_display/data/, deploy/windows/tor/Data/ and every other nested
|
|
172
|
+
# data dir at once. Only the top-level runtime dir is meant.
|
|
173
|
+
!/data/
|
|
174
|
+
/data/*
|
|
175
|
+
!/data/mcp_route_verdicts.json
|
|
176
|
+
|
|
177
|
+
# TVP-1 (ch.230, S1538): the model price-curve table is a record of what
|
|
178
|
+
# a PROVIDER published -- windows, effective dates, the source URL -- not
|
|
179
|
+
# runtime state. It has to be tracked for three reasons: a fresh clone
|
|
180
|
+
# that lost it would silently price every peak hour at the valley rate;
|
|
181
|
+
# TVP-4 proposes edits to it and a proposal that cannot be diffed cannot
|
|
182
|
+
# be reviewed; and TVP-5's invoice reconciliation is only interpretable
|
|
183
|
+
# against the curve that was in force. Same re-include shape as the
|
|
184
|
+
# verdict registry above.
|
|
185
|
+
!/data/pricing/
|
|
186
|
+
/data/pricing/*
|
|
187
|
+
!/data/pricing/model_price_curves.json
|
|
188
|
+
|
|
189
|
+
# MEK-1 (ch.144, S1210): static knowledge catalogs under hands/marduk/data/
|
|
190
|
+
# are source-of-truth, not runtime state. Re-include only this subtree
|
|
191
|
+
# (the parent ``data/`` directory is still ignored; the un-ignore rules
|
|
192
|
+
# below let git walk into the empirical_knowledge subdirectory only).
|
|
193
|
+
!hands/marduk/data/
|
|
194
|
+
hands/marduk/data/*
|
|
195
|
+
!hands/marduk/data/empirical_knowledge/
|
|
196
|
+
!hands/marduk/data/empirical_knowledge/**
|
|
197
|
+
|
|
198
|
+
# MPB-1 (ch.171, S1410): the benchmark corpus is a versioned source
|
|
199
|
+
# artifact (packaged with enki.benchmarks.mpb), not runtime state.
|
|
200
|
+
!src/enki/benchmarks/mpb/data/
|
|
201
|
+
!src/enki/benchmarks/mpb/data/**
|
|
202
|
+
|
|
203
|
+
# Temporary files
|
|
204
|
+
TEMP/
|
|
205
|
+
tmp/
|
|
206
|
+
*.tmp
|
|
207
|
+
*.temp
|
|
208
|
+
|
|
209
|
+
# Logs
|
|
210
|
+
*.log
|
|
211
|
+
logs/
|
|
212
|
+
|
|
213
|
+
# Embeddings cache (can be large)
|
|
214
|
+
.embeddings_cache/
|
|
215
|
+
|
|
216
|
+
# Memory exports (may contain sensitive data)
|
|
217
|
+
exports/
|
|
218
|
+
*.memory.json
|
|
219
|
+
|
|
220
|
+
# Compiled binary artifacts (benchmarks, FFI builds)
|
|
221
|
+
*.obj
|
|
222
|
+
*.o
|
|
223
|
+
*.so.*
|
|
224
|
+
|
|
225
|
+
# Kur runtime artifacts (S992)
|
|
226
|
+
# Code-mutation backup files + sandbox working copies are transient --
|
|
227
|
+
# never commit them; they exist for rollback within a single daemon run.
|
|
228
|
+
*.kur-backup
|
|
229
|
+
data/kur/sandboxes/
|
|
230
|
+
data/kur/code_mutation_rounds/
|
|
231
|
+
|
|
232
|
+
# Code integrity manifest (build artifact, SEC-17)
|
|
233
|
+
enki_integrity.json
|
|
234
|
+
|
|
235
|
+
# Supply chain lockfile and SBOM (build artifacts, SEC-18)
|
|
236
|
+
enki_supply_chain.lock.json
|
|
237
|
+
enki_sbom.cdx.json
|
|
238
|
+
|
|
239
|
+
# Session dialogs (private collaboration history)
|
|
240
|
+
sessions_dialogs/
|
|
241
|
+
|
|
242
|
+
# Personal notes (scratch/copy-paste area - Claude should IGNORE)
|
|
243
|
+
docs/tips.md
|
|
244
|
+
|
|
245
|
+
# Private architecture/operations docs (local-only; never pushed)
|
|
246
|
+
# Contains operational details for infrastructure that must not leak:
|
|
247
|
+
# VPS hostnames, IPs, sudo usernames, network topology runbooks,
|
|
248
|
+
# Polymarket trading account credentials, privacy-funding-chain
|
|
249
|
+
# runbooks, etc. Per S1147 Option B decision: live secrets (SSH
|
|
250
|
+
# passphrases, proxyuser passwords, FlokiNET account credentials)
|
|
251
|
+
# are inlined directly in these docs rather than referenced via
|
|
252
|
+
# placeholders -- threat model accepts same-disk blast radius for
|
|
253
|
+
# the convenience of a single source of truth.
|
|
254
|
+
docs/private/
|
|
255
|
+
|
|
256
|
+
# Historical/archived documents (not for GitHub)
|
|
257
|
+
**/OLD/
|
|
258
|
+
|
|
259
|
+
# (docs/research/ covered by blanket rule above)
|
|
260
|
+
|
|
261
|
+
# Claude Code local settings.
|
|
262
|
+
# S1499: skills are NOT local settings -- they are shared operating
|
|
263
|
+
# procedure (table geometry, release checklist, persona panel) that any
|
|
264
|
+
# session invokes and that took real work to derive. Under the blanket
|
|
265
|
+
# ignore they lived in exactly one place, on one disk, with no backup:
|
|
266
|
+
# the S1482 "unique doc in a backup-denied folder" class. Settings and
|
|
267
|
+
# settings.local stay ignored -- those really are per-machine.
|
|
268
|
+
.claude/*
|
|
269
|
+
!.claude/skills/
|
|
270
|
+
|
|
271
|
+
# Serena (formerly used dev tool, retired)
|
|
272
|
+
.serena/
|
|
273
|
+
|
|
274
|
+
# Business-ideas scratch area (Claude + Luis private discussion space).
|
|
275
|
+
# NOT part of Enki's repo -- kept local only (like a shared notebook).
|
|
276
|
+
docs/business-ideas/
|
|
277
|
+
|
|
278
|
+
# Enki model weights at repo root (LLM checkpoints, e.g. Kronos).
|
|
279
|
+
# Anchored to repo root so Python packages named `models/` inside Hands/
|
|
280
|
+
# Organs (e.g. hands/marduk/src/marduk/models/) stay tracked.
|
|
281
|
+
/models/
|
|
282
|
+
|
|
283
|
+
# Anonymity VPN gateway secrets (ROADMAP ch.170 IDP) -- WireGuard client
|
|
284
|
+
# private keys must NEVER be committed. The template IS tracked.
|
|
285
|
+
deploy/anon/wg0.conf
|
|
286
|
+
deploy/anon/*.key
|
|
287
|
+
deploy/anon/tinyproxy.conf
|
|
288
|
+
deploy/anon/socks.env
|
|
289
|
+
# Ghost-tier Tor gateway (ROADMAP ch.173 IPG-2): kurt SOCKS5 credential
|
|
290
|
+
# (env_file for the tor-gateway container) + the staged GhostRelay copy the
|
|
291
|
+
# build consumes -- both generated, never committed.
|
|
292
|
+
deploy/anon/kurt.env
|
|
293
|
+
deploy/anon/tor-gateway/_ghost_relay.py
|
|
294
|
+
|
|
295
|
+
# S1421 MPB-2 OpenClaw plugin build artifacts (package-lock.json IS
|
|
296
|
+
# committed for reproducible builds; dist/ already matches the global
|
|
297
|
+
# dist/ rule above -- listed here for clarity)
|
|
298
|
+
clients/enki-memory-openclaw/node_modules/
|
|
299
|
+
clients/enki-memory-openclaw/dist/
|
|
300
|
+
|
|
301
|
+
# S1421 SDK testbed: never commit key material from the SDK ops folder
|
|
302
|
+
docs/reference/SDK/*
|
|
303
|
+
!docs/reference/SDK/*.md
|
|
304
|
+
!docs/reference/SDK/*.sh
|
|
305
|
+
|
|
306
|
+
# S1434 (i-0090): tests/benchmarks/output/ is a SCRATCH OUTPUT dir -- every
|
|
307
|
+
# benchmark writes here (mq3_baseline_TS, rac1_baseline_TS, consensus_metrics,
|
|
308
|
+
# parameter_sweep). Committing generated files INTO a write-target directory is
|
|
309
|
+
# what produced the "baseline that mutates with no writer" bug: a committed
|
|
310
|
+
# reference and machine-written scratch shared one folder, so any run (or a
|
|
311
|
+
# parallel session running an ad-hoc script -- i-0092) silently clobbered the
|
|
312
|
+
# reference. Inputs never share a directory with outputs. Nothing asserts on
|
|
313
|
+
# these; _load_baseline() already degrades gracefully via `if exists()`.
|
|
314
|
+
tests/benchmarks/output/
|
|
315
|
+
|
|
316
|
+
# S1502: pytest temp root relocated off the poisoned %TEMP% reparse point
|
|
317
|
+
data/runtime/pytest-temp/
|
|
318
|
+
|
|
319
|
+
# S1539: online-presence.md links real identity to persona handles -- never commit it.
|
|
320
|
+
docs/online-presence.md
|
|
321
|
+
|
|
322
|
+
# S1539 option A (Luis): the pseudonymous holder identity NEVER enters this repo's git
|
|
323
|
+
# history, which is authored throughout by Luis's real name. Templates stay tracked with
|
|
324
|
+
# <HOLDER> placeholders; the real values live only here, un-tracked, and in 1Password.
|
|
325
|
+
# Reversing this requires an explicit joint decision, never an implicit one.
|
|
326
|
+
reservations/.holder.env
|
|
327
|
+
reservations/.build/
|
aleth-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: aleth
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Reserved name placeholder -- Aleth, a memory engine. Real release coming; this version does nothing.
|
|
5
|
+
Author-email: solusfaber <solusfaber@proton.me>
|
|
6
|
+
License: MIT
|
|
7
|
+
Keywords: memory,placeholder,reserved
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
13
|
+
Requires-Python: >=3.11
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# aleth
|
|
17
|
+
|
|
18
|
+
**Name reservation placeholder.** This `0.0.0` release contains no
|
|
19
|
+
functionality. It exists so that the `aleth` name on PyPI is held by the
|
|
20
|
+
authors of the project that will be published under it: Aleth, a memory
|
|
21
|
+
engine for AI systems.
|
|
22
|
+
|
|
23
|
+
Installing this version gives you an empty module. A real `0.1.0` release
|
|
24
|
+
will replace it. If you were looking for something else named "aleth",
|
|
25
|
+
you probably want the archived Ethereum C++ client
|
|
26
|
+
(`github.com/ethereum/aleth`), which is unrelated to this project and
|
|
27
|
+
does not publish to PyPI.
|
|
28
|
+
|
|
29
|
+
License: MIT.
|
aleth-0.0.0/README.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# aleth
|
|
2
|
+
|
|
3
|
+
**Name reservation placeholder.** This `0.0.0` release contains no
|
|
4
|
+
functionality. It exists so that the `aleth` name on PyPI is held by the
|
|
5
|
+
authors of the project that will be published under it: Aleth, a memory
|
|
6
|
+
engine for AI systems.
|
|
7
|
+
|
|
8
|
+
Installing this version gives you an empty module. A real `0.1.0` release
|
|
9
|
+
will replace it. If you were looking for something else named "aleth",
|
|
10
|
+
you probably want the archived Ethereum C++ client
|
|
11
|
+
(`github.com/ethereum/aleth`), which is unrelated to this project and
|
|
12
|
+
does not publish to PyPI.
|
|
13
|
+
|
|
14
|
+
License: MIT.
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "aleth"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "Reserved name placeholder -- Aleth, a memory engine. Real release coming; this version does nothing."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.11"
|
|
11
|
+
license = { text = "MIT" }
|
|
12
|
+
authors = [{ name = "solusfaber", email = "solusfaber@proton.me" }]
|
|
13
|
+
keywords = ["memory", "placeholder", "reserved"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"License :: OSI Approved :: MIT License",
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
"Programming Language :: Python :: 3.11",
|
|
20
|
+
]
|
|
21
|
+
|
|
22
|
+
[tool.hatch.build.targets.wheel]
|
|
23
|
+
packages = ["src/aleth"]
|
|
24
|
+
|
|
25
|
+
[tool.hatch.build.targets.sdist]
|
|
26
|
+
include = ["src/aleth", "README.md"]
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"""Name reservation placeholder for the `aleth` PyPI project.
|
|
2
|
+
|
|
3
|
+
This 0.0.0 release intentionally contains no functionality. It holds the
|
|
4
|
+
name for Aleth, a memory engine, whose first real release will be 0.1.0.
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
__version__ = "0.0.0"
|
|
8
|
+
__all__ = ["__version__"]
|