integrate-todo-list

integrate-todo-list is a skill for Claude Code from cognitedata/builder-skills. It costs 46 tokens per session (1,314 once invoked), scanned A, original, Apache-2.0.

A development skill for adding a structured task list to a Flows app with Atlas chat. The AI agent can create and update tasks while it works, and the app can show that progress to the user.

In plain words
What is it for?
Use it to add task tracking, progress updates, and task results to an Atlas-powered chat app.
Why use it?
It makes multi-step agent work visible and organized instead of leaving users to guess what has been done. It also supplies the task-list integration and interface pieces.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: names the TodoWrite tool.

Good fit Use it to add task tracking, progress updates, and task results to an Atlas-powered chat app.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/cognitedata/builder-skills/integrate-todo-list
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.

Any agent
npx skills add cognitedata/builder-skills --skill integrate-todo-list
Clone the repo
git clone --depth 1 https://github.com/cognitedata/builder-skills

Made for: Claude Code.

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 integrate-todo-list

README.md
[![agentmods](https://agentmods.dev/badge/skills/cognitedata/builder-skills/integrate-todo-list/github.svg)](https://agentmods.dev/skills/cognitedata/builder-skills/integrate-todo-list)
Your own site
<a href="https://agentmods.dev/skills/cognitedata/builder-skills/integrate-todo-list"><img src="https://agentmods.dev/badge/skills/cognitedata/builder-skills/integrate-todo-list/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for integrate-todo-list

Your own site · 80×15
<a href="https://agentmods.dev/skills/cognitedata/builder-skills/integrate-todo-list"><img src="https://agentmods.dev/badge/skills/cognitedata/builder-skills/integrate-todo-list.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 46 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,314 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • Socket pass 8 May 2026
  • Snyk pass 8 May 2026
How audits are shown
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.1 $0.00046 $0.01314
Opus 5 $0.00023 $0.00657
Sonnet 5 $0.00009 $0.00263
Haiku 4.5 $0.00005 $0.00131

Measured 7d ago against content hash 61b825e2094d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

integrate-todo-list 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 7d ago.

The scan reads SKILL.md. This mod also ships 4 executable files (code/todoWriteTool.ts, code/types.ts, code/useTodoList.ts, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

skills/integrate-todo-list/SKILL.md · 157 lines

How it starts

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

Integrate Todo List

Add a TodoWrite tool and panel so the in-app Atlas agent can show task progress.

Skip if the app uses the Atlas / EOS sidebar (integrate-fusion-agent). Prerequisite: useAtlasChat + src/atlas-agent/ + @sinclair/typebox from integrate-atlas-chat.


Step 1 — Read the app

Before writing anything, read:

  • package.json — confirm @tabler/icons-react is installed; if not, install it with the app's package manager
  • src/App.tsx — find where to add TodoProvider
  • The file that calls useAtlasChat (likely src/chat/useChatViewModel.ts or src/App.tsx) — this is where the tool gets wired
  • The chat view component that renders messages — this is where TodoPanel and TodoToolResultCard go

Step 2 — Create the src/todo/ module

Find the skill directory by running find . -path "*/.agents/skills/integrate-todo-list/code" -type d from the project root.

Read each file from <skill-dir>/code/ and write it into src/todo/ with the same filename:

File Purpose
types.ts TodoItem and TodoList types
TodoContext.tsx React context + TodoProvider
useTodoList.ts Hook to read/write the todo list
todoWriteTool.ts createTodoWriteTool factory — AtlasTool with full CDF task-decomposition guidance
useTodoWriteTool.ts Hook that memoizes the tool with current state access
TodoPanel.tsx Card UI: progress bar + task rows
TodoItemRow.tsx Single row with animated status icons
TodoToolResultCard.tsx Compact summary card for tool call display

All files use relative imports (./types, ./TodoContext, etc.) — no changes needed.


Step 3 — Wrap the app in TodoProvider

In src/App.tsx (or the root component), wrap the existing tree with <TodoProvider>:

import { TodoProvider } from './todo/TodoContext'; // adjust path to match app conventions

function App() {
  return (
    <TodoProvider>
      {/* existing children */}
    </TodoProvider>
  );
}

Read the full file on GitHub · 157 lines

Files

What ships with it

8 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 7d ago Changed · -2 lines · -59 tokens per session 61b825e2094d
  2. 11d ago First seen · 159 lines · 105 tokens per session scan A 63ae73d45969

Subscribe to this mod's changes

integrate-todo-list is a skill published in the GitHub repository cognitedata/builder-skills (6 stars, last pushed 3d ago), licensed Apache-2.0. It adds 46 tokens to every session and 1,314 once invoked, about $0.0002 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-08-31.

Related

Other skills, from other repositories