Use this skill when you need to publish, fetch, search, list, share, or watch AgentFiles artifacts from Codex, Claude Code, OpenClaw, or other agent runtimes...
Coding
jules
Try itManage 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.
What it does
Manage 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.
The skill document
Jules CLI
Use this skill to interact with Jules (jules), Google's autonomous AI coding agent for cloud-based asynchronous software engineering tasks.
Quick reference
| Goal | Command |
|---|---|
| Launch interactive TUI | jules |
| Delegate task (current repo) | jules new "task description" |
| Delegate task (specific repo) | jules new --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 |
| Pull and apply patch | jules remote pull --session --apply |
| Clone & apply in one step | jules teleport |
| Auth status & lifecycle | jules login / jules logout |
Core workflows
1. Delegating tasks
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"
2. Monitoring & inspecting progress
- List active and historical sessions:
jules remote list --session - Check connected GitHub/source repos:
jules remote list --repo - Launch dashboard TUI:
jules
3. Reviewing & applying changes
- Apply directly to existing checkout:
jules remote pull --session --apply - Inspect patch before applying:
jules remote pull --session > patch.diff git apply --check patch.diff - Fresh checkout (Teleport):
Teleport behavior:jules teleport- Inside a matching git repo: applies the patch to current workspace.
- Outside a repo: clones the repository, checks out the base branch, and applies the session patch automatically.
References
For detailed subcommands and automation patterns, load references/cli-reference.md.
Related skills
Curated toolkit for business productivity. Installation guides for 5 essential tools — Google Workspace CLI, task manager, notes, health checks, and security...
Delegate coding, repository analysis, file edits, test runs, or code review to the local Codex CLI without embedding an OpenAI API key. This skill was created to work with ChatGPT/Codex enterprise accounts that may not have the same level of API access. Invokes codex exec with existing ChatGPT/Codex CLI authentication and returns Codex's final output.
Search the user's past AI coding sessions with the deja CLI. Use when they say things like 'didn't we fix this before', 'what did we decide about X', or before re-debugging an error that may already be solved.
AI coding agent powered by CellCog Co-work. Code generation, debugging, refactoring, codebase exploration, terminal operations — executed directly on your machine. Lightweight with multimedia tools loaded on demand.
Jointly analyze a research paper and its open-source implementation. Use when a user wants to understand a paper through code, map theory/formulas/algorithms...