Sentry Cli
Analysis
This is a straightforward Sentry CLI reference, but it uses Sentry credentials and includes commands that can upload files or change Sentry issue/release state.
Findings (4)
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.
curl -sL https://sentry.io/get-cli/ | bash
The skill documents a user-directed remote installer command without a pinned version or checksum. This is a common CLI install pattern but should be verified before use.
sentry-cli issues resolve ISSUE_ID sentry-cli issues mute ISSUE_ID
The skill includes account-mutating Sentry issue-management commands. These fit the stated purpose but can change issue state if run against the wrong issue or project.
sentry-cli sourcemaps upload ./dist --release="$VERSION" sentry-cli debug-files upload --include-sources path/to/dSYMs sentry-cli send-event -m "Error" --logfile /var/log/app.log
The skill documents commands that upload local build artifacts, sources, and log files to Sentry. This is expected for Sentry debugging workflows but can include sensitive code or operational data.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
export SENTRY_AUTH_TOKEN="sntrys_..." [auth] token=sntrys_...
The skill expects use of a Sentry auth token, either from the environment or .sentryclirc. This is purpose-aligned but grants whatever Sentry permissions the token has.
