dev
Pass
Audited by Gen Agent Trust Hub on May 4, 2026
Risk Level: SAFECOMMAND_EXECUTIONEXTERNAL_DOWNLOADSDATA_EXFILTRATION
Full Analysis
- [COMMAND_EXECUTION]: The skill executes various system and development commands through its scripts. It runs
portless,emulate,agent-browser, and the project's owndevscripts (viapnpm,npm,yarn, orbun). - Evidence:
scripts/boot.shconstructs and executes commands likeportless "${slug}" "${pkg_mgr}" run dev. - Mitigation: The script implements sanitization for the branch-based slug (using
trandcut) to prevent command injection via malicious branch names. - [EXTERNAL_DOWNLOADS]: The skill uses
npx --yes wait-onto poll the dev server's availability.npxdownloads the package from the npm registry at runtime if not locally cached. - Evidence: Found in
scripts/boot.shat line 231:npx --yes wait-on --httpTimeout 30000 --tlsCheck false "${base_url}". - [DATA_EXFILTRATION]: The
--funneland--liveflags utilizeportlessandtailscaleto expose the local development server to the public internet via a tunnel. - Evidence:
scripts/boot.shimplements these flags and provides a warning:⚠ funnel mode is PUBLIC on the internet. Anyone with the URL can reach the dev server. - Context: This is an intentional feature for sharing previews but represents a significant security surface if sensitive data or unauthenticated endpoints are exposed.
Audit Metadata