
Phoenix Integration Snippets
- 14 installs
- 10.9k repo stars
- Updated August 4, 2026
- arize-ai/phoenix
phoenix-integration-snippets is a Claude Code skill that generates and tests Phoenix tracing onboarding snippets for framework integrations and wires them into the onboarding UI.
About
phoenix-integration-snippets generates onboarding code snippets for Phoenix tracing integrations and wires them into the project onboarding UI. Developers use it to produce install-dependency and implementation code for SDKs like OpenAI, LangChain, and the Vercel AI SDK in Python or TypeScript. It requires testing each snippet verbatim in an isolated environment until traces confirm the integration works before wiring it into the onboarding registry.
- Generates onboarding tracing snippets for Phoenix integrations (OpenAI, LangChain, Vercel AI SDK)
- Produces install + implementation code in Python and TypeScript and wires it into the onboarding UI
- Requires testing every snippet verbatim in an isolated env until traces appear
Phoenix Integration Snippets by the numbers
- 14 all-time installs (skills.sh)
- Ranked #11,275 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
phoenix-integration-snippets capabilities & compatibility
- Capabilities
- tracing snippet generation · onboarding ui wiring · integration testing · instrumentation setup
- Works with
- openai · anthropic
- Use cases
- api development · documentation
- Runs
- Runs locally
- Pricing
- Free
What phoenix-integration-snippets says it does
Generates onboarding code snippets for Phoenix tracing integrations and wires them into the project onboarding UI.
Test snippets **as written** — the exact code the user will see in the onboarding UI.
Create a **fresh environment per integration** with only the packages from that snippet's `packages` array.
npx skills add https://github.com/arize-ai/phoenix --skill phoenix-integration-snippetsAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 14 |
|---|---|
| repo stars | ★ 10.9k |
| Last updated | August 4, 2026 |
| Repository | arize-ai/phoenix ↗ |
What it does
Generate and test Phoenix tracing onboarding snippets for a framework integration, then wire them into the project onboarding UI.
Who is it for?
Phoenix contributors adding a new tracing integration onboarding snippet for an SDK or framework
Skip if: End users just wanting to instrument their own app; this edits the Phoenix onboarding UI itself
When should I use this skill?
You are asked to create onboarding code, tracing setup snippets, quickstart examples, or getting-started code for a framework integration
What you get
Tested Python and TypeScript tracing snippets wired into the Phoenix onboarding registry with confirmed traces
- install + implementation tracing snippets
- onboarding UI registry entries
- confirmed trace pages
By the numbers
- 6-step workflow checklist
- 10-20 line implementation snippets
Files
Phoenix Integration Snippets
Generate onboarding snippets (install + implementation) for Phoenix tracing integrations and add them to the project onboarding UI.
Workflow
Copy this checklist and track progress:
- [ ] 1. Research: read integration docs and OpenInference repo
- [ ] 2. Determine language support (Python, TypeScript, or both)
- [ ] 3. Generate snippets following the format below
- [ ] 4. Test every language variant against Phoenix
- [ ] 5. Wire into the onboarding UI
- [ ] 6. Report results with links to trace pagesStep 1: Research. Read the relevant file in docs/phoenix/integrations/ for the framework. Also check the OpenInference repo for example code: https://github.com/Arize-ai/openinference
Step 4: Test. See Testing below. Only proceed to wiring into the UI when traces are confirmed.
Step 5: Wire into the onboarding UI. After adding docsHref and githubHref, verify every URL returns HTTP 200 before committing. For GitHub links, prefer the OpenInference repo (https://github.com/Arize-ai/openinference/tree/main/...).
Step 6: Report. Provide clickable links to the Phoenix project pages (e.g., http://localhost:6006/projects/<base64-id>/traces).
Snippet Format
Each snippet has two parts:
Packages: Array of package names. Order: phoenix-otel first, then instrumentation package, then SDK.
Do not assume the framework package bundles its model provider SDK. In a clean env, verify the exact imports used by the snippet; if the framework's OpenAI/Gemini/etc. adapter requires a separate SDK package, include it explicitly in packages.
Implementation: Working, copy-pasteable code that produces at least one trace. 10-20 lines, meaningful example prompt, no print/log statements.
Adding to the Onboarding UI
1. Add implementation function
Directory: app/src/components/project/integrationSnippets/ — read existing files to match conventions.
Do NOT pass endpoint/url in snippet code — the onboarding UI displays env vars (including PHOENIX_COLLECTOR_ENDPOINT) separately, and both register functions read it automatically.
Python: Use auto_instrument=True — no manual instrumentor calls. SDK imports must come _after_ register().
Exception: if the framework emits native OpenTelemetry spans and uses a mutating span processor, start with register(...) so Phoenix becomes the global provider the framework will use. Then add the mutating processor so it replaces Phoenix's default processor, and add the Phoenix exporter back after it.
TypeScript: ESM imports are hoisted so import ordering doesn't matter. await provider.forceFlush() is required in short-lived scripts.
2. Register the integration
File: app/src/pages/project/integrationRegistry.tsx
Import your function and add an entry to ONBOARDING_INTEGRATIONS. Pass snippet functions as direct references (they match the getImplementationCode type in integrationDefinitions.ts).
Testing
Test snippets as written — the exact code the user will see in the onboarding UI. If any modification is required to make a snippet work, that is a bug.
Isolated test environments
Create a fresh environment per integration with only the packages from that snippet's packages array. This prevents false positives from cross-contamination (e.g., an installed openinference-instrumentation-openai producing extra traces when testing a LangChain snippet).
Set PHOENIX_COLLECTOR_ENDPOINT and run the snippet code verbatim.
Use a fresh Phoenix project name per test run. Reusing an existing project can mask failures by making old traces look like the new snippet worked.
Validation checklist
For each snippet, verify:
- No export errors (no
405, noFailed to export span batch) - Traces appear in Phoenix under the expected project name
- Trace kind and structure match expectations (e.g., LangChain shows
chainspans, not just barellmspans) - Only one top-level trace per invocation (multiple top-level traces suggest instrumentor cross-contamination)
When a snippet doesn't work as-is
If you must modify the snippet code to get traces flowing, do not silently work around it and continue. Instead:
1. Fix the snippet if the change is small and clearly correct (e.g., a typo, missing import) 2. Flag to the user if the fix requires a design decision (e.g., the SDK doesn't support env-var-based config, or auto-instrumentation doesn't work for this framework)
Related skills
FAQ
How should snippets be tested?
As written, verbatim, in a fresh isolated environment with only that snippet's packages, using a fresh Phoenix project name.
Which languages are supported?
Python and TypeScript, using auto-instrumentation for Python and hoisted ESM imports for TypeScript.