@gamaze/hicortex 0.10.0 → 0.10.1
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 +16 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Your agents learn from every session — successes and mistakes. Hicortex captures experiences, distills lessons, and applies them automatically. Connect multiple agents to shared memory and they improve together, overnight.
|
|
4
4
|
|
|
5
|
-
Works with **
|
|
5
|
+
Works with **Hermes**, **OpenClaw**, **Claude Code**, **Pi**, and any MCP-compatible agent.
|
|
6
6
|
|
|
7
7
|
**Website:** [hicortex.gamaze.com](https://hicortex.gamaze.com) · **Docs:** [hicortex.gamaze.com/docs](https://hicortex.gamaze.com/docs/)
|
|
8
8
|
|
|
@@ -22,6 +22,21 @@ npx @gamaze/hicortex init --server https://your-server.example.com
|
|
|
22
22
|
|
|
23
23
|
Connects to a remote Hicortex server. No local database or local LLM needed. The nightly job denoises sessions locally (no LLM — just strips tool noise), then POSTs the denoised text to the server. The server distills, embeds, and stores. Raw session content never leaves the machine.
|
|
24
24
|
|
|
25
|
+
## Install — Hermes
|
|
26
|
+
|
|
27
|
+
The Hermes plugin is a recall-only adapter: it injects fresh lessons every turn and exposes the full 8-tool memory surface, backed by a Hicortex server (local or remote). Capture happens automatically — the server machine's nightly job reads each Hermes profile's `state.db`.
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
# 1. Install the plugin (prompts for server URL + auth token; leave empty for a local server)
|
|
31
|
+
hermes plugins install gamaze-labs/hicortex-hermes-plugin
|
|
32
|
+
|
|
33
|
+
# 2. Activate it as the memory provider, then restart your gateway
|
|
34
|
+
hermes memory setup hicortex
|
|
35
|
+
hermes gateway restart
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
Find the server's auth token with `hicortex status` on the server machine.
|
|
39
|
+
|
|
25
40
|
## Install — OpenClaw
|
|
26
41
|
|
|
27
42
|
The OC plugin is a recall-only adapter (lessons + memory tools): it requires a Hicortex server. Run the server once on the same machine (or point the plugin at a remote server via `serverUrl` config). Capture happens automatically — the machine's Hicortex nightly reads OpenClaw's session files (`~/.openclaw/agents/*/sessions/`) alongside Claude Code and Hermes sessions.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gamaze/hicortex",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.1",
|
|
4
4
|
"description": "Self-learning memory for AI agents \u2014 experience captured automatically, distilled into lessons overnight, shared across your whole fleet. Works with Hermes, OpenClaw, Claude Code, and Pi.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|