Implements TUS resumable upload protocol for files >6MB with advisory lock conflict handling.
80
100%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
High
Do not use without reviewing
Security
1 high severity finding. You should review these findings carefully before considering using this skill.
The skill handles credentials insecurely by requiring the agent to include secret values verbatim in its generated output. This exposes credentials in the agent’s context and conversation history, creating a risk of data exfiltration.
The skill's examples and steps explicitly instruct including an "Authorization: Bearer <access_token>" header in curl/HTTP requests, which requires the agent to insert the actual access token verbatim into generated commands/requests, creating an exfiltration risk.
<access_token>
secret · 3 sites
The skill explicitly instructs including an Authorization: Bearer <access_token> header in curl commands at three locations, requiring the agent to substitute a real access token that would be emitted in command lines.
SKILL.md
24
- `Authorization: Bearer <access_token>`
SKILL.md
35
-H "Authorization: Bearer <access_token>" \
SKILL.md
63
-H "Authorization: Bearer <access_token>"