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

onWatch: Open-source local API quota tracker with SQLite storage
onWatch is a local-first API quota tracker that stores all data in a local SQLite database with no cloud service, telemetry, or account creation. It's a single binary (~13MB) that runs as a background daemon using <50MB RAM and serves a dashboard on localhost.

Brainstorm MCP Server Lets Claude Code Consult Other LLMs for Better Answers
A developer built an MCP server that enables Claude Code to consult with other AI models like GPT-5.2 and DeepSeek before providing answers. The models engage in multi-round debates where they read each other's responses, disagree, and refine positions to converge on better solutions.

First-Tree: Open-Source Daemon That Uses Claude Code to Triage GitHub Notifications While You Sleep
An open-source menu bar daemon that uses Claude Code to autonomously triage GitHub notifications – it handled 98 out of 100 notifications in a recent scan, leaving only 2 for human review.

Definable AI adds self-hosted observability dashboard with single flag
Definable AI, an open-source Python framework for building AI agents, now includes a built-in observability dashboard that can be enabled with one flag. The dashboard provides real-time event streaming, token accounting, latency metrics, and run replay without external dependencies.