Automatically installs and executes an unpinned npm package globally
Source references: 2The prerequisite installs `just-scrape@latest` globally when the CLI is absent, then runs it. `latest` is mutable, and global installation changes the current user's tool environment. The supplied material contains usage instructions but not the installed package implementation for this audit to verify.
If the npm package or a dependency is compromised at installation time, install scripts or the subsequently executed CLI could access or alter files, environment variables, and credentials with the user's permissions.
If the CLI is absent, the Skill globally installs `just-scrape@latest` and immediately runs it. `latest` changes over time, and a global install modifies the user's command-line environment. The supplied source does not include the npm package implementation, so its install scripts and runtime behavior cannot be audited here. The user can require a pinned, verified version installed in an isolated, non-global environment.
Must be installed and authenticated. Check with `just-scrape validate` and `just-scrape credits`.```bashcommand -v just-scrape >/dev/null 2>&1 || npm install -g just-scrape@latestjust-scrape validatejust-scrape credits```Show 1 other places
- **CLI not found**: Install with `npm install -g just-scrape@latest` or run with `npx just-scrape@latest`- **Auth fails**: Set `SGAI_API_KEY`, then run `just-scrape validate`- **Empty or incomplete page**: Retry with `--mode js`, then add `--stealth` or `--scrolls <n>` if needed