Sendbl
Analysis
Sendbl appears to be a legitimate instruction-only file-link skill, but it uses a sensitive API key and can create, expose, or delete file-exchange links if misused.
Findings (6)
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 -sS -X DELETE "https://api.sendbl.com/v1/uploadLink?token=<owner_token>"
The skill exposes API operations through curl, including an irreversible delete operation. This is aligned with the stated file-link management purpose and the skill says to confirm first, but it can affect external user data.
"version": "1.0.2"
The supplied registry metadata says version 1.0.3 while the bundled _meta.json says 1.0.2, and the source is listed as unknown. There are no code files or install scripts, but the provenance/version mismatch is worth noticing.
curl -X PUT --data-binary @<local-file> "<presigned_upload_url>"
The skill instructs use of shell commands to upload a local file to a presigned URL. This is expected for the file-transfer purpose, but users should ensure the file path and destination are correct.
Removes the link and all uploaded files... Confirm with the user before calling — this is irreversible.
A single mistaken delete action can remove a link and all associated uploaded files. The skill appropriately calls for user confirmation, but the action is irreversible.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
create a personal access token... Treat this token as a password... export SENDBL_API_KEY="sk_pat_..."
The skill requires a Sendbl personal access token stored as an environment variable. This is clearly disclosed and necessary for the API, but it is still account-level sensitive authority.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
owner_token (keep — required for delete and list-files)... Always remind the user to save owner_token and upload_link_id
The skill handles owner tokens and file-access links that may appear in the conversation context. These are expected for Sendbl operations, but they are sensitive capability values.
