@link-assistant/hive-mind 1.50.8 → 1.50.10

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.
@@ -562,7 +562,8 @@ const VERSION_COMMANDS = [
562
562
  { key: 'playwright', command: 'playwright --version 2>&1' },
563
563
  { key: 'playwrightTest', command: "npm list -g @playwright/test --depth=0 2>&1 | grep @playwright/test | awk '{print $2}'" },
564
564
  { key: 'playwrightMcp', command: "npm list -g @playwright/mcp --depth=0 2>&1 | grep @playwright/mcp | awk '{print $2}'" },
565
- { key: 'playwrightMcpStatus', command: 'timeout 5 claude mcp list 2>&1 | grep -i playwright | head -1' },
565
+ { key: 'playwrightMcpClaudeStatus', command: 'timeout 5 claude mcp list 2>&1 | grep -i playwright | head -1' },
566
+ { key: 'playwrightMcpCodexStatus', command: 'timeout 5 codex mcp list 2>&1 | grep -i playwright | head -1' },
566
567
  { key: 'puppeteerBrowsers', command: "npm list -g @puppeteer/browsers --depth=0 2>&1 | grep @puppeteer/browsers | awk '{print $2}'" },
567
568
 
568
569
  // Browsers (installed via Playwright)
@@ -840,7 +841,8 @@ export async function getVersionInfo(verbose = false, processVersion = null) {
840
841
  playwright: versions.playwright,
841
842
  playwrightTest: versions.playwrightTest,
842
843
  playwrightMcp: versions.playwrightMcp,
843
- playwrightMcpStatus: versions.playwrightMcpStatus,
844
+ playwrightMcpClaudeStatus: versions.playwrightMcpClaudeStatus,
845
+ playwrightMcpCodexStatus: versions.playwrightMcpCodexStatus,
844
846
  puppeteerBrowsers: versions.puppeteerBrowsers,
845
847
 
846
848
  // Browsers
@@ -1179,11 +1181,12 @@ export function formatVersionMessage(versions) {
1179
1181
  const browserAutoLines = [];
1180
1182
  addVersionLine(browserAutoLines, 'Playwright', versions.playwright, 'playwright');
1181
1183
  addVersionLine(browserAutoLines, 'Playwright Test', versions.playwrightTest, 'playwrightTest');
1182
- // Playwright MCP: show version with Claude Code connection status inline
1184
+ // Playwright MCP: show version with Claude Code and Codex connection status inline
1183
1185
  if (versions.playwrightMcp) {
1184
1186
  const mcpVersion = parseVersion('playwrightMcp', versions.playwrightMcp);
1185
- const claudeStatus = versions.playwrightMcpStatus ? 'connected' : 'not connected';
1186
- browserAutoLines.push(`• Playwright MCP: \`${mcpVersion} | Claude Code: ${claudeStatus}\``);
1187
+ const claudeStatus = versions.playwrightMcpClaudeStatus ? 'connected' : 'not connected';
1188
+ const codexStatus = versions.playwrightMcpCodexStatus ? 'connected' : 'not connected';
1189
+ browserAutoLines.push(`• Playwright MCP: \`${mcpVersion} | Claude Code: ${claudeStatus} | Codex: ${codexStatus}\``);
1187
1190
  }
1188
1191
  addVersionLine(browserAutoLines, 'Puppeteer Browsers', versions.puppeteerBrowsers, 'puppeteerBrowsers');
1189
1192