@knowsuchagency/fulcrum 2.3.0 → 2.3.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/bin/fulcrum.js +3 -3
- package/package.json +1 -1
- package/server/index.js +3 -3
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.1"
|
|
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.1",
|
|
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.1",
|
|
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
|
@@ -463739,7 +463739,7 @@ mcpRoutes.all("/", async (c) => {
|
|
|
463739
463739
|
});
|
|
463740
463740
|
const server = new McpServer({
|
|
463741
463741
|
name: "fulcrum",
|
|
463742
|
-
version: "2.3.
|
|
463742
|
+
version: "2.3.1"
|
|
463743
463743
|
});
|
|
463744
463744
|
const client = new FulcrumClient(`http://localhost:${port}`);
|
|
463745
463745
|
registerTools(server, client);
|
|
@@ -467095,7 +467095,7 @@ async function runHourlySweep() {
|
|
|
467095
467095
|
for await (const event of stream3) {
|
|
467096
467096
|
if (event.type === "message:complete") {
|
|
467097
467097
|
const content = event.data.content;
|
|
467098
|
-
summary = content
|
|
467098
|
+
summary = content;
|
|
467099
467099
|
const processedMatch = content.match(/(\d+)\s*events?\s*(reviewed|processed)/i);
|
|
467100
467100
|
if (processedMatch)
|
|
467101
467101
|
eventsProcessed = parseInt(processedMatch[1]);
|
|
@@ -467145,7 +467145,7 @@ async function runDailyRitual(type) {
|
|
|
467145
467145
|
for await (const event of stream3) {
|
|
467146
467146
|
if (event.type === "message:complete") {
|
|
467147
467147
|
const content = event.data.content;
|
|
467148
|
-
summary = content
|
|
467148
|
+
summary = content;
|
|
467149
467149
|
const messagesMatch = content.match(/(\d+)\s*messages?\s*sent/i);
|
|
467150
467150
|
if (messagesMatch)
|
|
467151
467151
|
messagesSent = parseInt(messagesMatch[1]);
|