ia-file-todos

Solid

File-based todo and task tracking in the todos/ directory. Use when creating, triaging, listing, or managing todo files, tracking work items, managing the backlog, converting PR comments to tracked tasks, or checking todo status and dependencies.

Data & Documents 33 stars 3 forks Updated 3 days ago MIT

Install

View on GitHub

Quality Score: 85/100

Stars 20%
51
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# File-based todo tracking ## File naming convention ``` {issue_id}-{status}-{priority}-{description}.md ``` - **issue_id**: Sequential number (001, 002, 003...) -- never reused - **status**: `pending` (needs triage), `ready` (approved), `complete` (done) - **priority**: `p1` (critical), `p2` (important), `p3` (nice-to-have). Mapping from the `ia-code-review` severity scale: Critical→p1, Important→p2, Medium→p3, Minor→p3. - **description**: kebab-case, brief description Examples: `001-pending-p1-mailer-test.md`, `002-ready-p1-fix-n-plus-1.md`, `005-complete-p2-refactor-csv.md` ## File Structure Use [todo-template.md](./assets/todo-template.md) as a starting point. YAML frontmatter: ```yaml --- status: ready # pending | ready | complete priority: p1 # p1 | p2 | p3 issue_id: "002" tags: [typescript, performance, database] dependencies: ["001"] # Issue IDs this is blocked by --- ``` **Required sections:** Problem Statement, Findings, Proposed Solutions, Recommended Action, Acceptance Criteria, Work Log **Optional sections:** Technical Details, Resources, Notes ## Key Distinctions **File-todos system (this skill):** Markdown files in `todos/` directory for development/project tracking. Used by humans and agents. **Application Todo model:** Database model for user-facing task management. Different from this file-based system. **TodoWrite tool:** In-memory task tracking during agent sessions. Temporary, not persisted to disk. ## Verify ...

Details

Author
iliaal
Repository
iliaal/whetstone
Created
6 months ago
Last Updated
3 days ago
Language
Python
License
MIT

Integrates with

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category