@knowsuchagency/fulcrum 5.10.6 → 5.11.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
@@ -46869,7 +46869,7 @@ async function runMcpServer(urlOverride, portOverride) {
46869
46869
  const client = new FulcrumClient(urlOverride, portOverride);
46870
46870
  const server = new McpServer({
46871
46871
  name: "fulcrum",
46872
- version: "5.10.6"
46872
+ version: "5.11.0"
46873
46873
  });
46874
46874
  registerTools(server, client);
46875
46875
  const transport = new StdioServerTransport;
@@ -49218,7 +49218,7 @@ var marketplace_default = `{
49218
49218
  "name": "fulcrum",
49219
49219
  "source": "./",
49220
49220
  "description": "Task orchestration for Claude Code",
49221
- "version": "5.10.6",
49221
+ "version": "5.11.0",
49222
49222
  "skills": [
49223
49223
  "./skills/fulcrum"
49224
49224
  ],
@@ -49241,7 +49241,7 @@ var marketplace_default = `{
49241
49241
  var plugin_default = `{
49242
49242
  "name": "fulcrum",
49243
49243
  "description": "Fulcrum task orchestration for Claude Code",
49244
- "version": "5.10.6",
49244
+ "version": "5.11.0",
49245
49245
  "author": {
49246
49246
  "name": "Fulcrum"
49247
49247
  },
@@ -49898,6 +49898,16 @@ var DEPENDENCIES = [
49898
49898
  curl: "curl -fsSL https://opencode.ai/install | bash"
49899
49899
  }
49900
49900
  },
49901
+ {
49902
+ name: "codex",
49903
+ command: "codex",
49904
+ description: "OpenAI Codex CLI for AI agents",
49905
+ required: false,
49906
+ install: {
49907
+ npm: "npm install -g @openai/codex",
49908
+ brew: "brew install codex"
49909
+ }
49910
+ },
49901
49911
  {
49902
49912
  name: "uv",
49903
49913
  command: "uv",
@@ -50074,6 +50084,9 @@ function installBun() {
50074
50084
  function isOpencodeInstalled() {
50075
50085
  return isCommandInstalled("opencode");
50076
50086
  }
50087
+ function isCodexInstalled() {
50088
+ return isCommandInstalled("codex");
50089
+ }
50077
50090
  function installUv() {
50078
50091
  const dep = getDependency("uv");
50079
50092
  if (!dep)
@@ -50258,7 +50271,7 @@ function compareVersions(v1, v2) {
50258
50271
  var package_default = {
50259
50272
  name: "@knowsuchagency/fulcrum",
50260
50273
  private: true,
50261
- version: "5.10.6",
50274
+ version: "5.11.0",
50262
50275
  description: "Harness Attention. Orchestrate Agents. Ship.",
50263
50276
  license: "PolyForm-Perimeter-1.0.0",
50264
50277
  type: "module",
@@ -50291,6 +50304,7 @@ var package_default = {
50291
50304
  "@modelcontextprotocol/sdk": "^1.11.0",
50292
50305
  "@monaco-editor/react": "^4.7.0",
50293
50306
  "@octokit/rest": "^22.0.1",
50307
+ "@openai/codex-sdk": "^0.130.0",
50294
50308
  "@opencode-ai/sdk": "^1.1.34",
50295
50309
  "@radix-ui/react-collapsible": "^1.1.12",
50296
50310
  "@slack/bolt": "^4.6.0",
@@ -50692,6 +50706,7 @@ Found existing Vibora data at ${viboraDir}`);
50692
50706
  FULCRUM_FNOX_INSTALLED: "1",
50693
50707
  ...isClaudeInstalled() && { FULCRUM_CLAUDE_INSTALLED: "1" },
50694
50708
  ...isOpencodeInstalled() && { FULCRUM_OPENCODE_INSTALLED: "1" },
50709
+ ...isCodexInstalled() && { FULCRUM_CODEX_INSTALLED: "1" },
50695
50710
  ...debug && { LOG_LEVEL: "debug", DEBUG: "1" }
50696
50711
  }
50697
50712
  });
@@ -50712,7 +50727,7 @@ Found existing Vibora data at ${viboraDir}`);
50712
50727
  url: `http://localhost:${port}`
50713
50728
  });
50714
50729
  } else {
50715
- const hasAgent = isClaudeInstalled() || isOpencodeInstalled();
50730
+ const hasAgent = isClaudeInstalled() || isOpencodeInstalled() || isCodexInstalled();
50716
50731
  showGettingStartedTips(port, hasAgent);
50717
50732
  }
50718
50733
  }