Recommended setup executes an unpinned remote package and installs globally
Source references: 3`npx -y ...@latest` automatically accepts and executes the registry's current release. The flow then installs the CLI and multiple Skills globally across every detected coding editor, extending beyond the current project.
A compromised release, publisher account, or dependency chain could execute arbitrary code during setup. Even a legitimate package makes persistent global changes across multiple editors.
The recommended command uses `-y` to automatically accept and execute the registry's current latest release. The documentation says it globally installs the CLI and multiple Skills across all detected coding editors, so a problematic package or installer could affect more than the current project.
```bashnpx -y firecrawl-cli@latest init -y --browser```Show 2 other places
This installs `firecrawl-cli` globally, authenticates via browser, and installs core and workflow skills. Build skills are a separate step: `firecrawl setup build`.Skills are installed globally across all detected coding editors by default.