Tiny CLI turns messy GitHub issues into implementation plans

A developer built issue-to-plan, a small Python that takes a vague or task description and turns it into two things: a structured meant for humans to read, and a ready-to-use prompt for AI tools like ChatGPT, Claude, Cursor, and Codex. For example, typing in something like "add dark mode to settings page" produces both a plan document and a matching AI prompt.

The tool does not call any AI API itself — it works by filling in fixed, templates rather than generating anything with a model. It is currently at version 0.1, and the creator is unsure whether to keep developing it or stop here, asking the community whether people would actually use this instead of just pasting an issue straight into an LLM.

Key points

  • issue-to-plan is a Python CLI that converts vague into structured
  • Generates both a human-readable plan and an AI-ready prompt for ChatGPT, Claude, Cursor, and Codex
  • Uses fixed templates only — it does not call any AI API
  • Currently at version 0.1; creator is asking the community whether to keep developing it
  • Source code is public on GitHub
Read original