Skip to content

Commit 24b0807

Browse files
committed
chore: rephrase
1 parent 868e77c commit 24b0807

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/tools/lighthouse.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import {defineTool} from './ToolDefinition.js';
2121

2222
export const lighthouseAudit = defineTool({
2323
name: 'lighthouse_audit',
24-
description: `Get Lighthouse score and reports for accesibility, SEO and best practices.`,
24+
description: `Get Lighthouse score and reports for accessibility, SEO and best practices.`,
2525
annotations: {
2626
category: ToolCategory.DEBUGGING,
2727
readOnlyHint: true,
@@ -31,17 +31,17 @@ export const lighthouseAudit = defineTool({
3131
.enum(['navigation', 'snapshot'])
3232
.default('navigation')
3333
.describe(
34-
'"navigation" reloads the selected page and audits during the navigation. The "snapshot" mode analyzes the page in its current state.',
34+
'"navigation" reloads & audits. "snapshot" analyzes current state.',
3535
),
3636
device: zod
3737
.enum(['desktop', 'mobile'])
3838
.default('desktop')
39-
.describe('The device to emulate.'),
39+
.describe('Device to emulate.'),
4040
outputDirPath: zod
4141
.string()
4242
.optional()
4343
.describe(
44-
'The directory to output the reports to. If not provided, temporary files will be created.',
44+
'Directory for reports. If omitted, uses temporary files.',
4545
),
4646
},
4747
handler: async (request, response, context) => {

0 commit comments

Comments
 (0)