First use installs and executes a third-party package from PyPI
Source references: 4The installation step obtains `browser-act-cli` from an external package repository, after which the stub directs execution of its program. The package source is not included here, so its installation hooks and runtime behavior cannot be verified from this evidence.
Package code executed during installation or use receives the local privileges of the current user process. If the package or supply chain is compromised, it could access files, environment variables, and network resources available to that process.
The installation command retrieves the external `browser-act-cli` package through uv, after which the skill directs the agent to run its `browser-act` executable. The package implementation is not included, so its installation and runtime behavior cannot be verified from this submission. First-install confirmation reduces accidental installation risk but does not remove third-party-code risk.
version: "2.0.2" install: "uv tool install browser-act-cli --python 3.12" homepage: "https://www.browseract.com"Show 3 other places
user-confirmation-required: - "First-time install (uv tool install): downloads external package" - "Browser creation: requires explicit user approval"Install: `uv tool install browser-act-cli --python 3.12`This file is a discovery stub, not the usage guide. After loading thisskill, immediately run the following to get the actual workflow content:```bashbrowser-act get-skills core --skill-version 2.0.2```