arize-link

Generates deep links to Arize UI traces, spans, sessions, datasets, and evaluators.

1|Updated Nov 9, 2025
One-click install
npx skills add https://github.com/akashjpal/question-generator --skill arize-link-akashjpal
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: arize-link
Source: https://github.com/akashjpal/question-generator/tree/main/.agents/skills/arize-link
Command: npx skills add https://github.com/akashjpal/question-generator --skill arize-link-akashjpal

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Manually constructing Arize UI URLs is error-prone: IDs must be base64-encoded, time ranges must be set correctly, and each resource type has a different URL pattern. This Skill produces correct, clickable deep links to any Arize resource so you can share traces, datasets, and evaluators with teammates without 404s or empty views. ## Core Features & Use Cases - Deep Link Generation: Builds URLs for traces, spans, sessions, datasets, labeling queues, evaluators, and annotation configs using the correct template for each resource type. - ID and Time-Range Validation: Verifies that path IDs are base64-encoded and computes appropriate startA/endA time windows so links actually show data instead of "no recent data". - Use Case: After debugging a failing LLM trace, you have the trace_id and span_id from exported data. Use this Skill to generate a clickable Arize link with the correct time window and share it in your incident report so teammates land directly on the highlighted span. ## Quick Start Generate an Arize link to trace abc123 in my project so I can share it with my team.

Frequently Asked Questions about arize-link

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create a link to a specific trace in Arize?

Build a URL with your base64-encoded org_id, space_id, and project_id, then add selectedTraceId plus startA and endA epoch-millisecond parameters. The time range is required or the trace may fall outside the default 7-day window.

How to link to a specific span within an Arize trace?

Append selectedSpanId={span_id} to the trace URL alongside selectedTraceId. Verify the span_id belongs to that trace using exported span data, otherwise the span will not be highlighted.

Why does my Arize link show no data or a 404?

Empty views mean the trace falls outside the startA/endA window, so widen the range from one hour to one day or 90 days. A 404 means an ID is wrong or not base64-encoded; copy IDs directly from the Arize browser URL.

Do Arize URL IDs need to be base64-encoded?

Yes, all path IDs (org, space, project, dataset, queue, evaluator) must be base64-encoded. A raw numeric ID produces a valid-looking URL that returns a 404, so copy IDs from the browser address bar.

Can I link to a specific evaluator version in Arize?

Yes, append ?version={version_url_encoded} to the evaluator URL, URL-encoding characters like trailing equals signs as %3D. Omit the parameter to link to the latest version.