PAI
Fail
Audited by Gen Agent Trust Hub on Feb 17, 2026
Risk Level: CRITICALREMOTE_CODE_EXECUTIONCOMMAND_EXECUTIONEXTERNAL_DOWNLOADSDATA_EXFILTRATIONCREDENTIALS_UNSAFE
Full Analysis
- [REMOTE_CODE_EXECUTION] (CRITICAL): Automated scanners confirmed a piped remote execution pattern:
curl -fsSL https://claude.ai/install.sh | bash. This method allows for arbitrary code execution from a remote source, bypassing manual verification of the script content. - [COMMAND_EXECUTION] (HIGH): Multiple utility tools use unsafe shell execution via
child_process.execandexecSyncwith string interpolation. Specifically: Tools/AddBg.ts: InterpolatesinputPathandoutputPathdirectly into a shell string for ImageMagick. While wrapped in quotes, these are not escaped, allowing subshell execution (e.g., using$(command)in a filename).Tools/GetTranscript.ts: UsesexecSyncwith a template literal for thefabriccommand without sanitizing theurlparameter.- [EXTERNAL_DOWNLOADS] (MEDIUM): The skill dynamically downloads and executes content from several sources:
Tools/GenerateSkillIndex.tsandTools/SkillSearch.tsmanage a dynamic index of skills.Tools/extract-transcript.pyandTools/ExtractTranscript.tsdownload AI models and interface with remote APIs (OpenAI Whisper).Tools/RemoveBg.tsdownloads processed images from the remove.bg API.- [DATA_EXFILTRATION] (MEDIUM): The skill is designed to handle sensitive user data (Financials, Contacts, SSH keys) and includes tools that send local data to external endpoints:
- Audio/Video files are sent to OpenAI for transcription.
- Image files are sent to
api.remove.bgfor background removal. - While these are intended features, they establish a pipeline for sensitive local data to leave the system.
- [CREDENTIALS_UNSAFE] (MEDIUM): Several tools (
RemoveBg.ts,YouTubeApi.ts,ExtractTranscript.ts) depend on API keys stored in a local.envfile (~/.claude/.env). While the skill includes aSecretScan.tstool, the overall architecture encourages the storage of long-lived secrets in plaintext on the filesystem.
Recommendations
- HIGH: Downloads and executes remote code from: https://claude.ai/install.sh - DO NOT USE without thorough review
- AI detected serious security threats
Audit Metadata