convert-to-todowrite-tasklist-prompt

convert-to-todowrite-tasklist-prompt is a command for Claude Code from centminmod/my-claude-code-setup. It costs 0 tokens per session (5,349 once invoked), scanned A, original, MIT.

A command that turns a long, context-heavy slash command into a shorter task-list workflow with parallel work by subagents.

In plain words
What is it for?
It reads an original command, identifies opportunities for conversion, handles file and analysis arguments, and produces an optimized command with task delegation.
Why use it?
It organizes complex instructions into clear steps and is intended to reduce repeated context and execution time.

Command for Claude Code

Written for Claude Code: installed under .claude/. Also seen: mentions subagents; names the TodoWrite tool.

Good fit It reads an original command, identifies opportunities for conversion, handles file and analysis arguments, and produces an optimized command with task delegation.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/centminmod/my-claude-code-setup/convert-to-todowrite-tasklist-prompt
About the project

my-claude-code-setup is a starter configuration and memory-bank template for Claude Code, providing project guidance and reusable setup for Claude Code sessions. Developers use it to organize Claude Code behavior, memory, commands, skills, subagents, hooks, and settings. The catalogue entries are components of this Claude Code workflow.

centminmod/my-claude-code-setup · 2,625 stars · on GitHub · threads.com

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.

Clone the repo
git clone --depth 1 https://github.com/centminmod/my-claude-code-setup

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 convert-to-todowrite-tasklist-prompt

README.md
[![agentmods](https://agentmods.dev/badge/commands/centminmod/my-claude-code-setup/convert-to-todowrite-tasklist-prompt/github.svg)](https://agentmods.dev/commands/centminmod/my-claude-code-setup/convert-to-todowrite-tasklist-prompt)
Your own site
<a href="https://agentmods.dev/commands/centminmod/my-claude-code-setup/convert-to-todowrite-tasklist-prompt"><img src="https://agentmods.dev/badge/commands/centminmod/my-claude-code-setup/convert-to-todowrite-tasklist-prompt/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 convert-to-todowrite-tasklist-prompt

Your own site · 80×15
<a href="https://agentmods.dev/commands/centminmod/my-claude-code-setup/convert-to-todowrite-tasklist-prompt"><img src="https://agentmods.dev/badge/commands/centminmod/my-claude-code-setup/convert-to-todowrite-tasklist-prompt.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 5,349 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.
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.00000 $0.05349
Opus 5 $0.00000 $0.02674
Sonnet 5 $0.00000 $0.01070
Haiku 4.5 $0.00000 $0.00535

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

Security

Grade A, and why

convert-to-todowrite-tasklist-prompt 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 10d ago.

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.

.claude/commands/anthropic/convert-to-todowrite-tasklist-prompt.md · 595 lines

How it starts

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

Convert Complex Prompts to TodoWrite Tasklist Method

Purpose: Transform verbose, context-heavy slash commands into efficient TodoWrite tasklist-based methods with parallel subagent execution for 60-70% speed improvements.

Usage: /convert-to-todowrite-tasklist-prompt @/path/to/original-slash-command.md


CONVERSION EXECUTION

Step 1: Read Original Prompt

File to Convert: $ARGUMENT

First, analyze the original slash command file to understand its structure, complexity, and conversion opportunities.

Step 2: Apply Conversion Framework

Transform the original prompt using the TodoWrite tasklist method with parallel subagent optimization.

Step 3: Generate Optimized Version

Output the converted slash command with efficient task delegation and context management.


Argument Variable Integration

When converting slash commands, ensure proper argument handling for dynamic inputs:

Standard Argument Variables

## ARGUMENT HANDLING

**File Input**: {file_path} or {code} - The primary file(s) or code to analyze
**Analysis Scope**: {scope} - Specific focus areas (security, performance, quality, architecture, all)
**Output Format**: {format} - Report format (detailed, summary, action_items)
**Target Audience**: {audience} - Intended audience (technical, executive, security_team)
**Priority Level**: {priority} - Analysis depth (quick, standard, comprehensive)
**Context**: {context} - Additional project context and constraints

### Usage Examples:
```bash
# Basic usage with file input
/comprehensive-review file_path="@src/main.py" scope="security,performance"

# Advanced usage with multiple parameters  
/comprehensive-review file_path="@codebase/" scope="all" format="detailed" audience="technical" priority="comprehensive" context="Production deployment review"

# Quick analysis with minimal scope
/comprehensive-review file_path="@config.yaml" scope="security" format="summary" priority="quick"

Argument Integration in TodoWrite Tasks

Dynamic Task Content Based on Arguments:

[
  {"id": "setup_analysis", "content": "Record start time and initialize analysis for {file_path}", "status": "pending", "priority": "high"},
  {"id": "security_analysis", "content": "Security Analysis of {file_path} - Focus: {scope}", "status": "pending", "priority": "high"},
  {"id": "report_generation", "content": "Generate {format} report for {audience}", "status": "pending", "priority": "high"}
]

Conversion Analysis Framework

Step 1: Identify Context Overload Patterns

Context Overflow Indicators:

  •  Massive Instructions: >1000 lines of detailed frameworks and methodologies
  •  Upfront Mass File Loading: Attempting to load 10+ files simultaneously with @filename syntax
  •  Verbose Framework Application: Extended thinking sections, redundant validation loops
  •  Sequential Bottlenecks: All analysis phases running one after another instead of parallel
  •  Redundant Content: Multiple repeated frameworks, bias detection, steel man reasoning overengineering

Success Patterns to Implement:

  •  Task Tool Delegation: Specialized agents for bounded analysis domains
  •  Progressive Synthesis: Incremental building rather than simultaneous processing
  •  Parallel Execution: Multiple subagents running simultaneously
  •  Context Recycling: Fresh context for each analysis phase
  •  Strategic File Selection: Phase-specific file targeting

Step 2: Task Decomposition Strategy

Convert Monolithic Workflows Into:

  1. Setup Phase: Initialization and timestamp recording
  2. Parallel Analysis Phases: 2-4 specialized domains running simultaneously
  3. Synthesis Phase: Consolidation of parallel findings
  4. Verification Phase: Quality assurance and validation
  5. Completion Phase: Final integration and timestamp

Example Decomposition:

BEFORE (Sequential):
Security Analysis (10 min) � Performance Analysis (10 min) � Quality Analysis (10 min) = 30 minutes

Read the full file on GitHub · 595 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. 10d ago First seen · 595 lines · 0 tokens per session scan A 762904699bb7

Subscribe to this mod's changes

convert-to-todowrite-tasklist-prompt is a command published in the GitHub repository centminmod/my-claude-code-setup (2,625 stars, last pushed 7d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 5,349 tokens. 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-30.