@knowsuchagency/fulcrum 2.3.0 → 2.3.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 +3 -3
- package/package.json +1 -1
- package/server/index.js +3 -10
package/bin/fulcrum.js
CHANGED
|
@@ -45641,7 +45641,7 @@ async function runMcpServer(urlOverride, portOverride) {
|
|
|
45641
45641
|
const client = new FulcrumClient(urlOverride, portOverride);
|
|
45642
45642
|
const server = new McpServer({
|
|
45643
45643
|
name: "fulcrum",
|
|
45644
|
-
version: "2.3.
|
|
45644
|
+
version: "2.3.2"
|
|
45645
45645
|
});
|
|
45646
45646
|
registerTools(server, client);
|
|
45647
45647
|
const transport = new StdioServerTransport;
|
|
@@ -47990,7 +47990,7 @@ var marketplace_default = `{
|
|
|
47990
47990
|
"name": "fulcrum",
|
|
47991
47991
|
"source": "./",
|
|
47992
47992
|
"description": "Task orchestration for Claude Code",
|
|
47993
|
-
"version": "2.3.
|
|
47993
|
+
"version": "2.3.2",
|
|
47994
47994
|
"skills": [
|
|
47995
47995
|
"./skills/fulcrum"
|
|
47996
47996
|
],
|
|
@@ -49178,7 +49178,7 @@ function compareVersions(v1, v2) {
|
|
|
49178
49178
|
var package_default = {
|
|
49179
49179
|
name: "@knowsuchagency/fulcrum",
|
|
49180
49180
|
private: true,
|
|
49181
|
-
version: "2.3.
|
|
49181
|
+
version: "2.3.2",
|
|
49182
49182
|
description: "Harness Attention. Orchestrate Agents. Ship.",
|
|
49183
49183
|
license: "PolyForm-Perimeter-1.0.0",
|
|
49184
49184
|
type: "module",
|
package/package.json
CHANGED
package/server/index.js
CHANGED
|
@@ -409691,12 +409691,6 @@ class EmailChannel {
|
|
|
409691
409691
|
subject: headers.subject,
|
|
409692
409692
|
reason: authResult.reason
|
|
409693
409693
|
});
|
|
409694
|
-
sendNotification({
|
|
409695
|
-
title: "Email rejected",
|
|
409696
|
-
message: `From: ${headers.from}
|
|
409697
|
-
Subject: ${headers.subject}
|
|
409698
|
-
Reason: ${authResult.reason}`
|
|
409699
|
-
});
|
|
409700
409694
|
if (this.transporter) {
|
|
409701
409695
|
await sendUnauthorizedResponse(this.transporter, this.connectionId, this.getFromAddress(), headers, this.credentials?.bcc);
|
|
409702
409696
|
}
|
|
@@ -409981,7 +409975,6 @@ var init_email_channel = __esm(() => {
|
|
|
409981
409975
|
init_db2();
|
|
409982
409976
|
init_logger3();
|
|
409983
409977
|
init_settings();
|
|
409984
|
-
init_notification_service();
|
|
409985
409978
|
init_email_parser();
|
|
409986
409979
|
init_email_auth();
|
|
409987
409980
|
init_email_storage();
|
|
@@ -463739,7 +463732,7 @@ mcpRoutes.all("/", async (c) => {
|
|
|
463739
463732
|
});
|
|
463740
463733
|
const server = new McpServer({
|
|
463741
463734
|
name: "fulcrum",
|
|
463742
|
-
version: "2.3.
|
|
463735
|
+
version: "2.3.2"
|
|
463743
463736
|
});
|
|
463744
463737
|
const client = new FulcrumClient(`http://localhost:${port}`);
|
|
463745
463738
|
registerTools(server, client);
|
|
@@ -467095,7 +467088,7 @@ async function runHourlySweep() {
|
|
|
467095
467088
|
for await (const event of stream3) {
|
|
467096
467089
|
if (event.type === "message:complete") {
|
|
467097
467090
|
const content = event.data.content;
|
|
467098
|
-
summary = content
|
|
467091
|
+
summary = content;
|
|
467099
467092
|
const processedMatch = content.match(/(\d+)\s*events?\s*(reviewed|processed)/i);
|
|
467100
467093
|
if (processedMatch)
|
|
467101
467094
|
eventsProcessed = parseInt(processedMatch[1]);
|
|
@@ -467145,7 +467138,7 @@ async function runDailyRitual(type) {
|
|
|
467145
467138
|
for await (const event of stream3) {
|
|
467146
467139
|
if (event.type === "message:complete") {
|
|
467147
467140
|
const content = event.data.content;
|
|
467148
|
-
summary = content
|
|
467141
|
+
summary = content;
|
|
467149
467142
|
const messagesMatch = content.match(/(\d+)\s*messages?\s*sent/i);
|
|
467150
467143
|
if (messagesMatch)
|
|
467151
467144
|
messagesSent = parseInt(messagesMatch[1]);
|