paperclip
Fail
Audited by Gen Agent Trust Hub on Sep 3, 2026
Risk Level: HIGHREMOTE_CODE_EXECUTIONCOMMAND_EXECUTIONINDIRECT_PROMPT_INJECTIONDATA_EXFILTRATIONCREDENTIALS_UNSAFE
Full Analysis
- [REMOTE_CODE_EXECUTION]: The skill instructions provide a command to download and execute a shell script from a remote vendor server:
curl -fsSL https://paperclip.gxl.ai/install.sh | bash. This is used to install thepaperclipCLI on the agent's environment. While the domain is associated with the skill's author (K-Dense Inc. / GXL), the practice of piping remote scripts directly to a shell carries inherent risks of arbitrary code execution. - [INDIRECT_PROMPT_INJECTION]: The skill is designed to ingest and process large volumes of third-party content, including biomedical literature, clinical trial protocols, and regulatory documents. This content constitutes untrusted external data that could contain adversarial instructions aimed at influencing the agent's behavior.
- Ingestion points: External papers and filings are retrieved via
paperclip search,grep,cat, andmapcommands. - Boundary markers: The skill relies on the agent's internal reasoning and specific instructions rather than strict data delimiters.
- Capability inventory: The skill has access to the
Bashtool and can write files to the local system. - Sanitization: There is no explicit sanitization of the retrieved text before it is presented to the agent.
- [COMMAND_EXECUTION]: The skill makes extensive use of the
Bashtool to interact with thepaperclipbinary and standard shell utilities likegrep,sed,head, andtail. It also provides instructions for sourcing environment variables from.envfiles using theset -a; . ./.env; set +apattern. - [DATA_EXFILTRATION]: The skill contains commands that allow for data egress, such as
paperclip upload(uploading local files to the vendor platform),paperclip share(granting access to document folders), andpaperclip fetch(downloading content from external URLs using browser cookies). The instructions provide specific guardrails, advising the agent to use these features only upon explicit user request and never for sensitive system directories. - [CREDENTIALS_UNSAFE]: The skill documentation describes the use of
PAPERCLIP_API_KEYfor authentication. It instructs the agent to store this key in a.envfile and source it into the environment, which is a standard practice for local CLI tools but requires careful management to avoid accidental exposure or commitment to version control.
Recommendations
- HIGH: Downloads and executes remote code from: https://paperclip.gxl.ai/install.sh - DO NOT USE without thorough review
Audit Metadata