Skip to main content

Reusable Harbor custom agent that runs Pi SDK sessions and writes trajectory artifacts.

Project description

harbor-pi-sdk-agent

Run the Pi coding agent from Harbor.

Use this package when you want Harbor to launch a Pi SDK agent and collect Harbor-compatible trajectory artifacts.

Mental Model

harbor-pi-sdk-agent is a thin Harbor wrapper around the official Pi coding agent package, @mariozechner/pi-coding-agent.

It is not a provider compatibility layer. Pass Pi's provider/model-id through to this package, and let the Pi SDK registry decide the built-in model API, base URL, and request headers. Only pass base_url, model_api, or provider_headers_json when you intentionally want to override Pi's built-in provider metadata or connect to a compatible custom endpoint.

Install

Install this package into the same Python environment or image that runs Harbor.

From a private package index:

pip install harbor-pi-sdk-agent

From this private GitHub repo:

pip install git+ssh://git@github.com/Kingwl/harbor-pi-sdk-agent.git

With uv:

uv pip install git+ssh://git@github.com/Kingwl/harbor-pi-sdk-agent.git

Harbor should already be available in that environment. This package is loaded by import path.

Run

Set the API key for the provider you want to use:

export OPENAI_API_KEY=...

Then pass the agent import path to Harbor:

harbor run \
  --agent-import-path harbor_pi_sdk_agent.agent:PiSdkAgent \
  --agent-kwarg 'model_name=openai/gpt-4.1' \
  --agent-kwarg 'api_key_env=OPENAI_API_KEY'

For another Pi built-in provider:

export DEEPSEEK_API_KEY=...

harbor run \
  --agent-import-path harbor_pi_sdk_agent.agent:PiSdkAgent \
  --agent-kwarg 'model_name=deepseek/deepseek-v4-pro' \
  --agent-kwarg 'api_key_env=DEEPSEEK_API_KEY'

For the Pi built-in Kimi Coding provider:

export KIMI_API_KEY=...

harbor run \
  --agent-import-path harbor_pi_sdk_agent.agent:PiSdkAgent \
  --agent-kwarg 'model_name=kimi-coding/kimi-for-coding' \
  --agent-kwarg 'api_key_env=KIMI_API_KEY'

For a compatible endpoint that is not already described by Pi's provider registry:

export ANTHROPIC_API_KEY=...

harbor run \
  --agent-import-path harbor_pi_sdk_agent.agent:PiSdkAgent \
  --agent-kwarg 'model_name=anthropic/model-id' \
  --agent-kwarg 'api_key_env=ANTHROPIC_API_KEY' \
  --agent-kwarg 'base_url=https://your-anthropic-compatible-endpoint' \
  --agent-kwarg 'model_api=anthropic-messages'

Launcher Setup

In your Harbor launcher or task wrapper, use:

harbor_pi_sdk_agent.agent:PiSdkAgent

Recommended kwargs:

model_name=provider/model-id
api_key_env=PROVIDER_API_KEY
agent_label=pi-sdk
thinking=xhigh

Optional kwargs:

base_url=https://...
model_api=anthropic-messages
provider_headers_json={"User-Agent":"..."}
compaction_enabled=0
filtered_events=1
progress_events=1
heartbeat_interval_sec=30
raw_events=0
max_field_chars=200000

Recommended artifacts:

/logs/agent/trajectory.json
/logs/agent/trajectory.steps.jsonl
/logs/agent/pi-filtered.jsonl
/logs/agent/pi-progress.jsonl
/logs/agent/pi-sdk-runner.txt

Add this only when you explicitly want raw SDK events:

/logs/agent/pi-raw.jsonl

Outputs

  • trajectory.json: the main Harbor trajectory.
  • trajectory.steps.jsonl: step-by-step trajectory stream for long or interrupted runs.
  • pi-filtered.jsonl: compact Pi SDK event log.
  • pi-progress.jsonl: runner progress events and idle heartbeats.
  • pi-raw.jsonl: raw Pi SDK event log when raw_events=1.
  • pi-sdk-runner.txt: concise agent stdout, including idle heartbeats during long model calls.

Progress Feedback

Some providers can spend a long time thinking without streaming any Pi SDK event. During those idle periods, this wrapper prints a heartbeat line to pi-sdk-runner.txt and appends a runner_heartbeat event to pi-progress.jsonl.

The default heartbeat interval is 30 seconds. Set heartbeat_interval_sec=0 to disable stdout heartbeats. Set progress_events=0 to disable pi-progress.jsonl.

Heartbeat events are runner telemetry only. They are not written to trajectory.steps.jsonl, so the Harbor trajectory stays focused on real user, agent, and tool steps.

Python Usage

Harbor usually creates the agent from the import path. If you need to construct it in Python:

from harbor_pi_sdk_agent import PiSdkAgent

agent = PiSdkAgent(
    logs_dir=logs_dir,
    model_name="openai/gpt-4.1",
    api_key_env="OPENAI_API_KEY",
)

Use this package as a Harbor agent plugin, not as a standalone command-line tool.

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

harbor_pi_sdk_agent-0.1.2.tar.gz (16.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

harbor_pi_sdk_agent-0.1.2-py3-none-any.whl (14.2 kB view details)

Uploaded Python 3

File details

Details for the file harbor_pi_sdk_agent-0.1.2.tar.gz.

File metadata

  • Download URL: harbor_pi_sdk_agent-0.1.2.tar.gz
  • Upload date:
  • Size: 16.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for harbor_pi_sdk_agent-0.1.2.tar.gz
Algorithm Hash digest
SHA256 eb027d3cc6d53368b7a08433414fe10c6e3d2294e0b8c2b022b1ec30710d047d
MD5 3bfdeceac8349dab9f22e822d1319533
BLAKE2b-256 b811e0a92b19e7f2adf5cf9602da93993cb6b2388dd9a22a9975fb9f13ea9da1

See more details on using hashes here.

Provenance

The following attestation bundles were made for harbor_pi_sdk_agent-0.1.2.tar.gz:

Publisher: publish.yml on Kingwl/harbor-pi-sdk-agent

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file harbor_pi_sdk_agent-0.1.2-py3-none-any.whl.

File metadata

File hashes

Hashes for harbor_pi_sdk_agent-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 2e41d5dfd2ed248497bc354e833b3f0c526856412fdf03800a576f10681e1383
MD5 3c173199357d86cc466cdbe59fc3d58e
BLAKE2b-256 f47146b1b47a5117ef00c31f00d509431b3d2609e87de9ca3ac4d6d03fda6b45

See more details on using hashes here.

Provenance

The following attestation bundles were made for harbor_pi_sdk_agent-0.1.2-py3-none-any.whl:

Publisher: publish.yml on Kingwl/harbor-pi-sdk-agent

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page