←back to thread

165 points gdudeman | 1 comments | | HN request time: 0.24s | source
Show context
flenserboy ◴[] No.44482473[source]
Has anyone tried this for command line applications? This could be a great way to develop some very specific/corner-case tools.
replies(1): >>44482615 #
simonw ◴[] No.44482615[source]
I write CLI tools with LLMs all the time. I even have a custom Claude Project that teaches the LLM to use inline script dependencies with uv so I can "uv run script.py" without first having to install anything else: https://simonwillison.net/2024/Dec/19/one-shot-python-tools/

I have a collection of tools I've built in this way here: https://tools.simonwillison.net/python/

replies(2): >>44482806 #>>44483052 #
1. flenserboy ◴[] No.44482806[source]
Very cool! Thank you.