@knowsuchagency/fulcrum 2.3.4 → 2.3.5

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
@@ -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.4"
45644
+ version: "2.3.5"
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.4",
47993
+ "version": "2.3.5",
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.4",
49181
+ version: "2.3.5",
49182
49182
  description: "Harness Attention. Orchestrate Agents. Ship.",
49183
49183
  license: "PolyForm-Perimeter-1.0.0",
49184
49184
  type: "module",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@knowsuchagency/fulcrum",
3
- "version": "2.3.4",
3
+ "version": "2.3.5",
4
4
  "description": "Harness Attention. Orchestrate Agents. Ship.",
5
5
  "license": "PolyForm-Perimeter-1.0.0",
6
6
  "repository": {
package/server/index.js CHANGED
@@ -71286,6 +71286,7 @@ function getSession(id) {
71286
71286
  function listSessions(options) {
71287
71287
  const { limit: limit2 = 50, offset = 0, projectId, search, favorites } = options;
71288
71288
  const conditions2 = [];
71289
+ conditions2.push(or(isNull(chatSessions.connectionId), not(like(chatSessions.connectionId, "assistant-%"))));
71289
71290
  if (projectId) {
71290
71291
  conditions2.push(eq(chatSessions.projectId, projectId));
71291
71292
  }
@@ -410994,6 +410995,8 @@ If you create an actionable_event, set an appropriate status:
410994
410995
  function getSweepSystemPrompt(context) {
410995
410996
  return `## Hourly Sweep
410996
410997
 
410998
+ **This is a non-interactive background session. Do not ask questions or wait for user input.**
410999
+
410997
411000
  You are performing your hourly sweep.
410998
411001
 
410999
411002
  **Context:**
@@ -411032,6 +411035,8 @@ function getRitualSystemPrompt(type) {
411032
411035
  if (type === "morning") {
411033
411036
  return `## Morning Ritual
411034
411037
 
411038
+ **This is a non-interactive background session. Do not ask questions or wait for user input.**
411039
+
411035
411040
  You are performing your morning ritual.
411036
411041
 
411037
411042
  ## Output Channels
@@ -411041,6 +411046,8 @@ Then use the \`message\` tool to send your briefing to the connected channels.`;
411041
411046
  }
411042
411047
  return `## Evening Ritual
411043
411048
 
411049
+ **This is a non-interactive background session. Do not ask questions or wait for user input.**
411050
+
411044
411051
  You are performing your evening ritual.
411045
411052
 
411046
411053
  ## Output Channels
@@ -463732,7 +463739,7 @@ mcpRoutes.all("/", async (c) => {
463732
463739
  });
463733
463740
  const server = new McpServer({
463734
463741
  name: "fulcrum",
463735
- version: "2.3.4"
463742
+ version: "2.3.5"
463736
463743
  });
463737
463744
  const client = new FulcrumClient(`http://localhost:${port}`);
463738
463745
  registerTools(server, client);