mcp-server-langgraph: Command for Claude Code

.claude/commands/todo-status.md

todo-status is a command for Claude Code from vishnu2kmohan/mcp-server-langgraph. It costs 12 tokens per session (2,016 once invoked), scanned A, original, MIT.

A report generator that scans TODO comments and project records, then tracks how unfinished work changes across Git commits. A burndown report shows whether remaining work is decreasing over time.

In plain words
What is it for?
Use it to list TODOs by priority and category, show their file locations and implementation status, review changes over time, and estimate completion progress.
Why use it?
It turns scattered TODO notes into a prioritised status view and provides history and trends instead of a one-time count.

Command for Claude Code

Written for Claude Code: installed under .claude/.

This is vishnu2kmohan/mcp-server-langgraph's own configuration. It tells Claude Code how to work on mcp-server-langgraph itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything mcp-server-langgraph configures →

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python scripts/workflow/todo-tracker.py --output /tmp/todo_scan.md.

Reuse

Borrowing it

Nothing to install: this file belongs to vishnu2kmohan/mcp-server-langgraph. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/vishnu2kmohan/mcp-server-langgraph/main/.claude/commands/todo-status.md
Clone the repo
git clone --depth 1 https://github.com/vishnu2kmohan/mcp-server-langgraph

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 todo-status

README.md
[![agentmods](https://agentmods.dev/badge/commands/vishnu2kmohan/mcp-server-langgraph/todo-status.svg)](https://agentmods.dev/commands/vishnu2kmohan/mcp-server-langgraph/todo-status)
Your own site
<a href="https://agentmods.dev/commands/vishnu2kmohan/mcp-server-langgraph/todo-status"><img src="https://agentmods.dev/badge/commands/vishnu2kmohan/mcp-server-langgraph/todo-status.svg" alt="Measured on agentmods" height="20"></a>
Per session 12 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,016 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.1 $0.00012 $0.02016
Opus 5 $0.00006 $0.01008
Sonnet 5 $0.00002 $0.00403
Haiku 4.5 $0.00001 $0.00202

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

Security

Grade A, and why

todo-status 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 6d 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/todo-status.md · 313 lines

How it starts

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

TODO Status Report (Enhanced)

Usage: /todo-status or /todo-status --burndown

Purpose: Generate comprehensive TODO status with git tracking and burndown analytics

Enhanced Features 🆕:

  • ✅ Git-based historical tracking
  • ✅ Burndown chart visualization
  • ✅ Velocity calculation
  • ✅ Trend analysis over time
  • ✅ Predicted completion date

📊 TODO Status Generation (Enhanced)

Step 1: Run Enhanced TODO Tracker

Execute the automated TODO tracker with git integration:

# Standard scan
python scripts/workflow/todo-tracker.py --output /tmp/todo_scan.md

# With historical tracking (recommended)
python scripts/workflow/todo-tracker.py --output /tmp/todo_scan.md --track-history

Captures:

  • All TODO comments in src/
  • Grouped by priority (CRITICAL/HIGH/MEDIUM/LOW)
  • Categorized by type (monitoring, compliance, testing, etc.)
  • File locations with line numbers
  • Git history of TODO changes 🆕
  • Historical counts by commit 🆕

Step 2: Read TODO Catalog

Read the current TODO catalog:

cat docs-internal/TODO_CATALOG.md

Analyzes:

  • Total items cataloged
  • Items by priority
  • Items by category
  • Implementation status
  • Deferred items

Step 3: Git History Analysis 🆕

Analyze TODO evolution using git:

# Count TODOs in recent commits (last 30 days)
git log --since="30.days.ago" --all --format="%H|%ad|%s" --date=short | while IFS='|' read hash date msg; do
    count=$(git show $hash:src/ 2>/dev/null | grep -r "TODO" | wc -l)
    echo "$date|$count|$msg"
done > /tmp/todo_history.txt

# Calculate velocity (TODOs resolved per day)
# Parse history and compute trend

Metrics Calculated:

  • TODOs resolved per day (velocity)
  • Average resolution rate (last 7/14/30 days)
  • Trend direction (improving/stable/worsening)
  • Projected completion date

Step 4: Enhanced Burndown Analysis 🆕

Generate visual ASCII burndown chart and comparison:

# Generate burndown visualization
python scripts/workflow/generate-burndown.py --days 30 --output /tmp/burndown.txt

Read the full file on GitHub · 313 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. 6d ago First seen · 313 lines · 12 tokens per session scan A d0a672f7d1df

Subscribe to this mod's changes

todo-status is a command published in the GitHub repository vishnu2kmohan/mcp-server-langgraph (4 stars, last pushed 6d ago), licensed MIT. It adds 12 tokens to every session and 2,016 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-08-31.