When working with hundreds of repositories it would be helpful to be able to pass repos from a text file rather than having X args.
Current usage
npx @octoherd/cli -R octoherd/repo-a octoherd/repo-b octoherd/repo-c
Proposal
npx @octoherd/cli --from-file ./repo-list.txt
repo-list.txt
octoherd/repo-a 
octoherd/repo-b
octoherd/repo-c
To make working with the text file a breeze, lines starting with // or # will be ignored. I'm more than happy to submit a pull request for it if you think that would be a useful feature to have.