@knowsuchagency/fulcrum 4.4.9 → 4.5.0

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
@@ -46828,7 +46828,7 @@ async function runMcpServer(urlOverride, portOverride) {
46828
46828
  const client = new FulcrumClient(urlOverride, portOverride);
46829
46829
  const server = new McpServer({
46830
46830
  name: "fulcrum",
46831
- version: "4.4.9"
46831
+ version: "4.5.0"
46832
46832
  });
46833
46833
  registerTools(server, client);
46834
46834
  const transport = new StdioServerTransport;
@@ -49177,7 +49177,7 @@ var marketplace_default = `{
49177
49177
  "name": "fulcrum",
49178
49178
  "source": "./",
49179
49179
  "description": "Task orchestration for Claude Code",
49180
- "version": "4.4.9",
49180
+ "version": "4.5.0",
49181
49181
  "skills": [
49182
49182
  "./skills/fulcrum"
49183
49183
  ],
@@ -49200,7 +49200,7 @@ var marketplace_default = `{
49200
49200
  var plugin_default = `{
49201
49201
  "name": "fulcrum",
49202
49202
  "description": "Fulcrum task orchestration for Claude Code",
49203
- "version": "4.4.9",
49203
+ "version": "4.5.0",
49204
49204
  "author": {
49205
49205
  "name": "Fulcrum"
49206
49206
  },
@@ -49985,7 +49985,8 @@ var DEPENDENCIES = [
49985
49985
  description: "Encrypted secrets management",
49986
49986
  required: true,
49987
49987
  install: {
49988
- brew: "brew install fnox"
49988
+ brew: "brew install fnox",
49989
+ curl: 'curl -fsSL https://github.com/jdx/fnox/releases/latest/download/fnox-$(uname -m | sed "s/arm64/aarch64/")-$(uname -s | sed "s/Darwin/apple-darwin/;s/Linux/unknown-linux-gnu/").tar.gz | tar -xz -C /tmp && install -d ~/.local/bin && install -m 755 /tmp/fnox ~/.local/bin/fnox'
49989
49990
  }
49990
49991
  },
49991
49992
  {
@@ -50305,7 +50306,7 @@ function compareVersions(v1, v2) {
50305
50306
  var package_default = {
50306
50307
  name: "@knowsuchagency/fulcrum",
50307
50308
  private: true,
50308
- version: "4.4.9",
50309
+ version: "4.5.0",
50309
50310
  description: "Harness Attention. Orchestrate Agents. Ship.",
50310
50311
  license: "PolyForm-Perimeter-1.0.0",
50311
50312
  type: "module",
@@ -50735,7 +50736,6 @@ Found existing Vibora data at ${viboraDir}`);
50735
50736
  FULCRUM_PACKAGE_ROOT: packageRoot,
50736
50737
  FULCRUM_VERSION: package_default.version,
50737
50738
  BUN_PTY_LIB: ptyLibPath,
50738
- FNOX_AGE_KEY_FILE: join6(fulcrumDir, "age.txt"),
50739
50739
  FULCRUM_FNOX_INSTALLED: "1",
50740
50740
  ...isClaudeInstalled() && { FULCRUM_CLAUDE_INSTALLED: "1" },
50741
50741
  ...isOpencodeInstalled() && { FULCRUM_OPENCODE_INSTALLED: "1" },