Jules, Google’s async coding agent, now has a command line feature. With Jules Tools, you will be able to build and debug using simple commands. It makes Jules programmable and customizable. You can write simple commands to control it. Here are just a few commands you can use:
- List all the repos:
jules remote list --repo
- Create a remote session in a repo:
jules remote new --repo torvalds/linux
- Pipe Github issues directly to Jules:
gh issue list --assignee @me --limit 1 --json title \
| jq -r '.[0].title' \
| jules remote new --repo .
Jules Tools can show you a dashboard view of tasks with the remote command. You can also use the new command to get create one step by step.
[HT]