Proton Pass CLI
Analysis
This appears to be a Proton Pass CLI reference, but it gives broad password-vault and account-changing authority that should be reviewed carefully before use.
Findings (3)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
Supports vault/item CRUD, sharing, member management, SSH agent operations, TOTP generation, secret references (pass://vault/item/field), template injection, and command execution with secrets.
The skill documents broad operations that can change vault contents, share access, operate SSH credentials, generate OTPs, and run commands with injected secrets. The provided instructions do not add clear approval or scoping rules for these high-impact actions.
curl -fsSL https://proton.me/download/pass-cli/install.sh | bash ... Invoke-WebRequest -Uri https://proton.me/download/pass-cli/install.ps1 -OutFile install.ps1; .\install.ps1
The install instructions use remote installer scripts. This is a common, user-directed setup pattern for CLI tools, but it means the user should verify the source before running it.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
export PROTON_PASS_PASSWORD='your-password' export PROTON_PASS_TOTP='123456' export PROTON_PASS_EXTRA_PASSWORD='your-extra-password' pass-cli login --interactive user@proton.me
The skill instructs users how to provide Proton account authentication factors, including plain-text environment variables for automation. Those credentials can unlock password-manager vault data, while the registry metadata declares no primary credential or required environment variables.
