universal-memory 0.2.0__tar.gz → 0.2.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.
- {universal_memory-0.2.0 → universal_memory-0.2.1}/PKG-INFO +3 -3
- {universal_memory-0.2.0 → universal_memory-0.2.1}/README.md +2 -2
- {universal_memory-0.2.0 → universal_memory-0.2.1}/pyproject.toml +4 -1
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/__init__.py +1 -1
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/__main__.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/application/__init__.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/application/diagnostics/__init__.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/application/diagnostics/doctor_use_case.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/application/host/__init__.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/application/host/drift_detector.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/application/host/setup_host_use_case.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/application/host/sync_instructions_use_case.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/application/memory/__init__.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/application/memory/assemble_context_summary_use_case.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/application/memory/context_hygiene_use_case.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/application/memory/get_memory_status_use_case.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/application/memory/list_facts_use_case.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/application/memory/purge_fact_use_case.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/application/memory/remember_fact_use_case.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/application/memory/search_facts_use_case.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/application/onboarding/__init__.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/application/onboarding/setup_project.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/application/security/__init__.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/application/security/list_audit_log_use_case.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/application/security/list_snapshots_use_case.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/application/security/rollback_use_case.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/application/security/safe_write_use_case.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/application/skills/__init__.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/application/skills/create_skill.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/application/skills/generate_skill.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/application/skills/import_skill.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/application/skills/list_skills.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/application/skills/native_skill_sync.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/application/skills/promote_skill.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/application/skills/propose_skill.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/application/skills/recommend_skills.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/application/skills/sync_skills.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/application/skills/track_latent_skill.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/application/skills/update_skill.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/application/update/__init__.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/application/update/update_use_cases.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/bootstrap/__init__.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/bootstrap/cli.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/bootstrap/mcp.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/domain/__init__.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/domain/entities/__init__.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/domain/entities/agent_skill.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/domain/entities/audit_event.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/domain/entities/base.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/domain/entities/context_summary.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/domain/entities/fact.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/domain/entities/host.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/domain/entities/instruction_target.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/domain/entities/latent_skill.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/domain/entities/rule.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/domain/entities/runtime.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/domain/entities/safe_write_result.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/domain/entities/snapshot.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/domain/exceptions.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/domain/ports/__init__.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/domain/ports/agent_skill_repository.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/domain/ports/audit_log_repository.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/domain/ports/config_validation_port.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/domain/ports/context_summary_repository.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/domain/ports/fact_repository.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/domain/ports/latent_skill_repository.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/domain/ports/project_layout_port.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/domain/ports/rule_repository.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/domain/ports/secret_scanner_port.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/domain/ports/snapshot_repository.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/domain/project_layout.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/infrastructure/__init__.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/infrastructure/config/__init__.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/infrastructure/config/adapters.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/infrastructure/config/project_layout.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/infrastructure/config/toml_loader.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/infrastructure/security/__init__.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/infrastructure/security/entropy_secret_scanner.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/infrastructure/security/local_audit_log_repository.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/infrastructure/security/local_snapshot_repository.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/infrastructure/storage/__init__.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/infrastructure/storage/local_agent_skill_repository.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/infrastructure/storage/local_context_summary_repository.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/infrastructure/storage/local_fact_repository.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/infrastructure/storage/local_latent_skill_repository.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/infrastructure/storage/local_rule_repository.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/interfaces/__init__.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/interfaces/cli/__init__.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/interfaces/cli/init_command.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/interfaces/cli/message_catalog.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/interfaces/errors.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/interfaces/mcp/__init__.py +0 -0
- {universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/interfaces/mcp/server.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: universal-memory
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: Vendor-agnostic cognitive persistence layer for AI agents.
|
|
5
5
|
Keywords: agent-memory,ai,ai-agents,agent-skills,claude-code,codex,context-engineering,developer-tools,llm,mcp,memory
|
|
6
6
|
Author: Yan L. Amorelli
|
|
@@ -27,7 +27,7 @@ Project-URL: Repository, https://github.com/YanAmorelli/universal-memory
|
|
|
27
27
|
Description-Content-Type: text/markdown
|
|
28
28
|
|
|
29
29
|
<p align="center">
|
|
30
|
-
<img src="docs/assets/umem-logo-lockup.svg" alt="UMem logo" width="720">
|
|
30
|
+
<img src="https://raw.githubusercontent.com/YanAmorelli/universal-memory/main/docs/assets/umem-logo-lockup.svg" alt="UMem logo" width="720">
|
|
31
31
|
</p>
|
|
32
32
|
|
|
33
33
|
# Universal Memory (UMem)
|
|
@@ -42,7 +42,7 @@ A vendor-agnostic cognitive persistence layer for AI agents. Eliminate the "repe
|
|
|
42
42
|
|
|
43
43
|
To see the core idea visually, check out the [Excalidraw design](https://excalidraw.com/#json=j3XjQIWMYEnkIzHpypuBb,rNJaVOECDGZ3WSuEYcCDjQ) or the proposal structure:
|
|
44
44
|
|
|
45
|
-

|
|
45
|
+

|
|
46
46
|
|
|
47
47
|
### Diagram Breakdown
|
|
48
48
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<img src="docs/assets/umem-logo-lockup.svg" alt="UMem logo" width="720">
|
|
2
|
+
<img src="https://raw.githubusercontent.com/YanAmorelli/universal-memory/main/docs/assets/umem-logo-lockup.svg" alt="UMem logo" width="720">
|
|
3
3
|
</p>
|
|
4
4
|
|
|
5
5
|
# Universal Memory (UMem)
|
|
@@ -14,7 +14,7 @@ A vendor-agnostic cognitive persistence layer for AI agents. Eliminate the "repe
|
|
|
14
14
|
|
|
15
15
|
To see the core idea visually, check out the [Excalidraw design](https://excalidraw.com/#json=j3XjQIWMYEnkIzHpypuBb,rNJaVOECDGZ3WSuEYcCDjQ) or the proposal structure:
|
|
16
16
|
|
|
17
|
-

|
|
17
|
+

|
|
18
18
|
|
|
19
19
|
### Diagram Breakdown
|
|
20
20
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "universal-memory"
|
|
3
|
-
version = "0.2.
|
|
3
|
+
version = "0.2.1"
|
|
4
4
|
description = "Vendor-agnostic cognitive persistence layer for AI agents."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
license = { text = "Apache-2.0" }
|
|
@@ -95,3 +95,6 @@ pythonVersion = "3.12"
|
|
|
95
95
|
typeCheckingMode = "standard"
|
|
96
96
|
venvPath = "."
|
|
97
97
|
venv = ".venv"
|
|
98
|
+
|
|
99
|
+
[tool.pytest.ini_options]
|
|
100
|
+
testpaths = ["tests"]
|
|
File without changes
|
{universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/application/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/application/host/__init__.py
RENAMED
|
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
|
|
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
|
|
File without changes
|
{universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/bootstrap/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/domain/entities/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/domain/entities/base.py
RENAMED
|
File without changes
|
|
File without changes
|
{universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/domain/entities/fact.py
RENAMED
|
File without changes
|
{universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/domain/entities/host.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/domain/entities/rule.py
RENAMED
|
File without changes
|
{universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/domain/entities/runtime.py
RENAMED
|
File without changes
|
|
File without changes
|
{universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/domain/entities/snapshot.py
RENAMED
|
File without changes
|
|
File without changes
|
{universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/domain/ports/__init__.py
RENAMED
|
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
|
{universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/domain/project_layout.py
RENAMED
|
File without changes
|
{universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/infrastructure/__init__.py
RENAMED
|
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
|
{universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/interfaces/__init__.py
RENAMED
|
File without changes
|
{universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/interfaces/cli/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/interfaces/mcp/__init__.py
RENAMED
|
File without changes
|
{universal_memory-0.2.0 → universal_memory-0.2.1}/src/universal_memory/interfaces/mcp/server.py
RENAMED
|
File without changes
|