Skip to content

Commit c1ee00b

Browse files
author
Lusa Zhan
committed
feat: agentic browsing in lighthouse
1 parent a1612be commit c1ee00b

4 files changed

Lines changed: 21150 additions & 20083 deletions

File tree

src/third_party/LIGHTHOUSE_MCP_BUNDLE_THIRD_PARTY_NOTICES

Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1529,29 +1529,6 @@ URL: zeit/ms
15291529
Version: 2.1.2
15301530
License: MIT
15311531

1532-
The MIT License (MIT)
1533-
1534-
Copyright (c) 2016 Zeit, Inc.
1535-
1536-
Permission is hereby granted, free of charge, to any person obtaining a copy
1537-
of this software and associated documentation files (the "Software"), to deal
1538-
in the Software without restriction, including without limitation the rights
1539-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1540-
copies of the Software, and to permit persons to whom the Software is
1541-
furnished to do so, subject to the following conditions:
1542-
1543-
The above copyright notice and this permission notice shall be included in all
1544-
copies or substantial portions of the Software.
1545-
1546-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1547-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1548-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1549-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1550-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1551-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1552-
SOFTWARE.
1553-
1554-
15551532
-------------------- DEPENDENCY DIVIDER --------------------
15561533

15571534
Name: puppeteer-core
@@ -1686,7 +1663,7 @@ PERFORMANCE OF THIS SOFTWARE.
16861663

16871664
Name: web-features
16881665
URL: git+https://github.com/web-platform-dx/web-features.git
1689-
Version: 3.21.0
1666+
Version: 3.24.0
16901667
License: Apache-2.0
16911668

16921669
Apache License

src/third_party/index.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,16 +54,19 @@ import {
5454
snapshot as snapshotImpl,
5555
navigation as navigationImpl,
5656
generateReport as generateReportImpl,
57+
agenticBrowsingConfig as agenticBrowsingConfigImpl,
5758
} from './lighthouse-devtools-mcp-bundle.js';
5859

60+
export const agenticBrowsingConfig = agenticBrowsingConfigImpl;
61+
5962
export const snapshot = snapshotImpl as (
6063
page: Page,
61-
options: {flags?: Flags},
64+
options: {flags?: Flags; config?: object},
6265
) => Promise<RunnerResult>;
6366
export const navigation = navigationImpl as (
6467
page: Page,
6568
url: string,
66-
options: {flags?: Flags},
69+
options: {flags?: Flags; config?: object},
6770
) => Promise<RunnerResult>;
6871
export const generateReport = generateReportImpl as (
6972
lhr: Result,

0 commit comments

Comments
 (0)