@knowsuchagency/fulcrum 2.8.1 → 2.8.2
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/bin/fulcrum.js
CHANGED
|
@@ -45825,14 +45825,28 @@ var init_caldav = __esm(() => {
|
|
|
45825
45825
|
init_utils();
|
|
45826
45826
|
});
|
|
45827
45827
|
|
|
45828
|
+
// shared/types.ts
|
|
45829
|
+
var MEMORY_SOURCES;
|
|
45830
|
+
var init_types5 = __esm(() => {
|
|
45831
|
+
MEMORY_SOURCES = [
|
|
45832
|
+
"channel:whatsapp",
|
|
45833
|
+
"channel:slack",
|
|
45834
|
+
"channel:discord",
|
|
45835
|
+
"channel:telegram",
|
|
45836
|
+
"channel:email",
|
|
45837
|
+
"conversation:assistant"
|
|
45838
|
+
];
|
|
45839
|
+
});
|
|
45840
|
+
|
|
45828
45841
|
// cli/src/mcp/tools/memory.ts
|
|
45829
45842
|
var registerMemoryTools = (server, client) => {
|
|
45830
45843
|
server.tool("memory_store", "Store a piece of knowledge in persistent memory. Use this to remember facts, preferences, decisions, patterns, or any information that should persist across conversations.", {
|
|
45831
45844
|
content: exports_external.string().describe("The memory content to store. Be specific and self-contained."),
|
|
45832
|
-
tags: exports_external.optional(exports_external.array(exports_external.string())).describe('Optional tags for categorization (e.g., ["preference", "architecture", "decision"])')
|
|
45833
|
-
|
|
45845
|
+
tags: exports_external.optional(exports_external.array(exports_external.string())).describe('Optional tags for categorization (e.g., ["preference", "architecture", "decision"])'),
|
|
45846
|
+
source: exports_external.optional(exports_external.enum(MEMORY_SOURCES)).describe('Where this memory originated (e.g., "channel:whatsapp", "conversation:assistant")')
|
|
45847
|
+
}, async ({ content, tags, source }) => {
|
|
45834
45848
|
try {
|
|
45835
|
-
const result = await client.storeMemory({ content, tags });
|
|
45849
|
+
const result = await client.storeMemory({ content, tags, source });
|
|
45836
45850
|
return formatSuccess(result);
|
|
45837
45851
|
} catch (err) {
|
|
45838
45852
|
return handleToolError(err);
|
|
@@ -45854,6 +45868,7 @@ var registerMemoryTools = (server, client) => {
|
|
|
45854
45868
|
var init_memory = __esm(() => {
|
|
45855
45869
|
init_zod2();
|
|
45856
45870
|
init_utils();
|
|
45871
|
+
init_types5();
|
|
45857
45872
|
});
|
|
45858
45873
|
|
|
45859
45874
|
// cli/src/mcp/tools/index.ts
|
|
@@ -45906,7 +45921,7 @@ async function runMcpServer(urlOverride, portOverride) {
|
|
|
45906
45921
|
const client = new FulcrumClient(urlOverride, portOverride);
|
|
45907
45922
|
const server = new McpServer({
|
|
45908
45923
|
name: "fulcrum",
|
|
45909
|
-
version: "2.8.
|
|
45924
|
+
version: "2.8.2"
|
|
45910
45925
|
});
|
|
45911
45926
|
registerTools(server, client);
|
|
45912
45927
|
const transport = new StdioServerTransport;
|
|
@@ -48255,7 +48270,7 @@ var marketplace_default = `{
|
|
|
48255
48270
|
"name": "fulcrum",
|
|
48256
48271
|
"source": "./",
|
|
48257
48272
|
"description": "Task orchestration for Claude Code",
|
|
48258
|
-
"version": "2.8.
|
|
48273
|
+
"version": "2.8.2",
|
|
48259
48274
|
"skills": [
|
|
48260
48275
|
"./skills/fulcrum"
|
|
48261
48276
|
],
|
|
@@ -49443,7 +49458,7 @@ function compareVersions(v1, v2) {
|
|
|
49443
49458
|
var package_default = {
|
|
49444
49459
|
name: "@knowsuchagency/fulcrum",
|
|
49445
49460
|
private: true,
|
|
49446
|
-
version: "2.8.
|
|
49461
|
+
version: "2.8.2",
|
|
49447
49462
|
description: "Harness Attention. Orchestrate Agents. Ship.",
|
|
49448
49463
|
license: "PolyForm-Perimeter-1.0.0",
|
|
49449
49464
|
type: "module",
|