@browserbridge/bbx 1.6.0 → 1.6.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@browserbridge/bbx",
3
- "version": "1.6.0",
3
+ "version": "1.6.1",
4
4
  "private": false,
5
5
  "keywords": [
6
6
  "agent-tools",
@@ -40,7 +40,7 @@ import {
40
40
  getMethodsByMaxComplexity,
41
41
  } from '../../protocol/src/index.js';
42
42
  import { applyWindowsTcpTransportDefaults } from '../../native-host/src/config.js';
43
- import { MCP_SERVER_INSTRUCTIONS, registerBridgeMcpGuidance } from './guidance.js';
43
+ import { MCP_SERVER_INSTRUCTIONS } from './guidance.js';
44
44
 
45
45
  export const BUDGET_PRESET_DESCRIPTION = `Budget preset: "quick", "normal", or "deep" (defaults: query ${BUDGET_PRESETS.normal.maxNodes} nodes / depth ${BUDGET_PRESETS.normal.maxDepth} / text ${BUDGET_PRESETS.normal.textBudget}). Numeric fields override the preset when both are provided.`;
46
46
  export const TAB_ID_DESCRIPTION =
@@ -735,8 +735,6 @@ export function createBridgeMcpServer() {
735
735
  handleInvestigateTool
736
736
  );
737
737
 
738
- registerBridgeMcpGuidance(server);
739
-
740
738
  return server;
741
739
  }
742
740