mneme-code 3.1.0__tar.gz → 3.5.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.
- {mneme_code-3.1.0 → mneme_code-3.5.0}/.gitignore +7 -0
- {mneme_code-3.1.0 → mneme_code-3.5.0}/PKG-INFO +1 -1
- {mneme_code-3.1.0 → mneme_code-3.5.0}/pyproject.toml +1 -1
- {mneme_code-3.1.0 → mneme_code-3.5.0}/README.md +0 -0
- {mneme_code-3.1.0 → mneme_code-3.5.0}/mneme_code/__init__.py +0 -0
- {mneme_code-3.1.0 → mneme_code-3.5.0}/mneme_code/agents.py +0 -0
- {mneme_code-3.1.0 → mneme_code-3.5.0}/mneme_code/cli.py +0 -0
- {mneme_code-3.1.0 → mneme_code-3.5.0}/mneme_code/failure.py +0 -0
- {mneme_code-3.1.0 → mneme_code-3.5.0}/mneme_code/py.typed +0 -0
- {mneme_code-3.1.0 → mneme_code-3.5.0}/mneme_code/resolve.py +0 -0
- {mneme_code-3.1.0 → mneme_code-3.5.0}/mneme_code/stacktrace.py +0 -0
- {mneme_code-3.1.0 → mneme_code-3.5.0}/mneme_code/testrun.py +0 -0
- {mneme_code-3.1.0 → mneme_code-3.5.0}/mneme_code/trajectory.py +0 -0
- {mneme_code-3.1.0 → mneme_code-3.5.0}/tests/__init__.py +0 -0
- {mneme_code-3.1.0 → mneme_code-3.5.0}/tests/test_agents.py +0 -0
- {mneme_code-3.1.0 → mneme_code-3.5.0}/tests/test_branch_aware.py +0 -0
- {mneme_code-3.1.0 → mneme_code-3.5.0}/tests/test_mneme_code.py +0 -0
- {mneme_code-3.1.0 → mneme_code-3.5.0}/tests/test_testrun.py +0 -0
- {mneme_code-3.1.0 → mneme_code-3.5.0}/tests/test_trajectory.py +0 -0
|
@@ -86,3 +86,10 @@ secrets/
|
|
|
86
86
|
# Build artifacts
|
|
87
87
|
*.tgz
|
|
88
88
|
*.whl
|
|
89
|
+
|
|
90
|
+
# Codex review-loop internal state (local only; do not ship to public remote)
|
|
91
|
+
.codex-review-loop/
|
|
92
|
+
|
|
93
|
+
# Private content — never commit (dual-remote leak guard)
|
|
94
|
+
docs/_internal/
|
|
95
|
+
.github/sanitization-patterns.txt
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mneme-code
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.5.0
|
|
4
4
|
Summary: Deterministic Python code-failure memory layer for mneme: redact-before-store, provenance-labelled FailureMemory, vault-ready markdown output.
|
|
5
5
|
Author: Onour Impram
|
|
6
6
|
License: Apache-2.0
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "mneme-code"
|
|
7
|
-
version = "3.
|
|
7
|
+
version = "3.5.0"
|
|
8
8
|
description = "Deterministic Python code-failure memory layer for mneme: redact-before-store, provenance-labelled FailureMemory, vault-ready markdown output."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.11"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|