TriviaBot Daily Trivia & Knowledge Quiz
PassAudited by VirusTotal on May 11, 2026.
Overview
Type: OpenClaw Skill Name: trivia-bot Version: 1.0.0 The TriviaBot skill bundle is a straightforward implementation of a daily quiz game. The core logic in `src/trivia-bot.js` handles question rotation, scoring, and local state persistence using standard Node.js file system operations (fs.readFileSync/writeFileSync) without any network requests, external dependencies, or suspicious execution patterns. The documentation in SKILL.md and README.md is consistent with the code's functionality and contains no evidence of prompt injection or malicious instructions.
Findings (0)
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.
