nmem-cli 0.6.17__tar.gz → 0.7.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.
- {nmem_cli-0.6.17 → nmem_cli-0.7.0}/PKG-INFO +16 -3
- {nmem_cli-0.6.17 → nmem_cli-0.7.0}/README.md +15 -2
- {nmem_cli-0.6.17 → nmem_cli-0.7.0}/pyproject.toml +1 -1
- {nmem_cli-0.6.17 → nmem_cli-0.7.0}/src/nmem_cli/__init__.py +1 -1
- {nmem_cli-0.6.17 → nmem_cli-0.7.0}/src/nmem_cli/cli.py +1638 -117
- {nmem_cli-0.6.17 → nmem_cli-0.7.0}/src/nmem_cli/session_import.py +558 -3
- {nmem_cli-0.6.17 → nmem_cli-0.7.0}/src/nmem_cli/tui/screens/settings.py +59 -18
- {nmem_cli-0.6.17 → nmem_cli-0.7.0}/.gitignore +0 -0
- {nmem_cli-0.6.17 → nmem_cli-0.7.0}/src/nmem_cli/license_payload.py +0 -0
- {nmem_cli-0.6.17 → nmem_cli-0.7.0}/src/nmem_cli/py.typed +0 -0
- {nmem_cli-0.6.17 → nmem_cli-0.7.0}/src/nmem_cli/tui/__init__.py +0 -0
- {nmem_cli-0.6.17 → nmem_cli-0.7.0}/src/nmem_cli/tui/__main__.py +0 -0
- {nmem_cli-0.6.17 → nmem_cli-0.7.0}/src/nmem_cli/tui/api_client.py +0 -0
- {nmem_cli-0.6.17 → nmem_cli-0.7.0}/src/nmem_cli/tui/app.py +0 -0
- {nmem_cli-0.6.17 → nmem_cli-0.7.0}/src/nmem_cli/tui/screens/__init__.py +0 -0
- {nmem_cli-0.6.17 → nmem_cli-0.7.0}/src/nmem_cli/tui/screens/dashboard.py +0 -0
- {nmem_cli-0.6.17 → nmem_cli-0.7.0}/src/nmem_cli/tui/screens/graph.py +0 -0
- {nmem_cli-0.6.17 → nmem_cli-0.7.0}/src/nmem_cli/tui/screens/help.py +0 -0
- {nmem_cli-0.6.17 → nmem_cli-0.7.0}/src/nmem_cli/tui/screens/memories.py +0 -0
- {nmem_cli-0.6.17 → nmem_cli-0.7.0}/src/nmem_cli/tui/screens/memory_detail.py +0 -0
- {nmem_cli-0.6.17 → nmem_cli-0.7.0}/src/nmem_cli/tui/screens/thread_detail.py +0 -0
- {nmem_cli-0.6.17 → nmem_cli-0.7.0}/src/nmem_cli/tui/screens/threads.py +0 -0
- {nmem_cli-0.6.17 → nmem_cli-0.7.0}/src/nmem_cli/tui/widgets/__init__.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: nmem-cli
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.7.0
|
|
4
4
|
Summary: CLI and TUI for Nowledge Mem - AI memory management
|
|
5
5
|
Project-URL: Homepage, https://mem.nowledge.co/
|
|
6
6
|
Project-URL: Repository, https://github.com/nowledge-co/
|
|
@@ -110,7 +110,8 @@ nmem t
|
|
|
110
110
|
|
|
111
111
|
| Command | Description |
|
|
112
112
|
| ------- | ----------- |
|
|
113
|
-
| `nmem t` / `nmem threads` | List threads |
|
|
113
|
+
| `nmem t` / `nmem threads` | List recent threads |
|
|
114
|
+
| `nmem t list --source openclaw -n 20` | List recent threads for one source |
|
|
114
115
|
| `nmem t search "query"` | Search threads |
|
|
115
116
|
| `nmem t show <id>` | Show thread with messages |
|
|
116
117
|
| `nmem t create -t "Title" -c "content"` | Create a thread |
|
|
@@ -143,7 +144,17 @@ nmem m search "query" --importance 0.7 # Minimum importance
|
|
|
143
144
|
|
|
144
145
|
For long-term remote use, prefer `nmem`'s config file instead of exporting auth on every shell session.
|
|
145
146
|
|
|
146
|
-
|
|
147
|
+
The recommended CLI flow is:
|
|
148
|
+
|
|
149
|
+
```bash
|
|
150
|
+
nmem config client set url https://mem.example.com
|
|
151
|
+
nmem config client set api-key nmem_your_key
|
|
152
|
+
nmem config client show
|
|
153
|
+
```
|
|
154
|
+
|
|
155
|
+
This writes the same local client config file that integrations like Hermes, Cursor hooks, and OpenClaw read on this machine.
|
|
156
|
+
|
|
157
|
+
Create manually if needed:
|
|
147
158
|
|
|
148
159
|
```json
|
|
149
160
|
~/.nowledge-mem/config.json
|
|
@@ -167,6 +178,8 @@ Resolution priority:
|
|
|
167
178
|
|
|
168
179
|
Use environment variables when you want a temporary override for the current shell, CI job, or integration runtime.
|
|
169
180
|
|
|
181
|
+
`nmem config client ...` controls how this machine connects outward to Mem. It is separate from `nmem config access ...`, which controls how a Mem server is exposed to other devices on your network or through Access Anywhere.
|
|
182
|
+
|
|
170
183
|
## Environment Variables
|
|
171
184
|
|
|
172
185
|
| Variable | Description | Default |
|
|
@@ -77,7 +77,8 @@ nmem t
|
|
|
77
77
|
|
|
78
78
|
| Command | Description |
|
|
79
79
|
| ------- | ----------- |
|
|
80
|
-
| `nmem t` / `nmem threads` | List threads |
|
|
80
|
+
| `nmem t` / `nmem threads` | List recent threads |
|
|
81
|
+
| `nmem t list --source openclaw -n 20` | List recent threads for one source |
|
|
81
82
|
| `nmem t search "query"` | Search threads |
|
|
82
83
|
| `nmem t show <id>` | Show thread with messages |
|
|
83
84
|
| `nmem t create -t "Title" -c "content"` | Create a thread |
|
|
@@ -110,7 +111,17 @@ nmem m search "query" --importance 0.7 # Minimum importance
|
|
|
110
111
|
|
|
111
112
|
For long-term remote use, prefer `nmem`'s config file instead of exporting auth on every shell session.
|
|
112
113
|
|
|
113
|
-
|
|
114
|
+
The recommended CLI flow is:
|
|
115
|
+
|
|
116
|
+
```bash
|
|
117
|
+
nmem config client set url https://mem.example.com
|
|
118
|
+
nmem config client set api-key nmem_your_key
|
|
119
|
+
nmem config client show
|
|
120
|
+
```
|
|
121
|
+
|
|
122
|
+
This writes the same local client config file that integrations like Hermes, Cursor hooks, and OpenClaw read on this machine.
|
|
123
|
+
|
|
124
|
+
Create manually if needed:
|
|
114
125
|
|
|
115
126
|
```json
|
|
116
127
|
~/.nowledge-mem/config.json
|
|
@@ -134,6 +145,8 @@ Resolution priority:
|
|
|
134
145
|
|
|
135
146
|
Use environment variables when you want a temporary override for the current shell, CI job, or integration runtime.
|
|
136
147
|
|
|
148
|
+
`nmem config client ...` controls how this machine connects outward to Mem. It is separate from `nmem config access ...`, which controls how a Mem server is exposed to other devices on your network or through Access Anywhere.
|
|
149
|
+
|
|
137
150
|
## Environment Variables
|
|
138
151
|
|
|
139
152
|
| Variable | Description | Default |
|