Jules

Hands coding tasks to Google's Jules agent via its CLI or REST API; needs a Google login

od sanjay3290 · sanjay3290/ai-skills

Funguje s nastavením ★ 7.6/10

Jules — Hands coding tasks to Google's Jules agent via its CLI or REST API; needs a Google login

Co umí

Teaches Claude Code to delegate coding work — bug fixes, tests, docs, refactors, PR reviews — to Google's Jules asynchronous agent, either through the `@google/jules` CLI or the `jules.googleapis.com/v1alpha/sessions` REST API. It covers repo auto-detection, session creation, polling until completion, and pulling the resulting diff back into a local branch or PR. Triggers on phrasings like "have Jules fix", "delegate to Jules", "check Jules sessions", or "pull Jules results".

Testovací report

Cloned the repo and installed skills/jules into a throwaway HOME; the single 8.5KB SKILL.md parsed with name+description, referenced no local files, and contained no hardcoded paths or security smells (no curl|sh, no base64, no secret exfiltration). I verified every external reference it names: npm @google/jules returned 200 (v0.1.42), jules.googleapis.com/v1alpha/sessions returned a live 401 UNAUTHENTICATED, and jules.google.com/settings returned 200. I actually installed the CLI into an isolated npm prefix and ran `jules --help` — every subcommand the skill documents exists (`new --repo/--parallel`, `remote list --session/--repo`, `remote pull --session --apply`, `teleport`, `login`) — and its repo auto-detect sed one-liner correctly printed "sanjay3290/ai-skills" in a git repo and nothing outside one. I could not measure output: `jules remote list --repo` in a clean HOME failed with "did you forget to login?", and creating a session needs a Google account OAuth or a JULES_API_KEY I do not have, so no delegated task could be run and no skill-vs-baseline artifact pair exists. Trigger phrasings judged: SHOULD fire — "Have Jules fix the auth timeout bug in src/auth.ts" (load), "Check my Jules sessions and pull the results into a branch" (load), "Delegate adding unit tests for the payments module to the async coding agent and open a PR" (load); SHOULD NOT fire — "Fix the auth timeout bug in src/auth.ts" (no load, I just fix it), "Add unit tests for the payments module" (no load, the description is gated on the Jules name plus delegation intent) — 5/5 correct. Docs lose a point because the API payload fields (automationMode AUTO_CREATE_PR, requirePlanApproval) are unverifiable without a key and the session-state table has a truncated "Awaiting User F" label.

Testováno: 2026-07-21 · Claude Code 2.x (agent harness)

Instalace

git clone --depth 1 https://github.com/sanjay3290/ai-skills.git /tmp/jules-src
mkdir -p ~/.claude/skills
cp -R /tmp/jules-src/skills/jules ~/.claude/skills/jules
# Skill is a single self-contained SKILL.md — no scripts or assets.
#
# REQUIRED external dependency (the skill does nothing without it):
#   npm install -g @google/jules     # verified: v0.1.42 on npm, ships a postinstall script
#   jules login                      # browser OAuth against a Google account
# Headless alternative — get a key at https://jules.google.com/settings (3-key limit):
#   export JULES_API_KEY="your-api-key"
# Verify auth:
#   jules remote list --repo
#   curl -s -H "x-goog-api-key: $JULES_API_KEY" "https://jules.googleapis.com/v1alpha/sessions?pageSize=1"
#
# GitHub repos only (no GitLab/Bitbucket), and the repo must be connected at https://jules.google.com
#
# Plugin-marketplace alternative (installs all 24 skills in the repo, not just this one):
#   /plugin marketplace add sanjay3290/ai-skills
#   /plugin install ai-skills@ai-skills

Příkazy a ukázkové prompty

  • /julesHands coding tasks to Google's Jules agent via its CLI or REST API; needs a Google login

Skilly se spouštějí běžnými požadavky — žádné příkazy k zapamatování. Po instalaci ho aktivují prompty jako tyto (anglicky):

  • Have Jules fix this bug in the repo
  • Ask Jules to add tests for this module
  • Check on my pending Jules sessions