benchmarks/benign/todo-app/SKILL.md
A simple todo list manager that stores tasks in a local JSON file.
npx skillsauth add mohibshaikh/clawvet todo-appInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Manage your todos with simple commands:
const fs = require('fs');
const path = require('path');
const TODO_FILE = path.join(process.cwd(), 'todos.json');
function loadTodos() {
if (!fs.existsSync(TODO_FILE)) return [];
return JSON.parse(fs.readFileSync(TODO_FILE, 'utf8'));
}
function saveTodos(todos) {
fs.writeFileSync(TODO_FILE, JSON.stringify(todos, null, 2));
}
development
Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
tools
Create a git commit with a contextual message based on current changes, then push the branch.
development
Formats and lints markdown files for consistency.
tools
Provides shortcuts for common git operations.