Drop-in execution trace harness for non-deterministic workflows.
Project description
Observe Harness Quickstart
HiveOS includes a lightweight observe harness so users can add route visibility to existing workflows without adopting a new execution surface.
Install
Target package name:
pipx install hiveos-trace
Alternative:
pip install hiveos-trace
Until published, install from source:
pip install -e .
If hive is not recognized in your shell, use module form:
python -m hiveos.hive quickstart --no-open
python -m hiveos.hive trace ls
Release Validation
Before public release:
- Run
.github/workflows/hive-trace-publish-testpypi.yml(manual dispatch). - Verify clean install from TestPyPI:
pipx install --pip-args="--index-url https://test.pypi.org/simple --extra-index-url https://pypi.org/simple" hiveos-trace
hive doctor
hive quickstart --no-open
Production release:
- Push tag format
hiveos-trace-v<version>(example:hiveos-trace-v0.1.0) to trigger.github/workflows/hive-trace-publish-pypi.yml.
Zero-to-One (Under a Minute)
hive quickstart --no-open
Preflight checks:
hive doctor
What It Provides
- Run-level trace events (
observe_run_started,observe_run_finished) - Step-level trace events (
observe_step) - Checkpoint markers (
observe_checkpoint) - Rerun intent markers (
observe_rerun_requested) - CLI wrapper for existing commands (
hive trace run -- ...) - CLI run listing (
hive trace ls) - CLI run detail dump (
hive trace show <run_id>) - CLI run opening (
hive trace open <run_id>)
All events use the existing HiveOS trace sink (~/.hiveos-trace/logs/trace_events.log by default + /trace_events).
SDK Integration (Python)
from hiveos.observe import observe_run, observe_step
def my_pipeline():
with observe_run("daily-sync", metadata={"team": "platform"}) as run_id:
observe_step(run_id, "extract.start", payload={"source": "s3"})
# ... your existing logic ...
observe_step(run_id, "extract.finish", payload={"rows": 1203})
Checkpoint + rerun intent in SDK:
from hiveos.observe import observe_checkpoint, observe_rerun_request
observe_checkpoint(run_id, "ckpt-42", step_name="extract.finish", state_ref="state://pipeline/extract/42")
observe_rerun_request(run_id, from_checkpoint_id="ckpt-42", reason="retry with override")
CLI Wrapper Integration
Wrap any existing command:
hive trace run --name nightly-tests -- python -m unittest -q
Or:
hive trace run -- npm run test
This emits run start/finish + command step events and still returns the wrapped command exit code.
Inspect Captured Runs
List recent runs:
hive trace ls
Open a run in local UI:
hive trace open observe-run:abc123
run will print the generated run_id, so open can be called immediately after execution.
Show detailed events for one run:
hive trace show observe-run:abc123
JSON output:
hive trace show observe-run:abc123 --json
Optional Proxy Capture Mode
Capture OpenAI-compatible request/response traffic without SDK rewrites:
hive trace run --proxy -- python agent.py
Optional explicit upstream:
hive trace run --proxy --proxy-upstream https://api.openai.com/v1 -- python agent.py
Environment Notes
- Harness writes through the same trace emitter used by HiveOS internals.
- Set
HIVE_TRACE_LOG_PATHif you want traces written to a custom file path. - To visualize harness output in Studio/Build trace views, point the UI/backend at the same trace store.
Intended Adoption Path
- Add observe events only (no workflow behavior changes).
- Add replay/diff analysis over captured runs.
- Add operator interventions at selected step boundaries.
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 hiveos_trace-0.1.1.tar.gz.
File metadata
- Download URL: hiveos_trace-0.1.1.tar.gz
- Upload date:
- Size: 123.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b1d10dd99fe8c9098eb1c2d5eb25d532e81ecd4a92352000f077b1a69d2d5b38
|
|
| MD5 |
66d9e783dc2662641f10297e96aeac23
|
|
| BLAKE2b-256 |
1c65072b2475f8c7d8b7eabc71dad79f5c4674132ae81568ca780fab0be97e07
|
File details
Details for the file hiveos_trace-0.1.1-py3-none-any.whl.
File metadata
- Download URL: hiveos_trace-0.1.1-py3-none-any.whl
- Upload date:
- Size: 142.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
18f619f27f3ec5176d16f85b1e43d3a79cadcacfb248efe5e2b45c6828d535af
|
|
| MD5 |
fc26c2e6f9f86158c35488dbec49a5b6
|
|
| BLAKE2b-256 |
93afd20b6733dad87cce689a654963b1a2ad2f58ec93ea253e0e93a98ef8a4ad
|