Configure and interpret the Phoenix plugin for Harbor agent evaluations. Use when adding `arize-phoenix` to Harbor jobs, choosing ATIF tracing, mapping Harbor tasks and rewards to Phoenix experiments, comparing agents or models, resuming jobs, or troubleshooting Harbor records in Phoenix.
69
83%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Use the Phoenix Harbor plugin to record Harbor agent evaluations as versioned Phoenix datasets, experiments, runs, scores, and ATIF traces.
Harbor runs agents and verifiers. Phoenix records and compares their results. Do not describe Phoenix as executing Harbor tasks or recalculating Harbor rewards.
arize-phoenix-client installed with the harbor extraInstall the client and Harbor in the same Python environment:
pip install "arize-phoenix-client[harbor]"Use atif unless the agent has no ATIF trajectory or the user does not want traces. ATIF is the default. It reads trajectory files after the final trial attempt, so the sandbox needs no Phoenix endpoint, credentials, instrumentation, or outbound network access.
Use null to record datasets, experiments, runs, and evaluations without traces:
--plugin-kwarg trace_mode=nullLive OpenTelemetry Protocol (OTLP) support is deferred to a follow-up. This release accepts atif or null, and does not link live OpenTelemetry agent traces to experiment runs.
Set the endpoint for the Phoenix plugin process. ATIF agents and their sandboxes do not connect to Phoenix. Prefer environment variables so credentials do not enter shell history or job configuration:
export PHOENIX_COLLECTOR_ENDPOINT=http://localhost:6006
export PHOENIX_API_KEY=your-api-keyOmit PHOENIX_API_KEY when the Phoenix instance does not require authentication. The endpoint and api_key plugin kwargs override these values when the user asks for per-job settings.
Add --plugin arize-phoenix to the user's existing harbor run command. Preserve their dataset, agent, model, environment, concurrency, retry, and task selections.
harbor run \
-d terminal-bench/terminal-bench-2 \
-a terminus-2 \
-m openai/gpt-5-mini \
--plugin arize-phoenix \
--yesDo not invent or replace Harbor settings that are unrelated to Phoenix.
Use this mapping when explaining a job or checking its results:
| Harbor | Phoenix |
|---|---|
| One task collection | One versioned dataset |
| One task | One dataset example |
| One distinct agent and model configuration | One experiment |
| One planned task attempt | One repetition |
| One final logical trial | One experiment run |
| Final verifier reward | Experiment evaluation with the original key and CODE annotator kind |
| Step verifier reward | Evaluation named <step_name>.<reward_key> |
| Trial or step exception | Run error and infra_ok=0 |
| Saved ATIF trajectories | One trace linked to the run, with one step span per attempted step in a multi-step task |
Each single-step or multi-step Harbor task becomes one Phoenix dataset example. A multi-step example input includes its ordered step names and instructions. Phoenix examples keep output empty because Harbor verifies the environment state rather than a single reference response.
The plugin records only the terminal physical attempt for a logical trial. An attempt that Harbor will retry does not create a Phoenix run. Completion order does not define repetition numbers.
The plugin infers a Phoenix dataset name for each supported single-source job. Provide dataset=<name> only when a job contains several direct tasks, which have no shared collection name, or when you want to customize the dataset's display name in Phoenix.
The inferred names are:
| Harbor source | Phoenix dataset name |
|---|---|
| Named registry dataset | The selected dataset name |
| Published package | The selected <organization>/<dataset> name |
| Local dataset path | The resolved directory name |
| Repository dataset | The resolved registry metadata name |
| One direct task | harbor-task/<task-name> |
To name several direct tasks or override an inferred name, add this setting to the Harbor command:
--plugin-kwarg dataset=release-candidate-tasksStop and explain the constraint if the job has any unsupported source shape:
dataset=<name>;The plugin synchronizes the complete resolved task set at job start. An unchanged set reuses the dataset version. A task addition, removal, or content change creates a version. Existing experiments stay pinned to their creation-time version.
The default template is:
{job.name} · {agent.name} · {agent.model}For one agent configuration, an exact name is valid:
--plugin-kwarg experiment_name=release-candidateFor several agent configurations, use experiment_name_template. Available fields are:
{job.name}{job.id}{dataset.name}{agent.name}{agent.model}{agent.short_digest}Agent names do not need to be unique. Two agents with the same name but different effective configurations each get an experiment. If rendered names collide, the plugin appends the short agent digest. Stable identity comes from the Harbor job ID and effective agent configuration, not the display name.
Keep behavioral outcomes separate from execution health. Phoenix does not run another evaluator. The plugin records Harbor's completed verifier rewards as named experiment evaluations with the CODE annotator kind.
| Evaluation | Interpretation |
|---|---|
reward | Present only when the final Harbor verifier emits a literal reward key. A value of 0 is behavioral failure, not an infrastructure error. |
infra_ok | Present on every run. 1 means Harbor recorded no trial or step exception. 0 means at least one exception occurred. |
<reward_key> | A task-specific final-verifier score in its original numeric scale. |
<step_name>.<reward_key> | A task-specific step score for multi-step diagnosis. |
Do not infer reward from another lone key. Check its coverage before computing cross-task summaries.
A run may contain rewards and still have infra_ok=0. Harbor can produce verifier output before or alongside a step exception. Preserve both facts when explaining the result.
For a multi-step task, trial-level reward evaluations include multi_step_reward_strategy metadata. Harbor's omitted default resolves to mean; preserve an explicit final. Step evaluations and infra_ok do not include this field.
For comparisons:
reward.reward among behaviorally completed runs.infra_ok to find environment, timeout, agent-process, or verifier reliability problems.One logical trial maps to one trace and one Phoenix session. The trace starts with a plugin-owned harbor.trial CHAIN span. Multi-step trials add one harbor.step span per attempted step:
harbor.trial <task> CHAIN
harbor.step 1 <step name> CHAIN, multi-step trials only
<agent> AGENT
turn 1 AGENT, multi-turn trajectories only
iteration 1 CHAIN
<model> LLM
<tool> TOOL
<subagent> AGENTSingle-step trajectories attach directly to the trial root. Each multi-step harbor.step span carries its instruction, timing, exception status, and any verifier rewards. A step remains visible even when its trajectory is missing. All step spans and trajectories share the trial root.
Agent, model, and tool spans use their ATIF names. Fresh agent operations use iteration N; context-management operations use compaction N; and other operational system steps use system event N. Multi-turn trajectories add turn N spans. Steps with llm_call_count: 0 keep their operation and tool spans but do not create an LLM span. Continuation roots use <agent> (continuation N).
The converter supports ATIF v1.0 through v1.7. It reconstructs LLM inputs from ATIF and marks them with metadata.atif.input_source = "reconstructed". Copied prompt history contributes to those inputs without creating spans. It pairs an observation with a tool call only when source_call_id matches. Keep multiple results in order. Unmatched step observations stay on the operation span; unassigned feedback remains structured in the reconstructed input without an invented role or tool association. Structured text and image parts remain serialized, but media bytes are not uploaded. ATIF v1.8 audio fields are unsupported.
Only LLM spans carry llm.* attributes. Trajectory final_metrics remain in agent-root metadata to avoid double-counting tokens. Producer-specific cache-write and reasoning token counts map to the corresponding OpenInference token-detail attributes when present.
ATIF timestamps are point events. Zero-duration LLM or TOOL spans can mean no unambiguous duration was available. Do not interpret them as proof that the operation took no time. Declared tool order does not prove serial execution.
ATIF discovery and conversion are best-effort. If the trajectory is missing or invalid, the plugin warns and records the run without a trace. A later replay cannot attach a trace to an immutable successful run.
Selecting the plugin makes successful Phoenix recording required.
Sequential resume and replay reuse matching datasets, experiments, successful runs, evaluations, and traces. Failed runs can be retried. If another job creates a newer version of the shared dataset, recover the original experiment and keep it pinned to its creation-time version. Do not run multiple ingesters for the same Harbor job because experiment recovery is not atomic across processes.
If Phoenix reports a conflict, do not tell the user to ignore it. The plugin validates the stored run's trial output and trace identity. A mismatch requires a new Harbor job or resolution of the conflicting Phoenix record.
The plugin does not support:
For the public guide, use Phoenix's Harbor documentation. For Harbor command and task configuration, use the Harbor documentation.
e127482
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.