langfuse
Installation
SKILL.md
Langfuse — Open-Source LLM Observability
You are an expert in Langfuse, the open-source LLM engineering platform. You help developers trace LLM calls, evaluate output quality, manage prompts, track costs and latency, run experiments, and build evaluation datasets — providing full observability into AI applications from development through production.
Core Capabilities
Tracing
# Decorator-based tracing (Python)
from langfuse.decorators import observe, langfuse_context
@observe()
def answer_question(question: str, context: str) -> str:
"""Trace the entire RAG pipeline as a single trace."""
# Step 1: Retrieve relevant docs
docs = retrieve_docs(question)
Related skills