Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问clear审计未展示

langfuse-observabilitylangfuse 可观测性

Agent Skill

langfuse-observability 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

436

周安装

18

GitHub Stars

公开资料未说明

下载量

143
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:langfuse-observability(langfuse 可观测性)
来源仓库:https://github.com/yonatangross/skillforge-claude-plugin
仓库路径:skills/langfuse-observability
安装命令:
npx skills add yonatangross/skillforge-claude-plugin --skill "langfuse-observability"
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

AgentSkills.tonpx skills
npx skills add yonatangross/skillforge-claude-plugin --skill "langfuse-observability"

简介

langfuse 可观测性用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 它通过关键词、任务场景或来源线索辅助信息组织,提升研究效率。
  • 安装命令为 npx skills add yonatangross/skillforge-claude-plugin --skill "langfuse-observability"。
  • 需确认权限范围和维护状态,注意是否会触发联网或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Langfuse Observability

Overview

Langfuse is the open-source LLM observability platform that OrchestKit uses for tracing, monitoring, evaluation, and prompt management. Unlike LangSmith (deprecated), Langfuse is self-hosted, free, and designed for production LLM applications.

When to use this skill:

  • Setting up LLM observability from scratch
  • Debugging slow or incorrect LLM responses
  • Tracking token usage and costs
  • Managing prompts in production
  • Evaluating LLM output quality
  • Migrating from LangSmith to Langfuse

OrchestKit Integration:

  • Status: Migrated from LangSmith (Dec 2025)
  • Location: backend/app/shared/services/langfuse/
  • MCP Server: orchestkit-langfuse (optional)

Quick Start

Setup

# backend/app/shared/services/langfuse/client.py
from langfuse import Langfuse
from app.core.config import settings

langfuse_client = Langfuse(
    public_key=settings.LANGFUSE_PUBLIC_KEY,
    secret_key=settings.LANGFUSE_SECRET_KEY,
    host=settings.LANGFUSE_HOST  # Self-hosted or cloud
)

Basic Tracing with @observe

from langfuse.decorators import observe, langfuse_context

@observe()  # Automatic tracing
async def analyze_content(content: str):
    langfuse_context.update_current_observation(
        metadata={"content_length": len(content)}
    )
    return await llm.generate(content)

Session & User Tracking

langfuse.trace(
    name="analysis",
    user_id="user_123",
    session_id="session_abc",
    metadata={"content_type": "article", "agent_count": 8},
    tags=["production", "orchestkit"]
)

Core Features Summary

FeatureDescriptionReference
Distributed TracingTrack LLM calls with parent-child spansreferences/tracing-setup.md
Cost TrackingAutomatic token & cost calculationreferences/cost-tracking.md
Prompt ManagementVersion control for promptsreferences/prompt-management.md
LLM EvaluationCustom scoring with G-Evalreferences/evaluation-scores.md
Session TrackingGroup related tracesreferences/session-tracking.md
Experiments APIA/B testing & benchmarksreferences/experiments-api.md
Multi-Judge EvalEnsemble LLM evaluationreferences/multi-judge-evaluation.md

References

Tracing Setup

See: references/tracing-setup.md

Key topics covered:

  • Initializing Langfuse client with @observe decorator
  • Creating nested traces and spans
  • Tracking LLM generations with metadata
  • LangChain/LangGraph CallbackHandler integration
  • Workflow integration patterns

Cost Tracking

See: references/cost-tracking.md

Key topics covered:

  • Automatic cost calculation from token usage
  • Custom model pricing configuration
  • Monitoring dashboard SQL queries
  • Cost tracking per analysis/user
  • Daily cost trend analysis

Prompt Management

See: references/prompt-management.md

Key topics covered:

  • Prompt versioning and labels (production/staging/draft)
  • Template variables with Jinja2 syntax
  • A/B testing prompt versions
  • OrchestKit 4-level caching architecture (L1-L4)
  • Linking prompts to generation spans

LLM Evaluation

See: references/evaluation-scores.md

Key topics covered:

  • Custom scoring with numeric/categorical values
  • G-Eval automated quality assessment
  • Score trends and comparisons
  • Filtering traces by score thresholds

Session Tracking

See: references/session-tracking.md

Key topics covered:

  • Grouping traces by session_id
  • Multi-turn conversation tracking
  • User and metadata analytics

Experiments API

See: references/experiments-api.md

Key topics covered:

  • Creating test datasets in Langfuse
  • Running automated evaluations
  • Regression testing for LLMs
  • Benchmarking prompt versions

Multi-Judge Evaluation

See: references/multi-judge-evaluation.md

Key topics covered:

  • Multiple LLM judges for quality assessment
  • Weighted scoring across judges
  • OrchestKit langfuse_evaluators.py integration

Best Practices

  1. Always use @observe decorator for automatic tracing
  2. Set user_id and session_id for better analytics
  3. Add meaningful metadata (content_type, analysis_id, etc.)
  4. Score all production traces for quality monitoring
  5. Use prompt management instead of hardcoded prompts
  6. Monitor costs daily to catch spikes early
  7. Create datasets for regression testing
  8. Tag production vs staging traces

LangSmith Migration Notes

Key Differences:

AspectLangfuseLangSmith
HostingSelf-hosted, open-sourceCloud-only, proprietary
CostFreePaid
PromptsBuilt-in managementExternal storage needed
Decorator@observe@traceable

External References


Related Skills

  • observability-monitoring - General observability patterns for metrics, logging, and alerting
  • llm-evaluation - Evaluation patterns that integrate with Langfuse scoring
  • llm-streaming - Streaming response patterns with trace instrumentation
  • prompt-caching - Caching strategies that reduce costs tracked by Langfuse

Key Decisions

DecisionChoiceRationale
Observability platformLangfuse (not LangSmith)Open-source, self-hosted, free, built-in prompt management
Tracing approach@observe decoratorAutomatic, low-overhead instrumentation
Cost trackingAutomatic token countingBuilt-in model pricing with custom overrides
Prompt managementLangfuse nativeVersion control, A/B testing, labels in one place

Capability Details

distributed-tracing

Keywords: trace, tracing, observability, span, nested, parent-child, observe Solves:

  • How do I trace LLM calls across my application?
  • How to debug slow LLM responses?
  • Track execution flow in multi-agent workflows
  • Create nested trace spans

cost-tracking

Keywords: cost, token usage, pricing, budget, spend, expense Solves:

  • How do I track LLM costs?
  • Calculate token usage and pricing
  • Monitor AI budget and spending
  • Track cost per user or session

prompt-management

Keywords: prompt version, prompt template, prompt control, prompt registry Solves:

  • How do I version control prompts?
  • Manage prompts in production
  • A/B test different prompt versions
  • Link prompts to traces

llm-evaluation

Keywords: score, quality, evaluation, rating, assessment, g-eval Solves:

  • How do I evaluate LLM output quality?
  • Score responses with custom metrics
  • Track quality trends over time
  • Compare prompt versions by quality

session-tracking

Keywords: session, user tracking, conversation, group traces Solves:

  • How do I group related traces?
  • Track multi-turn conversations
  • Monitor per-user performance
  • Organize traces by session

langchain-integration

Keywords: langchain, callback, handler, langgraph integration Solves:

  • How do I integrate Langfuse with LangChain?
  • Use CallbackHandler for tracing
  • Automatic LangGraph workflow tracing
  • LangChain observability setup

datasets-evaluation

Keywords: dataset, test set, evaluation dataset, benchmark Solves:

  • How do I create test datasets in Langfuse?
  • Run automated evaluations
  • Regression testing for LLMs
  • Benchmark prompt versions

ab-testing

Keywords: a/b test, experiment, compare prompts, variant testing Solves:

  • How do I A/B test prompts?
  • Compare two prompt versions
  • Experimental prompt evaluation
  • Statistical prompt testing

monitoring-dashboard

Keywords: dashboard, analytics, metrics, monitoring, queries Solves:

  • What are the most expensive traces?
  • Average cost by agent type
  • Quality score trends
  • Custom monitoring queries

orchestkit-integration

Keywords: orchestkit, migration, setup, workflow integration Solves:

  • How does OrchestKit use Langfuse?
  • Migrate from LangSmith to Langfuse
  • OrchestKit workflow tracing patterns
  • Cost tracking per analysis

multi-judge-evaluation

Keywords: multi judge, g-eval, multiple evaluators, ensemble evaluation, weighted scoring Solves:

  • How do I use multiple LLM judges to evaluate quality?
  • Set up G-Eval criteria evaluation
  • Configure weighted scoring across judges
  • Wire OrchestKit's existing langfuse_evaluators.py

experiments-api

Keywords: experiment, dataset, benchmark, regression test, prompt testing Solves:

  • How do I run experiments across datasets?
  • A/B test models and prompts systematically
  • Track quality regression over time
  • Compare experiment results

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

28.16%
按下载量换算40

OpenCode

22.12%
按下载量换算32

Antigravity

18.72%
按下载量换算27

Gemini CLI

11.83%
按下载量换算17

windsurf

8.29%
按下载量换算12

trae

3.41%
按下载量换算5

安全审计

暂无安全审计结果可展示。

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills