CLI that turns LLM input into well-formatted Conventional Commits
0

Configure Feed

Select the types of activity you want to include in your feed.

docs(collab): add section

Amolith (Oct 22, 2025, 7:02 PM -0600) 22608c9f 8d3c72b0

+29
+29
README.md
··· 61 61 </formatted-commit_example> 62 62 ``` 63 63 64 + ## Contributions 65 + 66 + Patch requests are in [amolith/llm-projects] on [pr.pico.sh]. You don't need a 67 + new account to contribute, you don't need to fork this repo, you don't need to 68 + fiddle with `git send-email`, you don't need to faff with your email client to 69 + get `git request-pull` working... 70 + 71 + You just need: 72 + 73 + - Git 74 + - SSH 75 + - An SSH key 76 + 77 + ```sh 78 + # Clone this repo, make your changes, and commit them 79 + # Create a new patch request with 80 + git format-patch origin/main --stdout | ssh pr.pico.sh pr create amolith/llm-projects 81 + # After potential feedback, submit a revision to an existing patch request with 82 + git format-patch origin/main --stdout | ssh pr.pico.sh pr add {prID} 83 + # List patch requests 84 + ssh pr.pico.sh pr list amolith/llm-projects 85 + ``` 86 + 87 + See "How do Patch Requests work?" on [pr.pico.sh]'s home page for a more 88 + complete example workflow. 89 + 90 + [amolith/llm-projects]: https://pr.pico.sh/r/amolith/llm-projects 91 + [pr.pico.sh]: https://pr.pico.sh 92 + 64 93 ## Usage 65 94 66 95 ```text