@gamaze/hicortex 0.11.1 → 0.12.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 -2
- package/assets/context.html +487 -0
- package/dist/classify-domains.js +2 -2
- package/dist/cli.js +18 -0
- package/dist/context-cli.d.ts +58 -0
- package/dist/context-cli.js +240 -0
- package/dist/context-store.d.ts +120 -0
- package/dist/context-store.js +321 -0
- package/dist/db.js +2 -1
- package/dist/features.js +2 -3
- package/dist/index.d.ts +1 -1
- package/dist/index.js +39 -21
- package/dist/init.d.ts +9 -0
- package/dist/init.js +41 -11
- package/dist/lessons-context.d.ts +20 -7
- package/dist/lessons-context.js +120 -30
- package/dist/mcp-server.js +71 -9
- package/dist/nightly-status.js +8 -1
- package/dist/nightly.js +21 -2
- package/dist/paths.d.ts +1 -0
- package/dist/paths.js +17 -0
- package/dist/relink.js +2 -2
- package/dist/retrieval.d.ts +1 -1
- package/dist/retrieval.js +2 -2
- package/dist/state.js +2 -2
- package/dist/status.js +2 -1
- package/dist/uninstall.js +31 -14
- package/dist/viz.d.ts +15 -0
- package/dist/viz.js +48 -0
- package/hermes-plugin/hicortex/README.md +4 -5
- package/hermes-plugin/hicortex/__init__.py +1 -1
- package/hermes-plugin/hicortex/client.py +2 -2
- package/hermes-plugin/hicortex/plugin.yaml +2 -2
- package/hermes-plugin/hicortex/provider.py +8 -21
- package/package.json +2 -2
- package/skills/hicortex-memory/SKILL.md +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gamaze/hicortex",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "Self-learning memory for AI agents
|
|
3
|
+
"version": "0.12.1",
|
|
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": {
|
|
7
7
|
"hicortex": "dist/cli.js"
|
|
@@ -16,7 +16,7 @@ You have access to a long-term memory system that stores knowledge from past ses
|
|
|
16
16
|
- You're about to make a decision that might contradict past work
|
|
17
17
|
- Starting work on a project you've worked on before
|
|
18
18
|
|
|
19
|
-
## When to use
|
|
19
|
+
## When to use hicortex_recent
|
|
20
20
|
|
|
21
21
|
- At the start of a session to recall recent project state
|
|
22
22
|
- When switching between projects to load relevant context
|