@crowley/rag-mcp 1.6.0 → 1.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/dist/tools/memory.js +3 -0
- package/package.json +1 -1
package/dist/tools/memory.js
CHANGED
|
@@ -15,6 +15,7 @@ const typeEmojis = {
|
|
|
15
15
|
todo: "\u{1F4CB}",
|
|
16
16
|
conversation: "\u{1F4AC}",
|
|
17
17
|
note: "\u{1F4DD}",
|
|
18
|
+
procedure: "\u{1F4D6}",
|
|
18
19
|
};
|
|
19
20
|
const statusEmojis = {
|
|
20
21
|
pending: "\u23F3",
|
|
@@ -37,6 +38,7 @@ export function createMemoryTools(projectName) {
|
|
|
37
38
|
"todo",
|
|
38
39
|
"conversation",
|
|
39
40
|
"note",
|
|
41
|
+
"procedure",
|
|
40
42
|
])
|
|
41
43
|
.optional()
|
|
42
44
|
.describe("Type of memory (default: note)"),
|
|
@@ -268,6 +270,7 @@ export function createMemoryTools(projectName) {
|
|
|
268
270
|
"todo",
|
|
269
271
|
"conversation",
|
|
270
272
|
"note",
|
|
273
|
+
"procedure",
|
|
271
274
|
])
|
|
272
275
|
.optional()
|
|
273
276
|
.describe("Memory type (default: note)"),
|