cleanproject
I'll help clean up development artifacts while preserving your working code.
I'll scan your codebase for TODO comments and create professional GitHub issues following your project's standards.
How it fires
How this command gets triggered: by you, by Claude, or both.
/todos-to-issuesContext preview
What this command does when you run it.
I'll scan your codebase for TODO comments and create professional GitHub issues following your project's standards.
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:**
**Project Context:**
**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
fiNow I'll scan for TODO patterns and analyze their context:
Using native tools for comprehensive analysis:
**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:**
**For team/org repositories:**
**Issue creation strategy:**
**Smart Issue Type Detection:** I'll analyze each TODO to determine the correct issue type:
**Bug Issues** (bug label):
**Feature Requests** (enhancement label):
**Documentation** (documentation label):
**Performance** (performance label):
**Security** (security label):
**Technical Debt** (tech-debt label):
**Chore/Maintenance** (chore label):
I'll also:
I'll handle rate limits and show you a summary of all created issues.
**Important**: I will NEVER:
This helps convert your development notes into trackable work items.
Best Claude Code framework that actually save time. Built by a dev tired of typing "please act like a senior engineer" in every conversation.
Repo: notlikeDev/CCPlugins
I'll help clean up development artifacts while preserving your working code.
I'll analyze recent operations and create contextual TODO comments in your code.
I'll intelligently manage your project documentation by analyzing what actually happened and updating ALL relevant docs accordingly.
I'll explain this code as a senior developer would, focusing on the why behind decisions.
I'll locate all TODO comments and unfinished work markers in your codebase.