UNPKG

browse

Version:

Unified Browserbase CLI for browser automation and cloud APIs.

13 lines (12 loc) 447 B
import { BrowseCommand } from "../../base.js"; import { installBundledCliSkill } from "../../lib/skills/install.js"; export default class SkillsInstall extends BrowseCommand { static description = "Install the bundled browse CLI skill."; static examples = ["browse skills install"]; async run() { const exitCode = await installBundledCliSkill(); if (exitCode !== 0) { this.exit(exitCode); } } }