Socket
Book a DemoInstallSign in
Socket

@google/jules

Package Overview
Dependencies
Maintainers
3
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@google/jules

Jules, the asynchronous coding agent from Google, in the terminal.

latest
Source
npmnpm
Version
0.1.40
Version published
Weekly downloads
1.8K
-28.33%
Maintainers
3
Weekly downloads
 
Created
Source

Jules

Jules, the asynchronous coding agent from Google, in the terminal.

Quick start

jules # Launch the TUI

# Create a session (defaults to current working directory's repository)
jules new "write unit tests"

# Create a session for a specific repository
jules new --repo torvalds/linux "write unit tests"

# Create 3 parallel sessions for the same task
jules new --repo torvalds/linux --parallel 3 "write unit tests"

# List all sessions
jules remote list --session

# List all repos
jules remote list --repo

# Pull the result of a session
jules remote pull --session 123456

# Create multiple sessions for each task in TODO.md
cat TODO.md | while IFS= read -r line; do\
  jules new "$line";\
done

# Create a session based on the first issue assigned to @me
gh issue list --assignee @me --limit 1 --json title | jq -r '.[0].title' | jules new

# Use Gemini CLI to analyze GitHub issues and send the hardest one to Jules
gemini -p "find the most tedious issue, print it verbatim\n$(gh issue list --assignee @me)" | jules new

Help

A CLI for Jules, the asynchronous coding agent from Google.

Usage:
  jules [flags]
  jules [command]

Available Commands:
  completion  Generate the autocompletion script for the specified shell
  help        Help about any command
  login       Login your Google account to use Jules
  logout      Logout your Google account
  remote      Interact with remote sessions, e.g. new/list/pull
  version     Show the version

Flags:
  -h, --help           help for jules
      --theme string   Which theme to use, dark/light (default "dark")

Use "jules [command] --help" for more information about a command.

FAQs

Package last updated on 31 Oct 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts