arize
You are an expert in Arize and its open-source Phoenix library for AI observability. You help developers monitor LLM applications with tracing, evaluation, embedding analysis, drift detection, and retrieval quality metrics — using Phoenix for local development (open-source, self-hosted) and Arize platform for production monitoring at scale.
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o arize.zip https://jpskill.com/download/14650.zip && unzip -o arize.zip && rm arize.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/14650.zip -OutFile "$d\arize.zip"; Expand-Archive "$d\arize.zip" -DestinationPath $d -Force; ri "$d\arize.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
arize.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
arizeフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 1
📖 Claude が読む原文 SKILL.md(中身を展開)
この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。
Arize (Phoenix) — AI Observability Platform
You are an expert in Arize and its open-source Phoenix library for AI observability. You help developers monitor LLM applications with tracing, evaluation, embedding analysis, drift detection, and retrieval quality metrics — using Phoenix for local development (open-source, self-hosted) and Arize platform for production monitoring at scale.
Core Capabilities
Phoenix Local Setup
import phoenix as px
from phoenix.otel import register
# Launch Phoenix locally (browser UI on localhost:6006)
px.launch_app()
# Register as OpenTelemetry trace provider
tracer_provider = register(project_name="my-llm-app")
# Auto-instrument OpenAI
from openinference.instrumentation.openai import OpenAIInstrumentor
OpenAIInstrumentor().instrument(tracer_provider=tracer_provider)
# Now all OpenAI calls are traced
import openai
client = openai.OpenAI()
response = client.chat.completions.create(
model="gpt-4o",
messages=[{"role": "user", "content": "Explain CRDT to a junior dev"}],
)
# Open localhost:6006 — see traces, latency, tokens, cost
RAG Evaluation
from phoenix.evals import (
HallucinationEvaluator,
QAEvaluator,
RelevanceEvaluator,
run_evals,
)
from phoenix.evals.models import OpenAIModel
eval_model = OpenAIModel(model="gpt-4o")
# Evaluate RAG quality on your traces
hallucination_eval = HallucinationEvaluator(eval_model)
qa_eval = QAEvaluator(eval_model)
relevance_eval = RelevanceEvaluator(eval_model)
# Pull traces from Phoenix
traces_df = px.Client().get_spans_dataframe(
filter_condition="span_kind == 'LLM'",
)
# Run evaluations
results = run_evals(
dataframe=traces_df,
evaluators=[hallucination_eval, qa_eval, relevance_eval],
provide_explanation=True,
)
# Results: per-trace hallucination scores, QA accuracy, retrieval relevance
# All visible in Phoenix UI with explanations
Embedding Analysis
import phoenix as px
import pandas as pd
# Analyze embedding drift and clustering
embeddings_df = pd.DataFrame({
"text": documents,
"embedding": embeddings, # numpy arrays
"category": categories,
})
# Launch with embedding visualization
session = px.launch_app(
primary=px.Inferences(embeddings_df, schema=px.Schema(
embedding=px.EmbeddingColumnNames(
vector_column_name="embedding",
raw_data_column_name="text",
),
tag_column_names=["category"],
)),
)
# UMAP visualization in browser — see clusters, outliers, drift
Production Monitoring (Arize Platform)
from arize.pandas.logger import Client
from arize.utils.types import ModelTypes, Environments
arize_client = Client(
space_key=os.environ["ARIZE_SPACE_KEY"],
api_key=os.environ["ARIZE_API_KEY"],
)
# Log predictions for monitoring
arize_client.log(
dataframe=predictions_df,
model_id="support-chatbot-v2",
model_version="2.1.0",
model_type=ModelTypes.GENERATIVE_LLM,
environment=Environments.PRODUCTION,
schema=arize_schema,
)
# Arize platform: drift detection, performance dashboards, alerting
Installation
pip install arize-phoenix # Open-source local
pip install arize # Arize platform client
pip install openinference-instrumentation-openai # Auto-instrumentation
Best Practices
- Phoenix for dev — Run locally with
px.launch_app(); free, open-source, no data leaves your machine - Auto-instrumentation — Use OpenInference instrumentors for OpenAI, LangChain, LlamaIndex; zero code changes
- RAG evaluations — Run hallucination + relevance + QA evals on production traces; catch quality regressions
- Embedding viz — Use UMAP visualization to find clusters, outliers, and distribution drift in your data
- OpenTelemetry native — Phoenix is an OTLP collector; integrates with existing observability stacks
- Arize for production — Scale to millions of traces; automated drift detection and alerting
- LLM-as-judge — Built-in evaluators use GPT-4 to score hallucination, relevance; provide explanations
- Trace filtering — Filter by span kind, model, latency, error; drill into problematic traces