A resilient, zero-dependency Python wrapper for the official Google Gemini Node.js CLI.
Project description
Gemini CLI Headless
❗ Note: Project finalized until upstream gemini-cli path-bug resolution or new requests.
gemini-cli-headless is a Python-based wrapper for the Gemini CLI. It provides a secure, programmatically controllable execution environment designed for autonomous agents, automated workflows, and complex data extraction. This wrapper is fully tested and supported on both Windows and Linux, automatically adapting its security boundaries to the host OS. For technical details on how OS differences are handled, see Cross-Platform Architecture.
Quick Start
Prerequisite: Both usage and testing of this library require a valid Google Gemini API key. Ensure it is available in your environment before running any code:
# Windows
$env:GEMINI_API_KEY="your-api-key"
# Linux / macOS
export GEMINI_API_KEY="your-api-key"
Alternatively, you can pass it directly to the function using the api_key argument. The wrapper will fail with a clear ValueError if the key is completely missing.
Example 1: The Secure File Inspector Create an agent that can read files to answer questions, but physically prevent it from modifying your project or running any shell commands.
import os
from gemini_cli_headless import run_gemini_cli_headless
project_root = os.path.abspath("./my_project")
session = run_gemini_cli_headless(
prompt="Read the auth.ts file and summarize its exported functions.",
cwd=project_root,
# Strictly limit the physical sandbox to read-only tools
allowed_tools=["read_file", "list_directory", "grep_search"]
)
print(session.text)
Example 2: The Strict Data Bot (No Tools, Custom Persona) Wipe the default Software Engineer identity entirely. Prevent the model from using any tools, ensuring it only processes the text provided.
from gemini_cli_headless import run_gemini_cli_headless
strict_persona = """
You are a DATA_BOT. You do not write code.
You extract names from text and return them as a JSON array.
No preamble, no explanation, no tools.
"""
session = run_gemini_cli_headless(
prompt="Hello, my name is Alice and I work with Bob.",
system_instruction_override=strict_persona,
allowed_tools=[], # Physically disable all tool access
)
print(session.text)
# Output: ["Alice", "Bob"]
Why this library?
If you try to orchestrate the official Gemini CLI headlessly out-of-the-box, you quickly realize it is a disaster waiting to happen. The raw CLI is optimized for interactive developer usage, not programmatic control.
When building workflows, developers face enormous pain points that gemini-cli-headless solves:
1. The Persona Problem & Model Identity The CLI has a hardcoded "Software Engineer" identity. Try asking it to simply extract JSON from a document, and it will often refuse or start explaining its engineering credentials.
- Our Solution: Use the
system_instruction_overrideparameter to completely wipe the agent's mind and replace it with your instructions. Read about how we handle model paranoia and identity in Controlling the Agent's Mind.
2. Inconsistent Sandboxing & Dangerous Defaults
Headless mode requires using --raw-output and the --yolo flag. By default, the agent has free rein over your filesystem and shell. Trying to restrict the agent to a specific folder or a specific set of tools via CLI flags is extremely difficult and non-transparent.
- Our Solution: We directly manipulate the undocumented internal policy engine to create a "Zero-Trust" environment. Dive into the deep technical details of Enforcing the Sandbox (The Security Kernel) and
Securing the Filesystem (Path Defenses)🚨 Note: path control is currently not possible due to an upstream gemini-cli bug, see link for details.
3. Hierarchical Context Pollution
If you run the raw CLI inside your project, it stealthily searches parent directories for GEMINI.md files. Your headless bot's behavior will mysteriously change depending on which folder it runs in because it's secretly inheriting external project rules.
- Our Solution: We built a surgical environment trick (
isolate_from_hierarchical_pollution=True) that forces the CLI into a clean room usingGEMINI_CLI_HOMEandGEMINI_SYSTEM_MD. This guarantees your persona remains pure and prevents parent folder pollution, while our custom Workspace Root Resolution and Robust Session Discovery ensure that chat histories are still reliably found and saved in the correct project directory. Understand our overarching philosophy in How We Tamed the Engine (Architecture Overview).
We have done our best not only to provide clear controls for these challenges, but also to create a suite of smart edge-case tests to verify this safety. You can learn about our trace auditing in How We Test. For detailed API references and advanced configuration options, also take a look at the Usage & Examples page.
Best Practices
1. Workspace Isolation
If you are using system_instruction_override to create a pure data bot, the wrapper defaults to isolate_from_hierarchical_pollution=True. This prevents the CLI from walking up the directory tree and discovering GEMINI.md files from your parent projects. Do not disable this flag unless you explicitly want your headless agent to adopt the "Software Engineer" identity of the surrounding workspace.
2. Recommended Models
For the best balance of speed, cost, and obedience to the strict sandboxing rules, we strongly recommend using the following specific models:
gemini-3-flash-preview: Excellent middle ground for agents that need to use basic tools (read/write files) rapidly.gemini-3.1-pro-preview: Use this when the task requires deep reasoning or complex, multi-step orchestrations.gemini-3.1-flash-lite-preview: Best for high-volume, tool-restricted tasks and data extraction. Fast and cheap.
3. Testing
To verify physical security and cognitive obedience, use our custom Integration Test Battery. Use python tests/run_integration_tests.py gemini-3-flash-preview to run tests. More details in Trace Auditing & Testing.
Tests yield either a non-fatal [MODEL FAIL] (a cognitive refusal) or a critical [ENGINE FAIL] (a physical sandbox leak). Testing is handled via a Local Opt-Out Git Hook, which you can skip by committing with git push --no-verify.
⚠️ Critical Warnings
When operating gemini-cli-headless in production, you must understand the following critical constraints:
1. Broken Path Security (Upstream Bug)
🚨 CRITICAL WARNING: PATH SECURITY IS CURRENTLY BROKEN 🚨 Do NOT use the
allowed_pathsparameter in the current version. Due to a static compiler bug in the upstream Gemini CLI policy engine, attempting to restrict paths will permanently delete all tools from the agent's schema, causing severe hallucinations. Rely onallowed_toolsandallowed_commandsfor security instead. (See thecanary_tool_presence_baselinevscanary_upstream_compiler_bugtests in our integration suite for reproducible proof of this defect).Note: The library will actively emit a
logger.warning()to your console at runtime if it detects you attempting to useallowed_pathsto prevent accidental deployments of broken agents.
2. Version Lock & System Brittleness
This orchestrator relies on deeply undocumented internal mechanics of the Gemini CLI's policy engine. It is version-locked and certified ONLY for Gemini CLI v0.38.2. Using newer versions may cause the sandbox to silently fail.
- Action: Never auto-update the underlying CLI in your production environments. We maintain an Automated Nightly Monitor via GitHub Actions to detect breaking upstream changes immediately. See Version Lock & Stability for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file gemini_cli_headless-5.0.4.tar.gz.
File metadata
- Download URL: gemini_cli_headless-5.0.4.tar.gz
- Upload date:
- Size: 12.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
950c400f50bdd3396bf292e2831fecd7d6e91febaf4346eb85327a2c3825e9e7
|
|
| MD5 |
b358643d793eabfd41a82372c5695e64
|
|
| BLAKE2b-256 |
4422051584c8560d54b3f0569759fd2e1758117f74301a431e945a7361346b0a
|
Provenance
The following attestation bundles were made for gemini_cli_headless-5.0.4.tar.gz:
Publisher:
publish.yml on jarek108/gemini-cli-headless
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
gemini_cli_headless-5.0.4.tar.gz -
Subject digest:
950c400f50bdd3396bf292e2831fecd7d6e91febaf4346eb85327a2c3825e9e7 - Sigstore transparency entry: 1362755801
- Sigstore integration time:
-
Permalink:
jarek108/gemini-cli-headless@427294b4b92490aef27adc9e185149e9767dc15e -
Branch / Tag:
refs/tags/v5.0.4 - Owner: https://github.com/jarek108
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@427294b4b92490aef27adc9e185149e9767dc15e -
Trigger Event:
push
-
Statement type:
File details
Details for the file gemini_cli_headless-5.0.4-py3-none-any.whl.
File metadata
- Download URL: gemini_cli_headless-5.0.4-py3-none-any.whl
- Upload date:
- Size: 12.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
31e2e5c0938427d1bf5ada9209f8cf7ae1ba085e359f9a1188063e6b2bc3c95d
|
|
| MD5 |
4b8bd18b4e8734295a04a14094b0c33f
|
|
| BLAKE2b-256 |
02e9f4f33facb7f32f32b1ae7e403751717fa8d98d557458bfb1217001a063d6
|
Provenance
The following attestation bundles were made for gemini_cli_headless-5.0.4-py3-none-any.whl:
Publisher:
publish.yml on jarek108/gemini-cli-headless
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
gemini_cli_headless-5.0.4-py3-none-any.whl -
Subject digest:
31e2e5c0938427d1bf5ada9209f8cf7ae1ba085e359f9a1188063e6b2bc3c95d - Sigstore transparency entry: 1362755824
- Sigstore integration time:
-
Permalink:
jarek108/gemini-cli-headless@427294b4b92490aef27adc9e185149e9767dc15e -
Branch / Tag:
refs/tags/v5.0.4 - Owner: https://github.com/jarek108
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@427294b4b92490aef27adc9e185149e9767dc15e -
Trigger Event:
push
-
Statement type: