TODO file format and operations
Scanned 9/3/2026
Install to Claude Code
npx -y skills add istota-project/istota --skill todos --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Todos?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/istota-project-todos)More formats (shields.io, HTML) on the badges page.
---
name: todos
triggers: [todo, task, checklist, reminder, done, complete]
description: TODO file format and operations
---
TODO files are plain text with a simple format. Each line is a task:
```
- [ ] Uncompleted task
- [x] Completed task
- [ ] Task with @due(2025-01-30)
- [ ] Task with @priority(high)
```
When reading/updating TODO files, use standard file operations:
```bash
# Read the TODO file
cat {workspace}/path/to/TODO.txt
# Add a task
echo "- [ ] New task" >> {workspace}/path/to/TODO.txt
# Edit in place (changes save directly to your workspace)
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!