Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计异常

langfuse-prompt-migrationlangfuse 提示迁移

Agent Skill

用于辅助提示词、系统指令、Agent 行为约束和工作流模板的整理。它适合让 Agent 规范任务边界、统一输出格式、拆分操作步骤或优化提示词可复用性。使用时需要保留真实业务约束,不要把示例当硬规则;涉及自动执行、外部工具或高风险操作时,应在提示词中明确确认步骤、权限边界和失败处理方式。

总安装

2,023

周安装

86

GitHub Stars

110

下载量

709
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/langfuse/skills --skill langfuse-prompt-migration

简介

用于辅助提示词、系统指令和工作流模板的整理。

  • 适合规范任务边界、统一输出格式或优化提示词复用性。
  • 使用时需保留真实业务约束,不要把示例当硬规则。
  • 安装命令:npx skills add https://github.com/langfuse/skills --skill langfuse-prompt-migration。
  • 涉及自动执行时,应在提示词中明确确认步骤和失败处理方式。

SKILL.md

Langfuse Prompt Migration

Migrate hardcoded prompts to Langfuse for version control, A/B testing, and deployment-free iteration.

Prerequisites

Verify credentials before starting:

echo $LANGFUSE_PUBLIC_KEY   # pk-...
echo $LANGFUSE_SECRET_KEY   # sk-...
echo $LANGFUSE_HOST         # https://cloud.langfuse.com or self-hosted

If not set, ask user to configure them first.

Migration Flow

1. Scan codebase for prompts
2. Analyze templating compatibility
3. Propose structure (names, subprompts, variables)
4. User approves
5. Create prompts in Langfuse
6. Refactor code to use get_prompt()
7. Link prompts to traces (if tracing enabled)
8. Verify application works

Step 1: Find Prompts

Search for these patterns:

FrameworkLook for
OpenAImessages=[{"role": "system", "content": "..."}]
Anthropicsystem="..."
LangChainChatPromptTemplate, SystemMessage
Vercel AIsystem: "...", prompt: "..."
RawMulti-line strings near LLM calls

Step 2: Check Templating Compatibility

CRITICAL: Langfuse only supports simple {{variable}} substitution. No conditionals, loops, or filters.

Template FeatureLangfuse NativeAction
{{variable}}Direct migration
{var} / ${var}⚠️Convert to {{var}}
{% if %} / {% for %}Move logic to code
`{{var \filter}}`Apply filter in code

Decision Tree

Contains {% if %}, {% for %}, or filters?
├─ No → Direct migration
└─ Yes → Choose:
    ├─ Option A (RECOMMENDED): Move logic to code, pass pre-computed values
    └─ Option B: Store raw template, compile client-side with Jinja2
        └─ ⚠️ Loses: Playground preview, UI experiments

Simplifying Complex Templates

Conditionals → Pre-compute in code:

# Instead of {% if user.is_premium %}...{% endif %} in prompt
# Use {{tier_message}} and compute value in code before compile()

Loops → Pre-format in code:

# Instead of {% for tool in tools %}...{% endfor %} in prompt
# Use {{tools_list}} and format the list in code before compile()

For external templating details, fetch: https://langfuse.com/faq/all/using-external-templating-libraries

Step 3: Propose Structure

Naming Conventions

RuleExampleBad
Lowercase, hyphenatedchat-assistantChatAssistant_v2
Feature-baseddocument-summarizerprompt1
Hierarchical for relatedsupport/triagesupportTriage
Prefix subprompts with __base-personalityshared-personality

Identify Subprompts

Extract when:

  • Same text in 2+ prompts
  • Represents distinct component (personality, safety rules, format)
  • Would need to change together

Variable Extraction

Make VariableKeep Hardcoded
User-specific ({{user_name}})Output format instructions
Dynamic content ({{context}})Safety guardrails
Per-request ({{query}})Persona/personality
Environment-specific ({{company_name}})Static examples

Step 4: Present Plan to User

Format:

Found N prompts across M files:

src/chat.py:
  - System prompt (47 lines) → 'chat-assistant'

src/support/triage.py:
  - Triage prompt (34 lines) → 'support/triage'
    ⚠️ Contains {% if %} - will simplify

Subprompts to extract:
  - '_base-personality' - used by: chat-assistant, support/triage

Variables to add:
  - {{user_name}} - hardcoded in 2 prompts

Proceed?

Step 5: Create Prompts in Langfuse

Use langfuse.create_prompt() with:

  • name: Your chosen name
  • prompt: Template text (or message array for chat type)
  • type: "text" or "chat"
  • labels: ["production"] (they're already live)
  • config: Optional model settings

Labeling strategy:

  • production → All migrated prompts
  • staging → Add later for testing
  • latest → Auto-applied by Langfuse

For full API: fetch https://langfuse.com/docs/prompts/get-started

Step 6: Refactor Code

Replace hardcoded prompts with:

prompt = langfuse.get_prompt("name", label="production")
messages = prompt.compile(var1=value1, var2=value2)

Key points:

  • Always use label="production" (not latest) for stability
  • Call .compile() to substitute variables
  • For chat prompts, result is message array ready for API

For SDK examples (Python/JS/TS): fetch https://langfuse.com/docs/prompts/get-started

Step 7: Link Prompts to Traces

If codebase uses Langfuse tracing, link prompts so you can see which version produced each response.

Detect Existing Tracing

Look for:

  • @observe() decorators
  • langfuse.trace() calls
  • from langfuse.openai import openai (instrumented client)

Link Methods

SetupHow to Link
@observe() decoratorlangfuse_context.update_current_observation(prompt=prompt)
Manual tracingtrace.generation(prompt=prompt,...)
OpenAI integrationopenai.chat.completions.create(..., langfuse_prompt=prompt)

Verify in UI

  1. Go to Traces → select a trace
  2. Click on Generation
  3. Check Prompt field shows name and version

For tracing details: fetch https://langfuse.com/docs/prompts/get-started#link-with-langfuse-tracing

Step 8: Verify Migration

Checklist

  • All prompts created with production label
  • Code fetches with label="production"
  • Variables compile without errors
  • Subprompts resolve correctly
  • Application behavior unchanged
  • Generations show linked prompt in UI (if tracing)

Common Issues

IssueSolution
PromptNotFoundErrorCheck name spelling
Variables not replacedUse {{var}} not {var}, call .compile()
Subprompt not resolvedMust exist with same label
Old prompt cachedRestart app

Out of Scope

  • Prompt engineering (writing better prompts)
  • Evaluation setup
  • A/B testing workflow
  • Non-LLM string templates

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

展示第三方安全扫描或审计结果

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

平台分布

Claude Code

25.39%
按下载量换算180

Codex

23.75%
按下载量换算168

OpenCode

18.58%
按下载量换算132

Cursor

13.47%
按下载量换算96

Gemini CLI

8.62%
按下载量换算61

Antigravity

3.71%
按下载量换算26

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills