poteto/noodle

todo

>- Add, complete, or view items in the brain/todos.md backlog. Use when the user says "todo", "add a todo", "mark done", "what's on the backlog", "show todos", "list tasks", "check off", or wants to manage their task list.

First seen Mar 3, 2026

Installation

$ npx skills add poteto/noodle --skill todo

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from poteto/noodle · top by installs.

npx skills add poteto/noodle

Browse all from poteto/noodle

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 269
License LICENSE
Default branch main
Open issues 4
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,531 B
  • docs SUMMARY.md 231 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 77 installs

SKILL.md

Todo

Manage the project backlog at brain/todos.md. Edit the file directly with Edit/Write tools.

File Format

# Todos

<!-- next-id: 26 -->

## Section Name

1. [x] Completed item description
2. [ ] Open item description [[plans/02-some-plan/overview]]
  • Items are numbered markdown checkboxes: N. [ ] description or N. [x] description
  • Sections are ## Heading groups
  • <!-- next-id: N --> tracks the next available ID

Operations

Add an item

  1. Read <!-- next-id: N --> to get the next ID
  2. Append N. [ ] description to the target section
  3. Increment the next-id marker: <!-- next-id: N+1 -->

Mark done

Change [ ] to [x] and update the description with a reason:

2. [x] Old description — superseded by #75 channel UI redesign

Then move the done item from brain/todos.md to brain/archive/todos.md (create the file if it doesn't exist). Remove empty sections left behind.

Edit description

Replace the description text. Preserve any [[wikilinks]] unless intentionally removing them.

Rules

  • IDs are permanent. Never renumber or reuse them.
  • Always increment <!-- next-id --> when adding items.
  • Keep items in their section — don't move between sections without being asked.