cli-mem 0.3.3__tar.gz → 0.3.4__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.
Files changed (32) hide show
  1. {cli_mem-0.3.3 → cli_mem-0.3.4}/PKG-INFO +1 -1
  2. {cli_mem-0.3.3 → cli_mem-0.3.4}/pyproject.toml +1 -1
  3. {cli_mem-0.3.3 → cli_mem-0.3.4}/src/mem/__init__.py +1 -1
  4. {cli_mem-0.3.3 → cli_mem-0.3.4}/src/mem/cli.py +1 -1
  5. {cli_mem-0.3.3 → cli_mem-0.3.4}/.github/workflows/ci.yml +0 -0
  6. {cli_mem-0.3.3 → cli_mem-0.3.4}/.github/workflows/release.yml +0 -0
  7. {cli_mem-0.3.3 → cli_mem-0.3.4}/.gitignore +0 -0
  8. {cli_mem-0.3.3 → cli_mem-0.3.4}/ARCHITECTURE.md +0 -0
  9. {cli_mem-0.3.3 → cli_mem-0.3.4}/LICENSE +0 -0
  10. {cli_mem-0.3.3 → cli_mem-0.3.4}/PHILOSOPHY.md +0 -0
  11. {cli_mem-0.3.3 → cli_mem-0.3.4}/README.md +0 -0
  12. {cli_mem-0.3.3 → cli_mem-0.3.4}/assets/.gitkeep +0 -0
  13. {cli_mem-0.3.3 → cli_mem-0.3.4}/docs/decisions/001-jsonl-over-sqlite.md +0 -0
  14. {cli_mem-0.3.3 → cli_mem-0.3.4}/docs/decisions/002-apple-fm-sdk-for-patterns.md +0 -0
  15. {cli_mem-0.3.3 → cli_mem-0.3.4}/docs/decisions/003-no-daemon.md +0 -0
  16. {cli_mem-0.3.3 → cli_mem-0.3.4}/docs/decisions/004-per-repo-jsonl.md +0 -0
  17. {cli_mem-0.3.3 → cli_mem-0.3.4}/hooks/mem.zsh +0 -0
  18. {cli_mem-0.3.3 → cli_mem-0.3.4}/install.sh +0 -0
  19. {cli_mem-0.3.3 → cli_mem-0.3.4}/src/mem/_generable.py +0 -0
  20. {cli_mem-0.3.3 → cli_mem-0.3.4}/src/mem/capture.py +0 -0
  21. {cli_mem-0.3.3 → cli_mem-0.3.4}/src/mem/groups.py +0 -0
  22. {cli_mem-0.3.3 → cli_mem-0.3.4}/src/mem/models.py +0 -0
  23. {cli_mem-0.3.3 → cli_mem-0.3.4}/src/mem/patterns.py +0 -0
  24. {cli_mem-0.3.3 → cli_mem-0.3.4}/src/mem/search.py +0 -0
  25. {cli_mem-0.3.3 → cli_mem-0.3.4}/src/mem/storage.py +0 -0
  26. {cli_mem-0.3.3 → cli_mem-0.3.4}/src/mem/variables.py +0 -0
  27. {cli_mem-0.3.3 → cli_mem-0.3.4}/tests/conftest.py +0 -0
  28. {cli_mem-0.3.3 → cli_mem-0.3.4}/tests/test_capture.py +0 -0
  29. {cli_mem-0.3.3 → cli_mem-0.3.4}/tests/test_groups.py +0 -0
  30. {cli_mem-0.3.3 → cli_mem-0.3.4}/tests/test_patterns.py +0 -0
  31. {cli_mem-0.3.3 → cli_mem-0.3.4}/tests/test_search.py +0 -0
  32. {cli_mem-0.3.3 → cli_mem-0.3.4}/tests/test_storage.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cli-mem
3
- Version: 0.3.3
3
+ Version: 0.3.4
4
4
  Summary: Privacy-first CLI that turns shell history into searchable memory
5
5
  Project-URL: GitHub, https://github.com/matinsaurralde/mem
6
6
  Author: Matias Insaurralde
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "cli-mem"
7
- version = "0.3.3"
7
+ version = "0.3.4"
8
8
  description = "Privacy-first CLI that turns shell history into searchable memory"
9
9
  license = "MIT"
10
10
  readme = "README.md"
@@ -1,3 +1,3 @@
1
1
  """mem — your shell history, understood."""
2
2
 
3
- __version__ = "0.3.3"
3
+ __version__ = "0.3.4"
@@ -434,7 +434,7 @@ def save(
434
434
  # Prompt for variable name with validation loop
435
435
  while True:
436
436
  var_name = click.prompt(
437
- " Variable name",
437
+ " Variable name (Enter to accept, or type to rename)",
438
438
  default=suggested_name,
439
439
  err=True,
440
440
  )
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