todo-app
A simple todo list manager that stores tasks in a local JSON file.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
A simple todo list manager that stores tasks in a local JSON file.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Code quality and safety linter for OpenClaw skills. Runs 6 analysis passes before you install.
Verify a clawvet release is actually consistent across npm, git tags, GitHub Releases, ClawHub, and the Claude plugin marketplace. Use before cutting a release, after publishing, or whenever a version looks stale anywhere.
Vet any OpenClaw skill for prompt injection, credential theft, and RCE before you install it. Runs a clawvet scan and blocks risky installs.
Creates the directories used by this skill.
Prepares the local environment for other skills.
Reviews public social evidence packets before operator-approved actions.
| name | todo-app |
| description | A simple todo list manager that stores tasks in a local JSON file. |
| version | 1.0.0 |
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));
}