Youtube Reporter by CreatorDB
Analysis
The skill is a coherent CreatorDB API reference for looking up YouTube creator data, with only purpose-aligned notes about using curl, an API key, and an external service.
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.
curl --request POST \ --url https://apiv3.creatordb.app/youtube/search
The skill documents user-directed curl calls to CreatorDB. This is expected for an API lookup skill, but users should know that searches and channel IDs are sent to an external service.
metadata: {"moltbot":{"emoji":"🐽","requires":{"bins":["curl"],"env":["CREATORDB_API_KEY"]},"primaryEnv":"CREATORDB_API_KEY","install":[]}}SKILL.md declares a curl and API-key requirement, while the registry fields list no required binaries or environment variables. This appears to be an under-declaration rather than hidden behavior because the commands plainly show curl and the API key.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
--header "api-key: $CREATORDB_API_KEY"
The API examples authenticate with a CreatorDB API key. This is purpose-aligned for the CreatorDB service and there is no artifact evidence of logging, hardcoding, or unrelated credential use.
