{"kind":"Skill","metadata":{"namespace":"community","name":"arize-link","version":"0.1.0"},"spec":{"description":"Generates deep links to the Arize UI for traces, spans, sessions, datasets, labeling queues, evaluators, and annotation configs. Produces clickable URLs for sharing Arize resources with team members. Use when the user wants to link to or open a trace, span, session, dataset, evaluator, or annotation config in the Arize UI.","files":{"SKILL.md":"---\nname: arize-link\ndescription: Generates deep links to the Arize UI for traces, spans, sessions, datasets, labeling queues, evaluators, and annotation configs. Produces clickable URLs for sharing Arize resources with team members. Use when the user wants to link to or open a trace, span, session, dataset, evaluator, or annotation config in the Arize UI.\nmetadata:\n  author: arize\n  version: \"1.0\"\n---\n\n# Arize Link\n\nGenerate deep links to the Arize UI for traces, spans, sessions, datasets, labeling queues, evaluators, and annotation configs.\n\n## When to Use\n\n- User wants a link to a trace, span, session, dataset, labeling queue, evaluator, or annotation config\n- You have IDs from exported data or logs and need to link back to the UI\n- User asks to \"open\" or \"view\" any of the above in Arize\n\n## Required Inputs\n\nCollect from the user or context (exported trace data, parsed URLs):\n\n| Always required | Resource-specific |\n|---|---|\n| `org_id` (base64) | `project_id` + `trace_id` [+ `span_id`] — trace/span |\n| `space_id` (base64) | `project_id` + `session_id` — session |\n| | `dataset_id` — dataset |\n| | `queue_id` — specific queue (omit for list) |\n| | `evaluator_id` [+ `version`] — evaluator |\n\n**All path IDs must be base64-encoded** (characters: `A-Za-z0-9+/=`). A raw numeric ID produces a valid-looking URL that 404s. If the user provides a number, ask them to copy the ID directly from their Arize browser URL (`https://app.arize.com/organizations/{org_id}/spaces/{space_id}/…`). If you have a raw internal ID (e.g. `Organization:1:abC1`), base64-encode it before inserting into the URL.\n\n## URL Templates\n\nBase URL: `https://app.arize.com` (override for on-prem)\n\n**Trace** (add `\u0026selectedSpanId={span_id}` to highlight a specific span):\n```\n{base_url}/organizations/{org_id}/spaces/{space_id}/projects/{project_id}?selectedTraceId={trace_id}\u0026queryFilterA=\u0026selectedTab=llmTracing\u0026timeZoneA=America%2FLos_Angeles\u0026startA={start_ms}\u0026endA={end_ms}\u0026envA=tracing\u0026modelType=generative_llm\n```\n\n**Session:**\n```\n{base_url}/organizations/{org_id}/spaces/{space_id}/projects/{project_id}?selectedSessionId={session_id}\u0026queryFilterA=\u0026selectedTab=llmTracing\u0026timeZoneA=America%2FLos_Angeles\u0026startA={start_ms}\u0026endA={end_ms}\u0026envA=tracing\u0026modelType=generative_llm\n```\n\n**Dataset** (`selectedTab`: `examples` or `experiments`):\n```\n{base_url}/organizations/{org_id}/spaces/{space_id}/datasets/{dataset_id}?selectedTab=examples\n```\n\n**Queue list / specific queue:**\n```\n{base_url}/organizations/{org_id}/spaces/{space_id}/queues\n{base_url}/organizations/{org_id}/spaces/{space_id}/queues/{queue_id}\n```\n\n**Evaluator** (omit `?version=…` for latest):\n```\n{base_url}/organizations/{org_id}/spaces/{space_id}/evaluators/{evaluator_id}\n{base_url}/organizations/{org_id}/spaces/{space_id}/evaluators/{evaluator_id}?version={version_url_encoded}\n```\nThe `version` value must be URL-encoded (e.g., trailing `=` → `%3D`).\n\n**Annotation configs:**\n```\n{base_url}/organizations/{org_id}/spaces/{space_id}/annotation-configs\n```\n\n## Time Range\n\nCRITICAL: `startA` and `endA` (epoch milliseconds) are **required** for trace/span/session links — omitting them defaults to the last 7 days and will show \"no recent data\" if the trace falls outside that window.\n\n**Priority order:**\n1. **User-provided URL** — extract and reuse `startA`/`endA` directly.\n2. **Span `start_time`** — pad ±1 day (or ±1 hour for a tighter window).\n3. **Fallback** — last 90 days (`now - 90d` to `now`).\n\nPrefer tight windows; 90-day windows load slowly.\n\n## Instructions\n\n1. Gather IDs from user, exported data, or URL context.\n2. Verify all path IDs are base64-encoded.\n3. Determine `startA`/`endA` using the priority order above.\n4. Substitute into the appropriate template and present as a clickable markdown link.\n\n## Troubleshooting\n\n| Problem | Solution |\n|---|---|\n| \"No data\" / empty view | Trace outside time window — widen `startA`/`endA` (±1h → ±1d → 90d). |\n| 404 | ID wrong or not base64. Re-check `org_id`, `space_id`, `project_id` from the browser URL. |\n| Span not highlighted | `span_id` may belong to a different trace. Verify against exported span data. |\n| `org_id` unknown | `ax` CLI doesn't expose it. Ask user to copy from `https://app.arize.com/organizations/{org_id}/spaces/{space_id}/…`. |\n\n## Related Skills\n\n- **arize-trace**: Export spans to get `trace_id`, `span_id`, and `start_time`.\n\n## Examples\n\nSee references/EXAMPLES.md for a complete set of concrete URLs for every link type.\n","references/EXAMPLES.md":"# Arize Link Examples\n\nPlaceholders used throughout:\n- `{org_id}` — base64-encoded org ID\n- `{space_id}` — base64-encoded space ID\n- `{project_id}` — base64-encoded project ID\n- `{start_ms}` / `{end_ms}` — epoch milliseconds (e.g. 1741305600000 / 1741392000000)\n\n---\n\n## Trace\n\n```\nhttps://app.arize.com/organizations/{org_id}/spaces/{space_id}/projects/{project_id}?selectedTraceId={trace_id}\u0026queryFilterA=\u0026selectedTab=llmTracing\u0026timeZoneA=America%2FLos_Angeles\u0026startA={start_ms}\u0026endA={end_ms}\u0026envA=tracing\u0026modelType=generative_llm\n```\n\n## Span (trace + span highlighted)\n\n```\nhttps://app.arize.com/organizations/{org_id}/spaces/{space_id}/projects/{project_id}?selectedTraceId={trace_id}\u0026selectedSpanId={span_id}\u0026queryFilterA=\u0026selectedTab=llmTracing\u0026timeZoneA=America%2FLos_Angeles\u0026startA={start_ms}\u0026endA={end_ms}\u0026envA=tracing\u0026modelType=generative_llm\n```\n\n## Session\n\n```\nhttps://app.arize.com/organizations/{org_id}/spaces/{space_id}/projects/{project_id}?selectedSessionId={session_id}\u0026queryFilterA=\u0026selectedTab=llmTracing\u0026timeZoneA=America%2FLos_Angeles\u0026startA={start_ms}\u0026endA={end_ms}\u0026envA=tracing\u0026modelType=generative_llm\n```\n\n## Dataset (examples tab)\n\n```\nhttps://app.arize.com/organizations/{org_id}/spaces/{space_id}/datasets/{dataset_id}?selectedTab=examples\n```\n\n## Dataset (experiments tab)\n\n```\nhttps://app.arize.com/organizations/{org_id}/spaces/{space_id}/datasets/{dataset_id}?selectedTab=experiments\n```\n\n## Labeling Queue list\n\n```\nhttps://app.arize.com/organizations/{org_id}/spaces/{space_id}/queues\n```\n\n## Labeling Queue (specific)\n\n```\nhttps://app.arize.com/organizations/{org_id}/spaces/{space_id}/queues/{queue_id}\n```\n\n## Evaluator (latest version)\n\n```\nhttps://app.arize.com/organizations/{org_id}/spaces/{space_id}/evaluators/{evaluator_id}\n```\n\n## Evaluator (specific version)\n\n```\nhttps://app.arize.com/organizations/{org_id}/spaces/{space_id}/evaluators/{evaluator_id}?version={version_url_encoded}\n```\n\n## Annotation Configs\n\n```\nhttps://app.arize.com/organizations/{org_id}/spaces/{space_id}/annotation-configs\n```\n"},"import":{"commit_sha":"541b7819d8c3545c6df122491af4fa1eae415779","imported_at":"2026-05-18T20:05:35Z","license_text":"MIT License\n\nCopyright GitHub, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.","owner":"github","repo":"github/awesome-copilot","source_url":"https://github.com/github/awesome-copilot/tree/541b7819d8c3545c6df122491af4fa1eae415779/plugins/arize-ax/skills/arize-link"}},"content_hash":[23,156,163,143,189,58,240,57,85,80,240,114,78,215,122,175,181,129,32,14,220,43,255,219,142,141,148,40,14,69,30,198],"trust_level":"unsigned","yanked":false}
