nmem-cli 0.10.0__py3-none-win_amd64.whl
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.
|
Binary file
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: nmem-cli
|
|
3
|
+
Version: 0.10.0
|
|
4
|
+
Classifier: Development Status :: 4 - Beta
|
|
5
|
+
Classifier: Environment :: Console
|
|
6
|
+
Classifier: Intended Audience :: Developers
|
|
7
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
8
|
+
Classifier: Operating System :: OS Independent
|
|
9
|
+
Classifier: Programming Language :: Rust
|
|
10
|
+
Classifier: Topic :: Utilities
|
|
11
|
+
Summary: CLI and TUI for Nowledge Mem - AI memory management
|
|
12
|
+
Keywords: cli,tui,memory,ai,knowledge-graph,mcp
|
|
13
|
+
Author: Nowledge Labs
|
|
14
|
+
License-Expression: MIT
|
|
15
|
+
Requires-Python: >=3.8
|
|
16
|
+
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
|
|
17
|
+
Project-URL: Documentation, https://mem.nowledge.co/docs
|
|
18
|
+
Project-URL: Homepage, https://mem.nowledge.co/
|
|
19
|
+
Project-URL: Repository, https://github.com/nowledge-co/
|
|
20
|
+
|
|
21
|
+
# nmem-cli
|
|
22
|
+
|
|
23
|
+
A lightweight, single-binary CLI for [Nowledge Mem](https://mem.nowledge.co/) - AI memory management that works with any AI agent.
|
|
24
|
+
|
|
25
|
+
> **Now a compiled binary.** As of the 0.10.0 line, `nmem-cli` ships the
|
|
26
|
+
> Rust-built `nmem` binary instead of a Python module. `pip install nmem-cli`
|
|
27
|
+
> downloads a platform wheel that contains the compiled CLI and puts `nmem` on
|
|
28
|
+
> your `PATH`. There is no Python runtime requirement beyond pip itself, and no
|
|
29
|
+
> Python dependencies are installed. The command surface and behavior are
|
|
30
|
+
> unchanged.
|
|
31
|
+
|
|
32
|
+
## Installation
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
pip install nmem-cli
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
Or with uv:
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
uv tool install nmem-cli # or: uv pip install nmem-cli
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
The wheel bundles the compiled `nmem` binary for your platform (macOS arm64/x86_64,
|
|
45
|
+
Linux x86_64/aarch64, Windows x64). No separate toolchain or interpreter is needed.
|
|
46
|
+
|
|
47
|
+
If you use the [Nowledge Mem desktop app](https://mem.nowledge.co/), the `nmem`
|
|
48
|
+
CLI is already bundled and can be installed from
|
|
49
|
+
**Settings → Developer Tools → Install CLI** (macOS), or automatically on Linux/Windows.
|
|
50
|
+
|
|
51
|
+
## Requirements
|
|
52
|
+
|
|
53
|
+
- A running Nowledge Mem backend (default: `http://127.0.0.1:14242`), local or remote.
|
|
54
|
+
`nmem` is a thin HTTP client; it talks to that backend for every operation.
|
|
55
|
+
|
|
56
|
+
## Quick Start
|
|
57
|
+
|
|
58
|
+
```bash
|
|
59
|
+
# Check server status
|
|
60
|
+
nmem status
|
|
61
|
+
|
|
62
|
+
# Launch interactive TUI
|
|
63
|
+
nmem tui
|
|
64
|
+
|
|
65
|
+
# List memories
|
|
66
|
+
nmem m
|
|
67
|
+
|
|
68
|
+
# Search memories
|
|
69
|
+
nmem m search "python programming"
|
|
70
|
+
|
|
71
|
+
# List threads
|
|
72
|
+
nmem t
|
|
73
|
+
|
|
74
|
+
# Show version
|
|
75
|
+
nmem --version
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
See the full command reference and JSON/agent usage at
|
|
79
|
+
[mem.nowledge.co/docs](https://mem.nowledge.co/docs).
|
|
80
|
+
|
|
81
|
+
## Connecting to a backend
|
|
82
|
+
|
|
83
|
+
```bash
|
|
84
|
+
# Local (default)
|
|
85
|
+
nmem status
|
|
86
|
+
|
|
87
|
+
# Remote, one-off
|
|
88
|
+
nmem --api-url https://mem.example.com status
|
|
89
|
+
|
|
90
|
+
# Remote, persisted
|
|
91
|
+
nmem config client set url https://mem.example.com
|
|
92
|
+
nmem config client set api-key nmem_your_key
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
Resolution priority: `--api-url` > `NMEM_API_URL` / `NMEM_API_KEY` >
|
|
96
|
+
`~/.nowledge-mem/config.json` > defaults.
|
|
97
|
+
|
|
98
|
+
## Related
|
|
99
|
+
|
|
100
|
+
- [Nowledge Mem](https://mem.nowledge.co/) - the full application
|
|
101
|
+
- This CLI is also bundled with the Nowledge Mem desktop app
|
|
102
|
+
|
|
103
|
+
## Author
|
|
104
|
+
|
|
105
|
+
[Nowledge Labs](https://github.com/nowledge-co)
|
|
106
|
+
|
|
107
|
+
## License
|
|
108
|
+
|
|
109
|
+
MIT
|
|
110
|
+
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
nmem_cli-0.10.0.data/scripts/nmem.exe,sha256=mn76rUr_COWYSyIyn_mO5ePcSvqYdRBB6j11zpxFt00,13182464
|
|
2
|
+
nmem_cli-0.10.0.dist-info/METADATA,sha256=7TB6JHN1xV-_6O76p3zeOogcyVhTWKkiItKEuSV_FBk,3016
|
|
3
|
+
nmem_cli-0.10.0.dist-info/WHEEL,sha256=2zDlIYIdD4m4N3p5DVEG3iJhGLdhsBQgdH-FqVkAur8,94
|
|
4
|
+
nmem_cli-0.10.0.dist-info/sboms/nmem-cli.cyclonedx.json,sha256=HUcOWvrQq-Q-pzPjiMCtQUn6mC4bDWRua4kydzeROb8,242849
|
|
5
|
+
nmem_cli-0.10.0.dist-info/RECORD,,
|