todos-to-issues

todos-to-issues is a command for Claude Code from brennercruvinel/CCPlugins. It costs 0 tokens per session (1,121 once invoked), scanned B, original, MIT.

A command that turns TODO comments—notes about unfinished work—into GitHub issues, which are tracked work items in a code repository. It reads the project’s documentation and contribution rules before creating them.

In plain words
What is it for?
Use it to scan a codebase, understand its guidelines and issue templates, and create matching GitHub issues for the TODOs it finds.
Why use it?
It saves time writing issues and helps keep them consistent with the project’s existing standards. It also makes unfinished code work visible in the team’s normal tracking system.

Command for Claude Code

Written for Claude Code: a Claude Code command (commands/*.md). Also seen: mentions Claude Code.

About the project

CCPlugins is a collection of commands that extends the Claude Code command-line tool with structured development workflows. Developers use it to automate repetitive coding tasks, and the catalogue entries are its commands and related configuration.

brennercruvinel/CCPlugins · 2,780 stars · on GitHub

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/brennercruvinel/ccplugins/todos-to-issues
Clone the repo
git clone --depth 1 https://github.com/brennercruvinel/CCPlugins

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 todos-to-issues

README.md
[![agentmods](https://agentmods.dev/badge/commands/brennercruvinel/ccplugins/todos-to-issues.svg)](https://agentmods.dev/commands/brennercruvinel/ccplugins/todos-to-issues)
Your own site
<a href="https://agentmods.dev/commands/brennercruvinel/ccplugins/todos-to-issues"><img src="https://agentmods.dev/badge/commands/brennercruvinel/ccplugins/todos-to-issues.svg" alt="Measured on agentmods" 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 1,121 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. 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.00000 $0.01121
Opus 5 $0.00000 $0.00561
Sonnet 5 $0.00000 $0.00224
Haiku 4.5 $0.00000 $0.00112

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

Security

Grade B, and why

todos-to-issues scanned grade B with 1 finding 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.

Strips warnings and disclaimersmediumAnti-refusal

Omitting safety caveats hides risk from the user and is a common jailbreak preamble.

4. Verify code compiles without warnings
commands/todos-to-issues.md · 151 lines

How it starts

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

TODOs to GitHub Issues

I'll scan your codebase for TODO comments and create professional GitHub issues following your project's standards.

First, let me analyze your complete project context:

Documentation Analysis:

  • Read README.md for project overview and conventions
  • Read CONTRIBUTING.md for contribution guidelines
  • Read CODE_OF_CONDUCT.md for community standards
  • Read .github/ISSUE_TEMPLATE/* for issue formats
  • Read .github/PULL_REQUEST_TEMPLATE.md for PR standards
  • Read docs/ folder for technical documentation

Project Context:

  • Repository type (fork, personal, organization)
  • Main language and framework conventions
  • Testing requirements and CI/CD setup
  • Branch strategy and release process
  • Team workflow and communication style

For Forks - Remote Analysis:

# Get upstream repository info
git remote -v | grep upstream
# Fetch latest upstream guidelines
git fetch upstream main:upstream-main 2>/dev/null || true

I'll read upstream's CONTRIBUTING.md and issue templates to ensure compatibility.

Then verify GitHub setup:

# Check if we're in a git repository with GitHub remote
if ! git remote -v | grep -q github.com; then
    echo "Error: No GitHub remote found"
    echo "This command requires a GitHub repository"
    exit 1
fi

# Check for gh CLI
if ! command -v gh &> /dev/null; then
    echo "Error: GitHub CLI (gh) not found"
    echo "Install from: https://cli.github.com"
    exit 1
fi

# Verify authentication
if ! gh auth status &>/dev/null; then
    echo "Error: Not authenticated with GitHub"
    echo "Run: gh auth login"
    exit 1
fi

Now I'll scan for TODO patterns and analyze their context:

Using native tools for comprehensive analysis:

  • Grep tool to find TODO/FIXME/HACK patterns
  • Read tool to understand code context
  • Glob tool to check project structure

MANDATORY Pre-Checks: Before creating ANY GitHub issues, I MUST:

  1. Run build command - Must pass
  2. Run all tests - Must be green
  3. Run linter - No errors allowed
  4. Verify code compiles without warnings

If ANY check fails → I'll STOP and help fix it first!

I'll intelligently analyze each TODO:

  1. Understand the technical context and implementation
  2. Determine priority based on impact and location
  3. Group related TODOs for better organization
  4. Create professional issue titles and descriptions

For fork repositories:

  • Follow upstream contribution guidelines
  • Use their issue templates and conventions
  • Reference relevant upstream issues
  • Maintain compatibility with main project

For team/org repositories:

  • Apply company coding standards
  • Use established labels and milestones
  • Follow team workflow practices
  • Link to relevant documentation

Issue creation strategy:

  • Titles matching project's naming conventions
  • Descriptions following discovered templates
  • Labels from existing project taxonomy
  • Milestone alignment with project roadmap
  • Language style matching documentation tone

Smart Issue Type Detection: I'll analyze each TODO to determine the correct issue type:

Bug Issues (bug label):

  • TODO/FIXME about errors, crashes, incorrect behavior
  • Keywords: fix, bug, broken, error, crash, wrong, incorrect
  • Will include: steps to reproduce, expected vs actual behavior

Feature Requests (enhancement label):

  • TODO about new functionality or improvements
  • Keywords: add, implement, create, new, feature, support
  • Will include: use case, benefits, implementation approach

Documentation (documentation label):

  • TODO about missing or outdated docs
  • Keywords: document, docs, README, explain, describe
  • Will include: what needs documenting, why it's important

Performance (performance label):

  • TODO about optimization, speed, memory
  • Keywords: optimize, slow, performance, cache, improve
  • Will include: current metrics, expected improvement

Security (security label):

  • TODO about vulnerabilities, validation, auth
  • Keywords: security, validate, sanitize, auth, permission
  • Will include: risk level, potential impact

Read the full file on GitHub · 151 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 · 151 lines · 0 tokens per session scan B 1129d25a5d27

Subscribe to this mod's changes

todos-to-issues is a command published in the GitHub repository brennercruvinel/CCPlugins (2,780 stars, last pushed 2mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,121 tokens. A static security scan graded it B with 1 finding (strips warnings and disclaimers). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.