@remnic/cli 1.0.2 → 1.0.3
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.
- package/README.md +57 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
# @remnic/cli
|
|
2
|
+
|
|
3
|
+
CLI for Remnic memory -- init, query, daemon management, connectors, curation, and more.
|
|
4
|
+
|
|
5
|
+
Part of [Remnic](https://github.com/joshuaswarren/remnic), the universal memory layer for AI agents.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g @remnic/cli
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
This installs the `remnic` command (and a legacy `engram` forwarder).
|
|
14
|
+
|
|
15
|
+
## Quick start
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
remnic init # Create remnic.config.json
|
|
19
|
+
export OPENAI_API_KEY=sk-...
|
|
20
|
+
export REMNIC_AUTH_TOKEN=$(openssl rand -hex 32)
|
|
21
|
+
remnic daemon start # Start background server
|
|
22
|
+
remnic status # Verify it's running
|
|
23
|
+
remnic query "hello" --explain # Test query with tier breakdown
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## Commands
|
|
27
|
+
|
|
28
|
+
| Command | Description |
|
|
29
|
+
|---------|-------------|
|
|
30
|
+
| `remnic init` | Create a config file |
|
|
31
|
+
| `remnic daemon start/stop/status` | Manage the background server |
|
|
32
|
+
| `remnic query <text>` | Search memories |
|
|
33
|
+
| `remnic doctor` | Diagnose configuration issues |
|
|
34
|
+
| `remnic connectors install <name>` | Connect Claude Code, Codex CLI, Replit, etc. |
|
|
35
|
+
| `remnic curate` | Interactive memory curation |
|
|
36
|
+
| `remnic dedup` | Find and merge duplicate memories |
|
|
37
|
+
| `remnic sync` | Diff-aware sync with external sources |
|
|
38
|
+
| `remnic spaces` | Manage memory namespaces |
|
|
39
|
+
| `remnic bench` | Run memory retrieval benchmarks |
|
|
40
|
+
|
|
41
|
+
Run `remnic --help` for the full command list.
|
|
42
|
+
|
|
43
|
+
## Connecting agents
|
|
44
|
+
|
|
45
|
+
Once the daemon is running, connect any supported agent:
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
remnic connectors install claude-code # Claude Code (hooks + MCP)
|
|
49
|
+
remnic connectors install codex-cli # Codex CLI (hooks + MCP)
|
|
50
|
+
remnic connectors install replit # Replit (MCP only)
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
All agents share the same memory store.
|
|
54
|
+
|
|
55
|
+
## License
|
|
56
|
+
|
|
57
|
+
MIT
|