@gamaze/hicortex 0.2.0
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 +119 -0
- package/dist/consolidate.d.ts +36 -0
- package/dist/consolidate.js +482 -0
- package/dist/db.d.ts +19 -0
- package/dist/db.js +140 -0
- package/dist/distiller.d.ts +15 -0
- package/dist/distiller.js +186 -0
- package/dist/embedder.d.ts +20 -0
- package/dist/embedder.js +85 -0
- package/dist/index.d.ts +14 -0
- package/dist/index.js +557 -0
- package/dist/license.d.ts +5 -0
- package/dist/license.js +96 -0
- package/dist/llm.d.ts +66 -0
- package/dist/llm.js +421 -0
- package/dist/prompts.d.ts +16 -0
- package/dist/prompts.js +117 -0
- package/dist/retrieval.d.ts +47 -0
- package/dist/retrieval.js +320 -0
- package/dist/storage.d.ts +98 -0
- package/dist/storage.js +326 -0
- package/dist/types.d.ts +132 -0
- package/dist/types.js +6 -0
- package/openclaw.plugin.json +70 -0
- package/package.json +42 -0
- package/skills/hicortex-activate/SKILL.md +53 -0
- package/skills/hicortex-learn/SKILL.md +40 -0
- package/skills/hicortex-memory/SKILL.md +39 -0
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: hicortex-memory
|
|
3
|
+
description: Long-term memory tools for searching past knowledge, decisions, and lessons. Use when the user references past work, asks about previous decisions, or when you need context from earlier sessions.
|
|
4
|
+
version: 0.2.0
|
|
5
|
+
disable-model-invocation: false
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
# Hicortex Long-term Memory
|
|
9
|
+
|
|
10
|
+
You have access to a long-term memory system that stores knowledge from past sessions. Use it proactively.
|
|
11
|
+
|
|
12
|
+
## When to use hicortex_search
|
|
13
|
+
|
|
14
|
+
- User asks "what did we decide about X?" or "have we dealt with this before?"
|
|
15
|
+
- You need context about a project, decision, or past conversation
|
|
16
|
+
- You're about to make a decision that might contradict past work
|
|
17
|
+
- Starting work on a project you've worked on before
|
|
18
|
+
|
|
19
|
+
## When to use hicortex_context
|
|
20
|
+
|
|
21
|
+
- At the start of a session to recall recent project state
|
|
22
|
+
- When switching between projects to load relevant context
|
|
23
|
+
|
|
24
|
+
## When to use hicortex_ingest
|
|
25
|
+
|
|
26
|
+
- User explicitly asks you to remember something
|
|
27
|
+
- An important decision is made that should persist
|
|
28
|
+
- A lesson is learned that should apply to future sessions
|
|
29
|
+
|
|
30
|
+
## When to use hicortex_lessons
|
|
31
|
+
|
|
32
|
+
- Before starting a task, check if there are relevant lessons
|
|
33
|
+
- When debugging an issue that may have been solved before
|
|
34
|
+
|
|
35
|
+
## Important
|
|
36
|
+
|
|
37
|
+
- Lessons are auto-injected at session start — you don't need to fetch them manually
|
|
38
|
+
- Sessions are auto-captured — you don't need to manually save conversations
|
|
39
|
+
- Memory search uses semantic similarity — use natural language queries, not keywords
|