diff --git a/src/skills/bundled/verbooInChrome.test.ts b/src/skills/bundled/verbooInChrome.test.ts index f054933849..c8dca2ab16 100644 --- a/src/skills/bundled/verbooInChrome.test.ts +++ b/src/skills/bundled/verbooInChrome.test.ts @@ -17,6 +17,8 @@ test('Verboo in Chrome skill exposes the real MCP tool contract', async () => { expect(skill?.allowedTools).toEqual([ 'mcp__verboo-in-chrome__navigate', 'mcp__verboo-in-chrome__read_page', + 'mcp__verboo-in-chrome__find', + 'mcp__verboo-in-chrome__extract_page_content', 'mcp__verboo-in-chrome__structured_extract', 'mcp__verboo-in-chrome__click', 'mcp__verboo-in-chrome__type', diff --git a/src/utils/verbooInChrome.test.ts b/src/utils/verbooInChrome.test.ts index 37c9a7045f..50af2505fe 100644 --- a/src/utils/verbooInChrome.test.ts +++ b/src/utils/verbooInChrome.test.ts @@ -111,6 +111,8 @@ test('browser guidance matches the tools exposed by the Verboo extension', () => for (const tool of [ 'navigate', 'read_page', + 'find', + 'extract_page_content', 'structured_extract', 'click', 'type', diff --git a/src/utils/verbooInChrome.ts b/src/utils/verbooInChrome.ts index 6021f7f638..3a48b14e1c 100644 --- a/src/utils/verbooInChrome.ts +++ b/src/utils/verbooInChrome.ts @@ -7,6 +7,8 @@ export const VERBOO_IN_CHROME_MANAGED_MARKER = 'VERBOO_IN_CHROME_MANAGED' export const VERBOO_IN_CHROME_TOOL_NAMES = [ 'navigate', 'read_page', + 'find', + 'extract_page_content', 'structured_extract', 'click', 'type',