@joshuaswarren/openclaw-engram 9.1.37 → 9.1.38
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 +30 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -160,6 +160,33 @@ Point your MCP client's command at `openclaw engram access mcp-serve`. Works wit
|
|
|
160
160
|
|
|
161
161
|
See the [Standalone Server Guide](docs/guides/standalone-server.md) for multi-tenant setups and connecting multiple agent harnesses.
|
|
162
162
|
|
|
163
|
+
## Standalone Usage
|
|
164
|
+
|
|
165
|
+
Engram also works as a standalone tool without OpenClaw. Install and run the CLI directly:
|
|
166
|
+
|
|
167
|
+
```bash
|
|
168
|
+
npm install -g @joshuaswarren/openclaw-engram
|
|
169
|
+
engram init # create engram.config.json
|
|
170
|
+
export OPENAI_API_KEY=sk-...
|
|
171
|
+
export ENGRAM_AUTH_TOKEN=$(openssl rand -hex 32)
|
|
172
|
+
engram daemon start # start background server
|
|
173
|
+
engram query "hello" # verify
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
The CLI provides 15+ commands for querying, onboarding projects, curating files, managing spaces, running benchmarks, and more. See the [full CLI reference](docs/api.md#standalone-cli-commands) for all commands.
|
|
177
|
+
|
|
178
|
+
OpenClaw remains the recommended path for most users. The standalone CLI is useful for CI/CD pipelines, scripted memory operations, and environments without OpenClaw.
|
|
179
|
+
|
|
180
|
+
### Package Architecture
|
|
181
|
+
|
|
182
|
+
```
|
|
183
|
+
@engram/core — Framework-agnostic engine (re-exports orchestrator, config, storage, search, extraction, graph, trust zones)
|
|
184
|
+
@engram/cli — Standalone CLI binary (15+ commands)
|
|
185
|
+
@engram/server — Standalone HTTP/MCP server
|
|
186
|
+
@engram/bench — Benchmarks + CI regression gates
|
|
187
|
+
@engram/hermes-provider — HTTP client for remote Engram instances
|
|
188
|
+
```
|
|
189
|
+
|
|
163
190
|
## How It Works
|
|
164
191
|
|
|
165
192
|
Engram operates in three phases:
|
|
@@ -544,6 +571,9 @@ All settings live in `openclaw.json` under `plugins.entries.openclaw-engram.conf
|
|
|
544
571
|
- [Lossless Context Management](docs/guides/lossless-context-management.md) — Never lose context to compaction
|
|
545
572
|
- [Enable All Features](docs/enable-all-v8.md) — Full-feature config profile
|
|
546
573
|
- [Migration Guide](docs/guides/migrations.md) — Upgrading from older versions
|
|
574
|
+
- [Platform Migration Guide](docs/guides/platform-migration.md) — Migrating to the v9.1.36+ platform architecture (packages, standalone CLI, spaces, benchmarks)
|
|
575
|
+
- [Platform Migration Guide](docs/guides/platform-migration.md) — Upgrading to v9.1.36+ platform architecture
|
|
576
|
+
- [Platform Migration Guide](docs/guides/platform-migration.md) — Migrating to v9.1.36+ platform architecture
|
|
547
577
|
|
|
548
578
|
## Contributing
|
|
549
579
|
|
package/package.json
CHANGED