langfuse
Interact with Langfuse and access its documentation. Use when needing to (1) query or modify Langfuse data programmatically via the CLI — traces, prompts, datasets, scores, sessions, and any other API resource, (2) look up Langfuse documentation, concepts, integration guides, or SDK usage, or (3) understand how any Langfuse feature works. This skill covers CLI-based API access (via npx) and multiple documentation retrieval methods.
What this skill does
# Langfuse This skill helps you use Langfuse effectively across all common workflows: instrumenting applications, migrating prompts, debugging traces, and accessing data programmatically. ## Core Principles Follow these principles for ALL Langfuse work: 1. **Documentation First**: NEVER implement based on memory. Always fetch current docs before writing code (Langfuse updates frequently) See the section below on how to access documentation. 2. **CLI for Data Access**: Use `langfuse-cli` when querying/modifying Langfuse data. See the section below on how to use the CLI. 3. **Best Practices by Use Case**: Check the relevant reference file below for use-case-specific guidelines before implementing 4. **Use latest Langfuse versions**: Unless the user specified otherwise or there's a good reason, always use the latest version of Langfuse SDKs/APIs. ## Use case specific references - instrumenting an existing function/application: references/instrumentation.md - migrating prompts from a codebase into Langfuse: references/prompt-migration.md - capturing user feedback (thumbs, ratings, implicit signals) as scores on traces: references/user-feedback.md - further tips on using the Langfuse CLI: references/cli.md - upgrading or migrating Langfuse SDKs to the latest version: references/sdk-upgrade.md - judge calibration (LLM-as-a-Judge reliability, simple accuracy checks, advanced split-based validation, confusion matrices, and metric ingestion): references/judge-calibration.md - systematic error analysis — reading traces, building failure taxonomy, deciding what to fix: references/error-analysis.md - submitting feedback about this skill: references/skill-feedback.md ## 1. Langfuse API via CLI Use the `langfuse-cli` to interact with the full Langfuse REST API from the command line. Run via npx (no install required): Start by discovering the schema and available arguments: ```bash # Discover all available resources npx langfuse-cli api __schema # List actions for a resource npx langfuse-cli api <resource> --help # Show args/options for a specific action npx langfuse-cli api <resource> <action> --help ``` ### Credentials Set environment variables before making calls: ```bash export LANGFUSE_PUBLIC_KEY=pk-lf-... export LANGFUSE_SECRET_KEY=sk-lf-... export LANGFUSE_BASE_URL=https://cloud.langfuse.com # example for EU cloud. For US cloud it's us.cloud.langfuse.com, and can also be a self-hosted URL. The server must always be specified in order to access Langfuse. ``` If not set, ask the user to set them in their shell or a `.env` file (do not ask them to paste keys into chat for security reasons). Keys are found in Langfuse UI → Settings → API Keys. ### Detailed CLI Reference For common workflows, tips, and full usage patterns, see [references/cli.md](references/cli.md). ## 2. Langfuse Documentation Three methods to access Langfuse docs, in order of preference. **Always prefer your application's native web fetch and search tools** (e.g., `WebFetch`, `WebSearch`, `mcp_fetch`, etc.) over `curl` when available. The URLs and patterns below work with any fetching method — the `curl` examples are just illustrative. ### 2a. Documentation Index (llms.txt) Fetch the full index of all documentation pages: ```bash curl -s https://langfuse.com/llms.txt ``` Returns a structured list of every doc page with titles and URLs. Use this to discover the right page for a topic, then fetch that page directly. Alternatively, you can start on `https://langfuse.com/docs` and explore the site to find the page you need. ### 2b. Fetch Individual Pages as Markdown Any page listed in llms.txt can be fetched as markdown by appending `.md` to its path or by using `Accept: text/markdown` in the request headers. Use this when you know which page contains the information needed. Returns clean markdown with code examples and configuration details. ```bash curl -s "https://langfuse.com/docs/observability/overview.md" curl -s "https://langfuse.com/docs/observability/overview" -H "Accept: text/markdown" ``` ### 2c. Search Documentation When you need to find information across all docs and github issues/discussions without knowing the specific page: ```bash curl -s "https://langfuse.com/api/search-docs?query=<url-encoded-query>" ``` Example: ```bash curl -s "https://langfuse.com/api/search-docs?query=How+do+I+trace+LangGraph+agents" ``` Returns a JSON response with: - `query`: the original query - `answer`: a JSON string containing an array of matching documents, each with: - `url`: link to the doc page - `title`: page title - `source.content`: array of relevant text excerpts from the page Search is a great fallback if you cannot find the relevant pages or need more context. Especially useful when debugging issues as all GitHub Issues and Discussions are also indexed. Responses can be large — extract only the relevant portions. ### Documentation Workflow 1. Start with **llms.txt** to orient — scan for relevant page titles 2. **Fetch specific pages** when you identify the right one 3. Fall back to **search** when the topic is unclear and you want more context ## Skill Feedback When the user expresses that something about this skill is not working as expected, gives incorrect guidance, is missing information, or could be improved — offer to submit feedback to the Langfuse skill maintainers. This includes when: - The skill gave wrong or outdated instructions - A workflow didn't produce the expected result - The user wishes the skill covered something it doesn't - The user explicitly says something like "this should work differently" or "this is wrong" **Do NOT trigger this** for issues with Langfuse itself (the product) — only for issues with this skill's instructions and behavior. When triggered, follow the process in [references/skill-feedback.md](references/skill-feedback.md).
Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.