openclaw-skill-shorturl
Analysis
This appears to be a straightforward short-link generator, but it sends the provided URL to ShortURL.bot, so avoid using it with private or token-bearing links.
Findings (2)
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.
node shorturl/scripts/shorten.js <长网址> [域名] [自定义后缀] ... 依赖 ... - Node.js
The skill clearly documents that it runs a local Node.js script, but the registry metadata declares no required binaries. This is an under-declared runtime dependency, not a hidden install step.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
const apiUrl = 'https://www.shorturl.bot/api/urls/shorturl'; ... payload = JSON.stringify({ url: longUrl, domain: domain, backHalf: backHalf, memberId: memberId });The script sends the user-provided long URL and short-link options to an external provider. This is purpose-aligned for a URL shortener, but users should understand the data leaves their local environment.
