bootstrap-project
Warn
Audited by Gen Agent Trust Hub on May 8, 2026
Risk Level: MEDIUMCOMMAND_EXECUTIONEXTERNAL_DOWNLOADSREMOTE_CODE_EXECUTIONDATA_EXFILTRATION
Full Analysis
- [EXTERNAL_DOWNLOADS]: The skill clones a project template from the repository
https://github.com/eljun/kt-monorepo-template.git. This is an external source owned by the skill's author. - [REMOTE_CODE_EXECUTION]: The workflow runs
npm installin the cloned project directory, which executes any installation or lifecycle scripts defined in the template'spackage.json. Additionally, the skill usesnpx -y sanity@latestto execute remote code from the Sanity package registry. - [COMMAND_EXECUTION]: The skill executes multiple sensitive commands using CLIs like
gh,vercel,git, andnpm. Specifically, it usesgh repo create eljun/{slug}which hardcodes the GitHub namespace to the author's account (eljun), potentially creating the repository in an unintended location for the user. - [DATA_EXFILTRATION]: The skill pulls environment variables (potentially containing secrets) from Vercel using
vercel env pull .env.local. It then performs agit add .andgit push. If the provided template's.gitignorefile does not correctly exclude.env.local, these sensitive secrets would be uploaded to a remote GitHub repository. - [COMMAND_EXECUTION]: The skill uses
rm -rfto delete the.gitdirectory of the cloned template and performs text substitutions across the project files usinggrepand redirection, which are powerful filesystem operations.
Audit Metadata