← ClaudeAtlas

google-jules-controllisted

Control Google's Jules coding agent through the Jules REST API or the Jules Tools CLI. Use when the user wants Codex to ask Jules to do coding work, start or continue a Jules session, approve a Jules plan, check Jules status or activities, export Jules results, cancel a Jules run, or pull back work for a GitHub-connected repository. Typical triggers include requests such as "run this in Jules", "ask Jules to fix it", "continue the Jules session", "show the latest Jules activity", "approve the Jules plan", and "export the Jules session summary".
Laurenfeminine36/google-jules-skill · ★ 0 · AI & Automation · score 62
Install: claude install-skill Laurenfeminine36/google-jules-skill
# Google Jules Control Use this skill to delegate coding work to Google Jules from an agentic workflow. Prefer the bundled API helper for deterministic automation. Prefer the official `jules` CLI when the user wants repo inference from the current directory, an authenticated terminal workflow, or to pull changes locally. ## Quick Start 1. Verify one control path is available. - API path: put `JULES_API_KEY` in a `.env` file from `https://jules.google.com/settings`. - CLI path: install `@google/jules`, then run `jules login`. - Health check: run `python3 scripts/jules_api.py doctor --compact`. 2. Discover the target repository/source. - API path: run `python3 scripts/jules_api.py repo-to-source --repo owner/repo --compact` or `python3 scripts/jules_api.py list-sources`. - CLI path: run `jules remote list --repo` or use `jules remote new --repo .` from the repo root. 3. Create a session with a concrete prompt and branch. 4. Poll session state or activities until Jules requests approval, feedback, or completes. 5. Approve the latest plan if the session enters `AWAITING_PLAN_APPROVAL`. 6. If needed, inspect open sessions with `list-active-sessions`. 7. For completed PR work, verify merge status before closing the Jules session. 8. Summarize results for the user, including session URL, current state, latest agent message, PR status, and whether the session is safe to close. ## Workflow ### API-first workflow Use the bundled script for repeatable automation: `