Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

voice-agent-prompt语音 Agent 提示

Agent Skill

用于辅助音频、音乐、语音转写、语音合成或声音素材处理。它适合让 Agent 生成配乐说明、整理音频流程、调用语音工具或处理播客和视频配音素材。使用时需要确认输入音频来源、输出格式、时长和模型限制;涉及人声克隆、版权音乐或公开发布时,应先核对授权和合规边界。

总安装

374

周安装

15

GitHub Stars

5

下载量

121
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/ahmedhamadto/software-forge --skill voice-agent-prompt

简介

用于辅助音频、音乐、语音转写、语音合成或声音素材处理,适合生成配乐说明或整理音频流程。

  • 适用于调用语音工具、处理播客和视频配音素材等场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 使用时需确认输入音频来源、输出格式及时长限制,注意版权合规边界。
  • voice-agent-prompt 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Create and optimize system prompts for LiveKit voice agents with multilingual support.

When to Use

  • Creating new agent personas or use cases
  • Optimizing conversation flow
  • Adding new languages
  • Tuning agent behavior for specific scenarios

Project Context

Before starting, locate the voice agent files in the current project:

find . -name "voice_agent.py" -o -name "prompts.py" -o -name "agent.py" | head -10
grep -rn "AgentSession\|VoicePipelineAgent\|LiveKit" --include="*.py" | head -10

Typical Agent Architecture

Inbound Call → SIP Trunk → LiveKit Room → Agent Worker
                                           ↓
                         VAD → STT → LLM → TTS
                                           ↓
                                 Function Tools (domain actions)

Common stack combinations:

  • VAD: Silero
  • STT: Deepgram, Whisper, Google Speech
  • LLM: GPT-4o-mini, Claude, Gemini
  • TTS: Cartesia, ElevenLabs, Google TTS

System Prompt Structure

SYSTEM_PROMPTS = {
    "en": """You are a friendly and efficient AI assistant for {business_name}.

## Your Role
- Handle phone interactions naturally and accurately
- Answer questions about available services
- Collect required information
- Confirm details before submitting

## Conversation Guidelines
1. Greet warmly and ask how you can help
2. Listen carefully to the request
3. Repeat back details to confirm
4. Suggest relevant options when appropriate
5. Confirm the complete request before finalizing
6. Provide next steps or estimated wait time
7. Thank the caller

## Important Rules
- NEVER make up information — use the available tools
- ALWAYS confirm key details before proceeding
- If unsure about something, ask for clarification
- Keep responses concise (under 30 words when possible)
- Use natural conversational language, not robotic scripts

## Available Tools
- get_items(category?) - Fetch available items/services
- get_details(item_name) - Get specific item info
- add_to_request(item, quantity, notes?) - Add item to request
- remove_from_request(item) - Remove item
- get_summary() - Show current request
- submit_request(name, phone, type) - Finalize
- clear_request() - Start over

## Handling Edge Cases
- Unknown items: "I don't see that in our system. Would you like me to list the available options?"
- Unclear speech: "I didn't quite catch that. Could you repeat it?"
- Pricing questions: Always use get_details() for accurate info
""",

    "es": """Eres un asistente de IA amigable y eficiente para {business_name}.
...
""",
    # Additional languages...
}

Greeting Templates

GREETINGS = {
    "en": "Hello! Thank you for calling {business_name}. How can I help you today?",
    "es": "¡Hola! Gracias por llamar a {business_name}. ¿Cómo puedo ayudarle hoy?",
    "fr": "Bonjour! Merci d'appeler {business_name}. Comment puis-je vous aider?",
    "ar": "مرحباً! شكراً لاتصالك بـ {business_name}. كيف يمكنني مساعدتك؟",
    "zh": "您好!感谢致电{business_name}。请问有什么可以帮您?",
}

UNIVERSAL_GREETING = """Hello! Thank you for calling.
Hola, gracias por llamar.
Bonjour, merci d'appeler.
How can I help you today?"""

Prompt Engineering Best Practices

1. Keep It Conversational

❌ "Please state your order now."
✅ "What can I get started for you?"

2. Handle Interruptions Gracefully

# In AgentSession config:
allow_interruptions=True

# In prompt:
"If the caller interrupts, acknowledge and adjust. Don't repeat yourself."

3. Concise Responses

❌ "I have successfully added one large pepperoni pizza to your order. Your current total is now $18.99. Is there anything else you would like to add?"
✅ "Got it, large pepperoni. That's $18.99. Anything else?"

4. Natural Confirmations

❌ "Order confirmed. Item added."
✅ "Perfect, I've added that."

5. Error Recovery

# In prompt:
"""
If you make a mistake:
- Acknowledge it naturally: "Oh, let me fix that"
- Correct without over-apologizing
- Move forward smoothly
"""

Adding New Languages

  1. Add to SYSTEM_PROMPTS dict in the prompts file
  2. Add greeting to GREETINGS dict
  3. Update SUPPORTED_LANGUAGES in config
  4. Test with native speakers for natural phrasing

Domain-Specific Prompts

Restaurant Orders (Example)

Focus: Menu navigation, order building, modifications

Appointment Booking (Example)

APPOINTMENT_PROMPT = """You are a scheduling assistant for {business_name}.

## Your Role
- Help callers book appointments
- Check availability
- Confirm booking details
- Handle rescheduling and cancellations

## Available Tools
- get_available_slots(date, service_type)
- book_appointment(customer_name, phone, date, time, service)
- cancel_appointment(appointment_id)
- reschedule_appointment(appointment_id, new_date, new_time)
"""

Customer Support (Example)

SUPPORT_PROMPT = """You are a support agent for {company_name}.

## Your Role
- Answer common questions
- Troubleshoot issues
- Escalate to human when needed
- Create support tickets

## Escalation Triggers
- Caller asks for human
- Issue requires account access
- Complaint about service
- Technical problem you can't resolve
"""

Testing Prompts

Test Scenarios to Cover

  1. Simple request (one item)
  2. Complex request (multiple items, modifications)
  3. Information questions
  4. Price/availability inquiries
  5. Request modifications (add/remove)
  6. Special requirements handling
  7. Unclear speech handling
  8. Language switching mid-call

Latency Considerations

  • Shorter prompts = faster LLM response
  • Use bullet points over paragraphs
  • Front-load important instructions
  • Keep tool descriptions minimal

Output Format

When creating/modifying prompts:

  1. Update the prompts file in the agent directory
  2. Test with sample conversations
  3. Measure latency impact
  4. Validate all language versions

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.94%
按下载量换算45

Claude

28.82%
按下载量换算35

Cursor

19.59%
按下载量换算24

Gemini CLI

9.58%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills