fire-todos

fire-todos is a command for coding agents from ThierryN/fire-flow. It costs 10 tokens per session (2,038 once invoked), scanned A, original, MIT.

A session-based todo manager for capturing ideas, issues, and tasks, then listing pending items by area. It stores pending and completed todos in project files.

In plain words
What is it for?
Use it to add todos, review all pending items, or filter them by an area such as an API.
Why use it?
It keeps newly discovered work from being forgotten or interrupting the task currently in progress.

Command

Part of the dominion-flow plugin — 5 skills, 51 commands, 15 agents shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add commands/thierryn/fire-flow/fire-todos
Clone the repo
git clone --depth 1 https://github.com/ThierryN/fire-flow

Or install dominion-flow, the plugin that ships this one along with the rest of its 5 skills, 51 commands, 15 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for fire-todos

README.md
[![agentmods](https://agentmods.dev/badge/commands/thierryn/fire-flow/fire-todos.svg)](https://agentmods.dev/commands/thierryn/fire-flow/fire-todos)
Your own site
<a href="https://agentmods.dev/commands/thierryn/fire-flow/fire-todos"><img src="https://agentmods.dev/badge/commands/thierryn/fire-flow/fire-todos.svg" alt="Measured on agentmods" height="20"></a>
Per session 10 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,038 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00010 $0.02038
Opus 5 $0.00005 $0.01019
Sonnet 5 $0.00002 $0.00408
Haiku 4.5 $0.00001 $0.00204

Measured yesterday against content hash 2b8752642529, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

fire-todos scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

commands/fire-todos.md · 336 lines

How it starts

The opening of the file, as written. The whole thing — 336 lines — stays where its author put it; the contents beside it link to each section on GitHub.

/fire-todos

Capture ideas and tasks during sessions, list pending todos, and select work


Purpose

Quick task capture and review system for ideas, issues, and tasks that surface during Dominion Flow sessions. Enables "thought -> capture -> continue" flow without losing context or derailing current work.

Commands:

  • /fire-todos add [description] - Capture a new todo
  • /fire-todos list [area] - List pending todos
  • /fire-todos (no args) - List all pending todos

Arguments

arguments:
  action:
    required: false
    type: string
    enum: [add, list]
    default: list
    description: "Action to perform"

  description:
    required: false
    type: string
    description: "For 'add': description of the todo. For 'list': optional area filter"

examples:
  - "/fire-todos" - List all pending todos
  - "/fire-todos add Fix auth token refresh" - Add a new todo
  - "/fire-todos list api" - List todos in 'api' area

Process: Add Todo

Step 1: Ensure Directory

mkdir -p .planning/todos/pending .planning/todos/done

Step 2: Check Existing Areas

ls .planning/todos/pending/*.md 2>/dev/null | xargs -I {} grep "^area:" {} 2>/dev/null | cut -d' ' -f2 | sort -u

Note existing areas for consistency.

Step 3: Extract Content

With arguments: Use as the title/focus.

  • /fire-todos add Fix auth token refresh -> title = "Fix auth token refresh"

Without arguments: Analyze recent conversation to extract:

  • The specific problem, idea, or task discussed
  • Relevant file paths mentioned
  • Technical details (error messages, line numbers)

Formulate:

  • title: 3-10 word descriptive title (action verb preferred)
  • problem: What's wrong or why this is needed
  • solution: Approach hints or "TBD" if just an idea
  • files: Relevant paths from conversation

Step 4: Infer Area

Path pattern Area
src/api/*, api/* api
src/components/*, src/ui/* ui
src/auth/*, auth/* auth
src/db/*, database/* database
tests/*, __tests__/* testing
docs/* docs
.planning/* planning
scripts/*, bin/* tooling
No files or unclear general

Read the full file on GitHub · 336 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 336 lines · 10 tokens per session scan A 2b8752642529

Subscribe to this mod's changes

fire-todos is a command published in the GitHub repository ThierryN/fire-flow (77 stars, last pushed 23d ago), licensed MIT. It adds 10 tokens to every session and 2,038 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.