This TIL shows my workflow using ChatGPT - it includes prompts and process I used to quickly build a tool in Bash and jq for combining release notes from a GitHub repo, and shows how I then pipe those release notes to "llm" to answer questions about them https://til.simonwillison.net/jq/combined-github-release-notes
Discussion
Once you have a CLI tool for pulling release notes for a project, you can pipe them into LLM to use them to answer questions:
./combined-release-notes.sh simonw/llm | llm -s 'how do I install it'
https://til.simonwillison.net/jq/combined-github-release-notes#user-content-using-that-with-llm
