@gamaze/hicortex 0.6.0 → 0.6.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 +5 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -45,12 +45,13 @@ openclaw gateway restart
|
|
|
45
45
|
|
|
46
46
|
## Agent Tools (MCP)
|
|
47
47
|
|
|
48
|
-
|
|
48
|
+
7 tools available via MCP:
|
|
49
49
|
|
|
50
50
|
- **hicortex_search** — Semantic search across all stored memories
|
|
51
51
|
- **hicortex_context** — Get recent decisions and project state
|
|
52
52
|
- **hicortex_ingest** — Store a memory directly
|
|
53
53
|
- **hicortex_lessons** — Get actionable lessons from reflection
|
|
54
|
+
- **hicortex_index** — Get the knowledge domain index (what topics are stored)
|
|
54
55
|
- **hicortex_update** — Fix incorrect memories (re-embeds on content change)
|
|
55
56
|
- **hicortex_delete** — Remove memories with cascade cleanup
|
|
56
57
|
|
|
@@ -104,6 +105,9 @@ Config at `~/.hicortex/config.json`. Created by `init`. Key options:
|
|
|
104
105
|
| `reflectBaseUrl` | Separate Ollama instance for reflection |
|
|
105
106
|
| `authToken` | Bearer token for endpoint auth |
|
|
106
107
|
| `licenseKey` | License key for higher tiers |
|
|
108
|
+
| `lessonTarget` | Injection target file (default: `~/.claude/CLAUDE.md`) |
|
|
109
|
+
| `moduleIndexTokenBudget` | Max tokens for domain index in injection (default: 500) |
|
|
110
|
+
| `telemetry` | Anonymous usage telemetry, `false` to opt out |
|
|
107
111
|
|
|
108
112
|
Full docs: [hicortex.gamaze.com/docs/configuration.html](https://hicortex.gamaze.com/docs/configuration.html)
|
|
109
113
|
|
package/openclaw.plugin.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"id": "hicortex",
|
|
3
3
|
"name": "Hicortex — Long-term Memory That Learns",
|
|
4
4
|
"description": "Your agents remember past decisions, avoid repeated mistakes, and get smarter every day. Nightly reflection generates actionable lessons that automatically update agent behavior.",
|
|
5
|
-
"version": "0.6.
|
|
5
|
+
"version": "0.6.1",
|
|
6
6
|
"kind": "lifecycle",
|
|
7
7
|
"skills": ["./skills/hicortex-memory", "./skills/hicortex-learn", "./skills/hicortex-activate"],
|
|
8
8
|
"configSchema": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gamaze/hicortex",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.1",
|
|
4
4
|
"description": "Human-like memory for self-improving AI agents. Automatic capturing, nightly reflection, and cross-agent learning. Works with Claude Code and OpenClaw.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|