Skip to main content

schedule

Reads backlog and produces work orders for the loop.

Jump to install

Source facts

Repository
poteto/noodle
Last source activity
March 1, 2026 at 21:46
Detected SKILL.md language
English
Stars
277
Forks
16

Install options

The review-first prompt is selected by default. You can switch to a direct command or download a local copy.

Review the source files

Read SKILL.md and any companion files shown by SkillsMP before deciding whether to install.

Showing SKILL.md

SKILL.md
Source instructions · Read-only preview
name
schedule
description
Reads backlog and produces work orders for the loop.
schedule
When orders are empty or after backlog changes
# Schedule Read `brain/todos.md` for backlog items. Write `.noodle/orders-next.json` with orders for each unchecked item. Each order has a single execute stage: ```json { "orders": [ { "id": "1", "title": "the backlog item title", "rationale": "unchecked backlog item ready for work", "status": "active", "stages": [ { "task_key": "execute", "skill": "execute", "provider": "claude", "model": "claude-sonnet-4-6", "runtime": "process", "status": "pending" } ] } ] } ``` When no unchecked items remain, write `{"orders": []}`.
View on GitHub