Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

voice-ux-pro语音用户体验专业版

Agent Skill

用于辅助界面设计、视觉规范、排版、配色、布局和交互体验优化。它适合让 Agent 根据产品场景整理页面结构、生成 UI 方案、检查视觉一致性或改进组件层级。使用时需要结合现有品牌、设计系统和用户任务,不应只堆装饰元素;涉及真实页面改动时,应通过截图或浏览器预览检查文本溢出、对齐和响应式表现。

总安装

303

周安装

13

GitHub Stars

9

下载量

106
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:voice-ux-pro(语音用户体验专业版)
来源仓库:https://github.com/yuniorglez/gemini-elite-core
仓库路径:skills/voice-ux-pro
安装命令:
npx skills add https://github.com/yuniorglez/gemini-elite-core --skill voice-ux-pro
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/yuniorglez/gemini-elite-core --skill voice-ux-pro

简介

专注于语音交互的用户体验优化,提供全流程设计方法论。

  • 适用于智能音箱、车载系统等语音产品的体验打磨。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 归类为前端设计类技能,强调可用性测试与迭代验证。
  • 设计时应考虑不同年龄层用户的听力习惯与技术接受度。
  • voice-ux-pro 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Skill: Voice UX Pro (Standard 2026)

Role: The Voice UX Pro is a specialized designer and engineer responsible for "Frictionless" conversational interfaces. In 2026, this role masters sub-300ms response times, Spatial Hearing AI (voice separation), and the integration of subtle haptic feedback to guide users through hands-free workflows.

🎯 Primary Objectives

  1. Sub-300ms Responsiveness: Achieving natural human-like interaction speeds using Streaming APIs and Edge Inference.
  2. Spatial Clarity: Implementing "Spatial Hearing AI" to isolate user voices from complex background noise.
  3. Conversational Design: Crafting non-linear, robust dialogues that handle interruptions and "Ums/Ahs" gracefully.
  4. Multimodal Synergy: Synchronizing Voice with Haptics and Visuals for a holistic, accessible experience.

🏗️ The 2026 Voice Stack

1. Speech Engines

  • Whisper v4 / Chirp v3: For high-fidelity, multilingual transcription (STT).
  • Google Speech-to-Speech (S2S): For near-instant, zero-latency response loops.
  • ElevenLabs v3: For emotive, human-grade synthetic voices (TTS).

2. Interaction & Feedback

  • Native Haptics (iOS/Android): Precise vibration patterns synchronized with speech phases.
  • Audio Shaders: Real-time spatialization of AI voices using Shopify Skia or native audio APIs.

🛠️ Implementation Patterns

1. The "Listen-Ahead" Pattern (Sub-300ms)

Generating partial results while the user is still speaking to "Pre-warm" the LLM prompt.

// 2026 Pattern: Streaming STT to LLM
const sttStream = await speechClient.createStreamingSTT();
const aiStream = await genAI.generateContentStream();

sttStream.on('partial', (text) => {
  // Pre-load context if 'intent' is detected early
  if (detectEarlyIntent(text)) aiStream.warmUp();
});

2. Voice-Haptic Synchronization

Providing "Micro-confirmation" via haptics when the AI starts/stops listening.

import * as Haptics from 'expo-haptics';

function useVoiceInteraction() {
  const onStartListening = () => {
    // Light pulse to indicate "I am hearing you"
    Haptics.impactAsync(Haptics.ImpactFeedbackStyle.Light);
  };

  const onSuccess = () => {
    // Success sequence: Short, crisp double-tap
    Haptics.notificationAsync(Haptics.NotificationFeedbackType.Success);
  };
}

3. Spatial Isolation Logic

Isolating the user's voice based on 3D coordinates.


🚫 The "Do Not List" (Anti-Patterns)

  1. NEVER force the user to wait for a full sentence to be transcribed before acting.
  2. NEVER use "Robotic" monotonically generated voices. Use emotive TTS with prosody control.
  3. NEVER trigger loud audio confirmations in public settings without a "Silent Mode" check.
  4. NEVER ignore background noise. Always implement a "Noise-Floor" calibration step.

🛠️ Troubleshooting & Latency Audit

IssueLikely Cause2026 Corrective Action
"Uncanny Valley" DelayRound-trip latency > 500msMove STT/TTS to a Regional Edge Function.
Cross-Talk FailureAmbiguous sound sourcesImplement Spatial Hearing AI (3D Beamforming).
Instruction FatigueToo many verbal optionsUse "Contextual Shortlisting" (Only suggest relevant next steps).
Accidental TriggersSensitive Wake-word detectionUse "Personalized Voice Fingerprinting" for activation.

📚 Reference Library


📊 Performance Metrics

  • Interaction Latency: < 300ms (Goal).
  • Word Error Rate (WER): < 3% for noisy environments.
  • User Completion Rate: > 90% for voice-only tasks.

🔄 Evolution from 2023 to 2026

  • 2023: Batch transcription, high latency, mono-visual.
  • 2024: Real-time streaming (Whisper Turbo).
  • 2025-2026: Spatial Hearing, Emotive S2S, and Haptic-Voice synchronization.

End of Voice UX Pro Standard (v1.1.0)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.31%
按下载量换算38

Claude

29.75%
按下载量换算32

Cursor

16.79%
按下载量换算18

Gemini CLI

8.3%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills