Prime Agent Python Client
An async, typed Python host client for the public JSONL RPC mode of Prime Agent.
This package owns the application-side boundary: subprocess lifecycle, correlated commands, streamed events, timeouts, cancellation, diagnostics, and extension UI responses. Prime Agent remains the coding runtime and must be installed separately.
Community project: this package is maintained by Superagentic AI. It is not an official Prime Intellect product and is not endorsed by Prime Intellect. Prime Agent and Prime Intellect are names of their respective owners.
Why this package exists
Prime Agent documents a capable RPC protocol, but its bundled host client is TypeScript. Python applications otherwise need to reimplement framing, correlation, lifecycle, and evolving event handling. This package provides one small, dependency-free implementation that can be shared by CLIs, IDEs, services, notebooks, and agent harnesses.
Install
Install Prime Agent first and complete its normal login or provider setup:
curl -fsSL https://app.primeintellect.ai/prime-agent/install.sh | sh
prime-agent
Then install the Python client:
uv add prime-agent-python-client
For a one-off script without a project, use
uv run --with prime-agent-python-client your_script.py. See the
installation guide
for source checkouts and upgrades.
Quick start
import asyncio
from prime_agent_client import PrimeSession
async def main() -> None:
async with PrimeSession(
cwd="/path/to/repository",
provider="anthropic",
model="claude-sonnet-4-20250514",
) as session:
async for event in session.prompt_stream("Fix the failing tests"):
if event.text_delta:
print(event.text_delta, end="", flush=True)
asyncio.run(main())
No shell is used. PrimeSession launches the public executable as
prime-agent --mode rpc with an argv sequence.
High-level API
async with PrimeSession(cwd=".") as session:
await session.prompt("Implement the feature")
await session.steer("Keep the public API backward compatible")
await session.follow_up("Run the focused tests when finished")
state = await session.state()
messages = await session.messages()
stats = await session.stats()
models = await session.available_models()
await session.set_model("anthropic", "claude-sonnet-4-20250514")
await session.compact("Keep decisions and unresolved failures")
await session.refine(instructions="Remove redundant context")
Session operations include new, switch_session, set_session_name,
fork, and clone. The lower-level PrimeRpcTransport.request() method makes
new protocol commands usable before a convenience method is added.
Both levels support explicit restart. PrimeSession.restart() repeats version
detection and the readiness probe; PrimeRpcTransport.restart() replaces only
the subprocess. Cancelling prompt_stream() asks Prime Agent to abort the
active run before releasing the stream.
Event compatibility
Events are intentionally open rather than modelled as a closed enum:
async for event in session.prompt_stream("Inspect the repository"):
print(event.type, event.raw)
PrimeEvent.raw preserves the complete RPC object, including event types and
fields introduced by later Prime Agent versions. Malformed records become
observable protocol_error events instead of disappearing.
The transport follows Prime Agent's strict framing requirements:
- LF is the only record delimiter
- CRLF input is accepted
- U+2028 and U+2029 inside JSON strings do not split records
- requests are correlated by generated IDs
- pending requests fail immediately if the process exits
- stderr is retained in a bounded diagnostic buffer
Extension UI
Interactive extensions can ask the host to select, confirm, or collect input:
async def ui(event):
if event.get("method") == "confirm":
return True
return {"cancelled": True}
async with PrimeSession(cwd=".", ui_handler=ui) as session:
await session.prompt_and_wait("Run the extension workflow")
Notification and status events are delivered to the handler but do not receive a protocol response, matching Prime Agent's fire-and-forget semantics.
Compatibility
The 0.2 line is tested against Prime Agent 0.7.0 and 0.7.1. Unknown versions are allowed because the RPC protocol is additive, but they are marked as untested:
assert session.compatibility is not None
print(session.compatibility.tested)
print(session.supports("compact"))
The library supports Python 3.10 through 3.13 and has no runtime Python dependencies.
Security
Prime Agent executes model-generated Python and project commands with the permissions of its process. This client is a transport, not a sandbox. Run it only in repositories and execution environments whose trust model you understand.
Contributing
See the contribution guide. Protocol changes should include a fake RPC fixture test and, where possible, validation against the public Prime Agent executable.
Documentation
License
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 prime_agent_python_client-0.2.0.tar.gz.
File metadata
- Download URL: prime_agent_python_client-0.2.0.tar.gz
- Upload date:
- Size: 28.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
32c55bcbd01468e72146e600587bf6b3c646532b9f0a6fe2ff2b69cc26be8491
|
|
| MD5 |
aa12d1bc9055f7dd4b3fc385ec7c0fa2
|
|
| BLAKE2b-256 |
e0d9431730d976b28fec2cd78525fd05ab97a8ae5a7fb42b9ba9ffb0fdf9956d
|
File details
Details for the file prime_agent_python_client-0.2.0-py3-none-any.whl.
File metadata
- Download URL: prime_agent_python_client-0.2.0-py3-none-any.whl
- Upload date:
- Size: 19.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6fae9d5b9d84cea5b5ae3680192a5091d29366f7a2145d19fde76b51d8bee4e1
|
|
| MD5 |
96ee49b01e63fcb18f8d1aacc3cced54
|
|
| BLAKE2b-256 |
187f9baf66c2686c66f044ad50320deb17f05b2f7feff82ccaa681423f0762d2
|