Commitment Issues: A Tool That Analyzes and 'Buries' Unfinished GitHub Repos

A developer has created a web tool called Commitment Issues that analyzes GitHub repositories to determine if they're effectively dead projects, then generates a humorous 'burial' certificate for them. The tool is built on heuristics rather than machine learning.
How It Works
Users paste a GitHub repository URL into the tool, which then:
- Analyzes repository signals including commit frequency, last activity, and stars vs momentum
- Infers a likely "cause of death" for the project
- Generates a high-resolution death certificate
- Pulls the repository's "last words" from the final commit message
Development Process with Claude
The developer used Claude to:
- Explore different heuristics including time since last commit vs activity decay vs repository size
- Prototype the "death classification" logic before implementing it
- Debug inconsistent GitHub API responses, especially around forks and archived repositories
- Iterate on the tone so the output didn't feel generic or overfitted
Key Insights
The developer noted that Claude made it faster to test different approaches and edge cases without overengineering the solution. The "last words" feature proved particularly insightful, as many repositories end with commit messages like "fix later," "temporary hack," or "final commit before rewrite."
Availability
The tool is free to try at https://commitmentissues.dev/ with source code available at https://github.com/dotsystemsdevs/commitmentissues.
📖 Read the full source: r/ClaudeAI
👀 See Also

MCP Server Tracks Known Bugs in Dev Tools to Improve LLM Recommendations
nanmesh-mcp is an MCP server that crawls GitHub Issues, Stack Overflow, and Reddit to track real problems in 57 development tools, providing LLMs with current bug data before making library recommendations.

OpenPlawd: OpenClaw Skill for Automated Plaud Meeting Notes
OpenPlawd is an OpenClaw skill that automatically processes Plaud recordings into structured HTML meeting notes. It polls Plaud accounts hourly, transcribes with Whisper or OpenAI, chunks large files, and generates notes with action items via an OpenClaw agent.

VT Code: Open-Source Rust TUI Coding Agent with Multi-Provider Support and Agent Skills
VT Code is a Rust-based terminal UI (TUI) coding agent supporting Anthropic, OpenAI, Gemini, and Codex, with local inference via LM Studio and Ollama. It includes Agent Skills, Model Context Protocol, and Agent Client Protocol.

SymDex: Open-Source MCP Code Indexer Reduces AI Agent Token Usage
SymDex is an open-source MCP code indexer that pre-indexes codebases to help AI coding agents find functions and classes without reading entire files, reducing token usage by approximately 97% per lookup according to the developer's benchmarks.