Install
openclaw skills install @wei840222/julesManage and automate coding tasks with Jules, Google's autonomous AI coding agent CLI. Use when delegating repository tasks, tracking remote sessions, reviewing/applying patches, or using teleport.
openclaw skills install @wei840222/julesUse this skill to interact with Jules (jules), Google's autonomous AI coding agent for cloud-based asynchronous software engineering tasks.
| Goal | Command |
|---|---|
| Launch interactive TUI | jules |
| Delegate task (current repo) | jules new "task description" |
| Delegate task (specific repo) | jules new --repo <owner/repo> "task description" |
| Run parallel attempts | jules new --parallel <1-5> "task description" |
| Pipe prompt from stdin | cat task.md | jules new |
| List remote sessions | jules remote list --session |
| List connected repos | jules remote list --repo |
| Pull patch | jules remote pull --session <id> |
| Pull and apply patch | jules remote pull --session <id> --apply |
| Clone & apply in one step | jules teleport <id> |
| Auth status & lifecycle | jules login / jules logout |
Delegate async work without waiting in the terminal:
# Current repo auto-detected
jules new "Fix flaky unit test in auth_test.go"
# Specific remote repo
jules new --repo org/backend "Upgrade dependency X to v2 and fix breaking changes"
# Generate 3 candidate approaches in parallel
jules new --parallel 3 "Refactor caching layer to use Redis cluster"
jules remote list --sessionjules remote list --repojulesjules remote pull --session <id> --apply
jules remote pull --session <id> > patch.diff
git apply --check patch.diff
jules teleport <id>
For detailed subcommands and automation patterns, load references/cli-reference.md.