Otaku Wiki
Analysis
This skill appears to do what it claims: run a local Python helper to query AniList for anime, character, and staff information, with no credentials, persistence, or hidden data handling evident.
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.
exec:运行 {baseDir}/anilist_cli.py(默认联网)The skill intentionally gives the agent an exec-based workflow to run the bundled helper script. This is narrow and aligned with the lookup purpose, but it is still local command execution.
metadata: {"moltbot":{"emoji":"📚","requires":{"bins":["python3"]}}}SKILL.md declares a python3 requirement and the documented commands use python3, while the registry requirement section lists no required binaries. This is a metadata completeness issue rather than evidence of unsafe behavior.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
ANILIST_GQL = "https://graphql.anilist.co"
The helper sends lookup queries to AniList’s external GraphQL endpoint. This is expected for the stated no-database AniList lookup purpose.
