nmem-cli 0.9.8__tar.gz → 0.9.11__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.
- {nmem_cli-0.9.8 → nmem_cli-0.9.11}/PKG-INFO +1 -1
- {nmem_cli-0.9.8 → nmem_cli-0.9.11}/pyproject.toml +1 -1
- {nmem_cli-0.9.8 → nmem_cli-0.9.11}/src/nmem_cli/__init__.py +1 -1
- {nmem_cli-0.9.8 → nmem_cli-0.9.11}/src/nmem_cli/session_import.py +8 -2
- {nmem_cli-0.9.8 → nmem_cli-0.9.11}/.gitignore +0 -0
- {nmem_cli-0.9.8 → nmem_cli-0.9.11}/README.md +0 -0
- {nmem_cli-0.9.8 → nmem_cli-0.9.11}/src/nmem_cli/agent_profiles.py +0 -0
- {nmem_cli-0.9.8 → nmem_cli-0.9.11}/src/nmem_cli/claude_paths.py +0 -0
- {nmem_cli-0.9.8 → nmem_cli-0.9.11}/src/nmem_cli/cli.py +0 -0
- {nmem_cli-0.9.8 → nmem_cli-0.9.11}/src/nmem_cli/data_transfer_paths.py +0 -0
- {nmem_cli-0.9.8 → nmem_cli-0.9.11}/src/nmem_cli/guidance_rules.py +0 -0
- {nmem_cli-0.9.8 → nmem_cli-0.9.11}/src/nmem_cli/kfs_cli.py +0 -0
- {nmem_cli-0.9.8 → nmem_cli-0.9.11}/src/nmem_cli/license_payload.py +0 -0
- {nmem_cli-0.9.8 → nmem_cli-0.9.11}/src/nmem_cli/memories_reclassify.py +0 -0
- {nmem_cli-0.9.8 → nmem_cli-0.9.11}/src/nmem_cli/memory_relations_cli.py +0 -0
- {nmem_cli-0.9.8 → nmem_cli-0.9.11}/src/nmem_cli/py.typed +0 -0
- {nmem_cli-0.9.8 → nmem_cli-0.9.11}/src/nmem_cli/tui/__init__.py +0 -0
- {nmem_cli-0.9.8 → nmem_cli-0.9.11}/src/nmem_cli/tui/__main__.py +0 -0
- {nmem_cli-0.9.8 → nmem_cli-0.9.11}/src/nmem_cli/tui/api_client.py +0 -0
- {nmem_cli-0.9.8 → nmem_cli-0.9.11}/src/nmem_cli/tui/app.py +0 -0
- {nmem_cli-0.9.8 → nmem_cli-0.9.11}/src/nmem_cli/tui/screens/__init__.py +0 -0
- {nmem_cli-0.9.8 → nmem_cli-0.9.11}/src/nmem_cli/tui/screens/dashboard.py +0 -0
- {nmem_cli-0.9.8 → nmem_cli-0.9.11}/src/nmem_cli/tui/screens/graph.py +0 -0
- {nmem_cli-0.9.8 → nmem_cli-0.9.11}/src/nmem_cli/tui/screens/help.py +0 -0
- {nmem_cli-0.9.8 → nmem_cli-0.9.11}/src/nmem_cli/tui/screens/memories.py +0 -0
- {nmem_cli-0.9.8 → nmem_cli-0.9.11}/src/nmem_cli/tui/screens/memory_detail.py +0 -0
- {nmem_cli-0.9.8 → nmem_cli-0.9.11}/src/nmem_cli/tui/screens/settings.py +0 -0
- {nmem_cli-0.9.8 → nmem_cli-0.9.11}/src/nmem_cli/tui/screens/thread_detail.py +0 -0
- {nmem_cli-0.9.8 → nmem_cli-0.9.11}/src/nmem_cli/tui/screens/threads.py +0 -0
- {nmem_cli-0.9.8 → nmem_cli-0.9.11}/src/nmem_cli/tui/widgets/__init__.py +0 -0
|
@@ -2541,7 +2541,11 @@ def _decode_project_path_enhanced(encoded: str) -> Optional[str]:
|
|
|
2541
2541
|
|
|
2542
2542
|
|
|
2543
2543
|
def _decode_project_path_windows(encoded: str) -> Optional[str]:
|
|
2544
|
-
drive_match = re.match(r"^([A-Za-z])
|
|
2544
|
+
drive_match = re.match(r"^([A-Za-z])--(.*)$", encoded)
|
|
2545
|
+
if not drive_match:
|
|
2546
|
+
# Compatibility with older nmem-created expectations before we matched
|
|
2547
|
+
# Claude Code's drive-colon encoding on Windows.
|
|
2548
|
+
drive_match = re.match(r"^([A-Za-z])-(.*)$", encoded)
|
|
2545
2549
|
if not drive_match:
|
|
2546
2550
|
return None
|
|
2547
2551
|
|
|
@@ -2576,7 +2580,9 @@ def _encode_claude_project_path_variant(
|
|
|
2576
2580
|
for segment in re.split(r"[\\/]+", rest)
|
|
2577
2581
|
if segment
|
|
2578
2582
|
]
|
|
2579
|
-
|
|
2583
|
+
if not segments:
|
|
2584
|
+
return f"{drive_letter}--"
|
|
2585
|
+
return f"{drive_letter}--{'-'.join(segments)}"
|
|
2580
2586
|
|
|
2581
2587
|
segments = [
|
|
2582
2588
|
_encode_claude_path_segment(segment, dot_mode=dot_mode)
|
|
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
|