TriviaBot Daily Trivia & Knowledge Quiz
PassAudited by ClawScan on May 1, 2026.
Overview
This appears to be a simple trivia skill that stores only local score and streak data, with no evidence of network access, credential use, or destructive behavior.
This skill looks low risk from the provided artifacts. Before installing, be aware that it writes a local trivia-scores.json file for score and streak tracking; no external data transmission or credential use is shown.
Findings (1)
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.
Your trivia score and streak can remain on disk between sessions and may be visible or editable by anyone with access to that local file.
The skill stores score, total, streak, and bestStreak data in a local JSON file. This is expected for trivia streak tracking, but it is persistent local state.
this.dataFile = options.dataFile || './trivia-scores.json'; ... fs.writeFileSync(this.dataFile, JSON.stringify(this.data, null, 2));
Install only if you are comfortable with local score persistence; delete or protect the trivia-scores.json file if you want to reset or keep the data private.
