Files
oh-my-opencode/dist/features/builtin-skills/skills/playwright-cli.d.ts
T
2026-03-14 04:56:50 +00:00

11 lines
542 B
TypeScript

import type { BuiltinSkill } from "../types";
/**
* Playwright CLI skill — token-efficient CLI alternative to the MCP-based playwright skill.
*
* Uses name "playwright" (not "playwright-cli") because agents hardcode "playwright" as the
* canonical browser skill name. The browserProvider config swaps the implementation behind
* the same name: "playwright" gives MCP, "playwright-cli" gives this CLI variant.
* The binary is still called `playwright-cli` (see allowedTools).
*/
export declare const playwrightCliSkill: BuiltinSkill;