Python backend parity for claude-pty-web-harness: drive Claude Code in a pupptyeer pty and stream its JSONL transcript over the same HTTP/WS protocol as the TS server.
Project description
claude-pty-web-harness (Python backend)
A Python parity of the backend: drive Claude Code in a pupptyeer pty and stream
its JSONL transcript over the same HTTP/WS protocol as the TS server, so the
existing React frontend (packages/app) works against it unchanged.
Mirrors the TS packages:
| Python module | TS equivalent | Role |
|---|---|---|
claude_pty_web_harness.protocol |
@…/protocol |
wire types (ChatEvent, summaries, messages) |
claude_pty_web_harness.harness (ClaudeHarness) |
@…/core |
transport-agnostic logic (pupptyeer + JSONL + daemon-rendered modal/readiness detection) |
claude_pty_web_harness.{detect,jsonl} |
core/src/* |
supporting modules |
claude_pty_web_harness.server |
@…/server |
reference FastAPI + WebSocket adapter |
It wraps the stdlib-only pupptyeer Python client, installed from PyPI as
pupptyeer-client (a declared dependency). For local development against a
pupptyeer checkout, set PUPPTYEER_PY_CLIENT to its clients/python directory
to import that copy instead.
The pupptyeer client is synchronous (background reader thread); the harness is asyncio and runs its request/reply calls in a thread executor so the FastAPI event loop never blocks.
Run
cd packages/python
uv venv && uv pip install -e .
PORT=4318 uv run uvicorn claude_pty_web_harness.server:app
# or: PORT=4318 uv run python -m claude_pty_web_harness.server
It serves the identical API on :4318, so npm run dev:app (the React app,
Vite proxy to :4318) talks to it with no changes. Run either the TS server
or this one, not both (same port).
Env: PORT, HOST, PUPPTYEER_SOCK (non-default daemon socket),
READINESS=delay (fallback for daemons without working capture),
PUPPTYEER_PY_CLIENT (dev only: import a pupptyeer client checkout instead of
the installed pupptyeer-client).
Reusing the core (any transport)
from claude_pty_web_harness import ClaudeHarness
harness = await ClaudeHarness.create(
allowed_roots=["/home/me/dev"], # optional: reject create_session outside these
# socket_path=..., readiness="screen" | "delay"
)
remove = harness.add_listener(lambda kind, sid, payload: ...) # "chat" | "status"
summary = await harness.create_session(cwd="/repo", model="sonnet")
await harness.send_prompt(summary["id"], "first line\nsecond line") # multi-line, one paste
# also: harness.list(), harness.get(id), harness.transcript(id),
# await harness.interrupt(id), await harness.kill(id)
create_session also takes command, permission_mode, and extra_args.
send_prompt delivers the text as a bracketed paste so multi-line input lands in
the TUI intact, then submits with one Enter (pass submit=False to stage it).
send_prompt captures the screen once before writing anything (in
readiness="screen" mode only) and raises PickerOpenError (code = "picker_open", exported from this package) if a numbered picker - an
AskUserQuestion prompt, a tool-permission prompt, and the trust modal all
render identically, so it cannot say which one - is open: the trailing Enter
that submits a prompt would otherwise confirm whichever option is highlighted.
It fails open on a capture timeout, and it still leaves a narrow race between
the capture and the Enter, so treat it as reducing collisions, not eliminating
them. A caller that already knows what is on screen can pass force=True to
skip the check; it is not available over the reference HTTP/WS server.
Permission modes (read this before exposing it)
Sessions default to --permission-mode bypassPermissions, which approves every
tool call with no checks: the agent can run arbitrary commands and edit any file
inside the session's cwd without prompting. The default favors low friction
and is not safe for untrusted input. Contain it with allowed_roots and the
server auth, and only point it at directories you trust.
Because the harness drives the real claude TUI in a pty, it can use claude's
interactive auto mode (a classifier vets each action), which is the best
overall balance for a web-driven agent and works here precisely because we own
the pty:
await harness.create_session(cwd="/repo", permission_mode="auto")
permission_mode is passed straight through to claude --permission-mode, so
default, plan, acceptEdits, auto, and bypassPermissions all work. Auto
mode needs a recent claude CLI and an eligible model; if it is unavailable claude
falls back, so confirm it actually engaged.
Mounting into your own FastAPI app (with auth)
include_harness_routes mounts the same REST + WS endpoints onto an existing
app, so the harness can sit behind your app's auth instead of running open on
localhost. REST routes accept FastAPI dependencies; the WebSocket is guarded
separately (browsers can't set an Authorization header on a WS).
from fastapi import Depends, WebSocket
from claude_pty_web_harness import ClaudeHarness
from claude_pty_web_harness.server import include_harness_routes
harness = await ClaudeHarness.create(allowed_roots=["/home/me/dev"])
async def authenticate_ws(ws: WebSocket) -> bool:
return await verify_ticket(ws.query_params.get("ticket")) # your check
include_harness_routes(
app,
harness, # or a zero-arg callable returning one
prefix="/api/chat",
dependencies=[Depends(validate_token)], # guards the REST routes
authenticate_ws=authenticate_ws, # guards the WS upgrade
)
/health is left unauthenticated for liveness probes. Keep the harness itself
bound to localhost / a private interface and let your app be the only
authenticated front door; never expose it directly. create_router(...) returns
the APIRouter if you'd rather include it yourself.
Requires
A running pupptyeer daemon (install the @petersr/pupptyeer binary and
pupptyeer daemon install). The harness connects to it and fails loud if it is
unreachable; it never spawns one. Restart the daemon after upgrading pupptyeer
(pupptyeer daemon restart), else captureScreen can return an empty grid and
readiness never fires (chat still works via JSONL); or run with READINESS=delay.
Project details
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 claude_pty_web_harness-0.3.1.tar.gz.
File metadata
- Download URL: claude_pty_web_harness-0.3.1.tar.gz
- Upload date:
- Size: 83.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
403288f27186a9ea887e9019a1793bebb064c80d3d1bc01c80fe1b52054574e8
|
|
| MD5 |
3a5c97e11d8a1e64adc9fad8a040fb81
|
|
| BLAKE2b-256 |
4028149fa1c9436bb98f2b7b7246768292e7426c8d73d60b07ee49ef42c8161c
|
Provenance
The following attestation bundles were made for claude_pty_web_harness-0.3.1.tar.gz:
Publisher:
release.yml on PeterSR/claude-pty-web-harness
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
claude_pty_web_harness-0.3.1.tar.gz -
Subject digest:
403288f27186a9ea887e9019a1793bebb064c80d3d1bc01c80fe1b52054574e8 - Sigstore transparency entry: 2207063307
- Sigstore integration time:
-
Permalink:
PeterSR/claude-pty-web-harness@7f9d095ff21b61945375155d693b2ee9c7f6d92d -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/PeterSR
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@7f9d095ff21b61945375155d693b2ee9c7f6d92d -
Trigger Event:
push
-
Statement type:
File details
Details for the file claude_pty_web_harness-0.3.1-py3-none-any.whl.
File metadata
- Download URL: claude_pty_web_harness-0.3.1-py3-none-any.whl
- Upload date:
- Size: 33.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4c2a35e509bbc74b2779901c6e6db68552545f08688a56162fdf7f42072cd2b0
|
|
| MD5 |
eac7cd5516dd3b96dd5aef27fed6e0b2
|
|
| BLAKE2b-256 |
e26b9babf9c4cc038be789207b3cab63839572a3f34922872784bc8b893069c3
|
Provenance
The following attestation bundles were made for claude_pty_web_harness-0.3.1-py3-none-any.whl:
Publisher:
release.yml on PeterSR/claude-pty-web-harness
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
claude_pty_web_harness-0.3.1-py3-none-any.whl -
Subject digest:
4c2a35e509bbc74b2779901c6e6db68552545f08688a56162fdf7f42072cd2b0 - Sigstore transparency entry: 2207063311
- Sigstore integration time:
-
Permalink:
PeterSR/claude-pty-web-harness@7f9d095ff21b61945375155d693b2ee9c7f6d92d -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/PeterSR
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@7f9d095ff21b61945375155d693b2ee9c7f6d92d -
Trigger Event:
push
-
Statement type: