Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计异常

stt-integration科技整合

Agent Skill

stt-integration 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

312

周安装

13

GitHub Stars

10

下载量

104
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/vanman2024/ai-dev-marketplace --skill stt-integration

简介

stt-integration 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理时使用。
  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 安装命令:npx skills add https://github.com/vanman2024/ai-dev-marketplace --skill stt-integration

SKILL.md

stt-integration

This skill provides comprehensive guidance for implementing ElevenLabs Speech-to-Text (STT) capabilities using the Scribe v1 model, which supports 99 languages with state-of-the-art accuracy, speaker diarization for up to 32 speakers, and seamless Vercel AI SDK integration.

Core Capabilities

Scribe v1 Model Features

  • Multi-language support: 99 languages with varying accuracy levels
  • Speaker diarization: Up to 32 speakers with identification
  • Word-level timestamps: Precise synchronization for video/audio alignment
  • Audio event detection: Identifies sounds like laughter and applause
  • High accuracy: Optimized for accuracy over real-time processing

Supported Formats

  • Audio: AAC, AIFF, OGG, MP3, Opus, WAV, WebM, FLAC, M4A
  • Video: MP4, AVI, Matroska, QuickTime, WMV, FLV, WebM, MPEG, 3GPP
  • Limits: Max 3 GB file size, 10 hours duration

Skill Structure

Scripts (scripts/)

  1. transcribe-audio.sh - Direct API transcription with curl
  2. setup-vercel-ai.sh - Install and configure @ai-sdk/elevenlabs
  3. test-stt.sh - Test STT with sample audio files
  4. validate-audio.sh - Validate audio file format and size
  5. batch-transcribe.sh - Process multiple audio files

Templates (templates/)

  1. stt-config.json.template - STT configuration template
  2. vercel-ai-transcribe.ts.template - Vercel AI SDK TypeScript template
  3. vercel-ai-transcribe.py.template - Vercel AI SDK Python template
  4. api-transcribe.ts.template - Direct API TypeScript template
  5. api-transcribe.py.template - Direct API Python template
  6. diarization-config.json.template - Speaker diarization configuration

Examples (examples/)

  1. basic-stt/ - Basic STT with direct API
  2. vercel-ai-stt/ - Vercel AI SDK integration
  3. diarization/ - Speaker diarization examples
  4. multi-language/ - Multi-language transcription
  5. webhook-integration/ - Async transcription with webhooks

Usage Instructions

1. Setup Vercel AI SDK Integration

# Install dependencies
bash scripts/setup-vercel-ai.sh

# Verify installation
npm list @ai-sdk/elevenlabs

2. Basic Transcription

# Transcribe a single audio file
bash scripts/transcribe-audio.sh path/to/audio.mp3 en

# Validate audio before transcription
bash scripts/validate-audio.sh path/to/audio.mp3

# Batch transcribe multiple files
bash scripts/batch-transcribe.sh path/to/audio/directory en

3. Test STT Implementation

# Run comprehensive tests
bash scripts/test-stt.sh

4. Use Templates

// Read Vercel AI SDK template
Read: templates/vercel-ai-transcribe.ts.template

// Customize for your use case
// - Set language code
// - Configure diarization
// - Enable audio event tagging
// - Set timestamp granularity

5. Explore Examples

# Basic STT example
Read: examples/basic-stt/README.md

# Vercel AI SDK example
Read: examples/vercel-ai-stt/README.md

# Speaker diarization example
Read: examples/diarization/README.md

Language Support

Excellent Accuracy (≤5% WER)

30 languages including: English, French, German, Spanish, Italian, Japanese, Portuguese, Dutch, Polish, Russian

High Accuracy (>5-10% WER)

19 languages including: Bengali, Mandarin Chinese, Tamil, Telugu, Vietnamese, Turkish

Good Accuracy (>10-25% WER)

30 languages including: Arabic, Korean, Thai, Indonesian, Hebrew, Czech

Moderate Accuracy (>25-50% WER)

19 languages including: Amharic, Khmer, Lao, Burmese, Nepali

Configuration Options

Provider Options (Vercel AI SDK)

  • languageCode: ISO-639-1/3 code (e.g., 'en', 'es', 'ja')
  • tagAudioEvents: Enable sound detection (default: true)
  • numSpeakers: Max speakers 1-32 (default: auto-detect)
  • diarize: Enable speaker identification (default: true)
  • timestampsGranularity: 'none' | 'word' | 'character' (default: 'word')
  • fileFormat: 'pcm_s16le_16' | 'other' (default: 'other')

Best Practices

  1. Specify language code when known for better performance
  2. Use pcm_s16le_16 format for lowest latency with uncompressed audio
  3. Enable diarization for multi-speaker content
  4. Set numSpeakers for better accuracy when speaker count is known
  5. Use webhooks for files >8 minutes for async processing

Common Patterns

Pattern 1: Simple Transcription

Use direct API or Vercel AI SDK for single-language, single-speaker transcription.

Pattern 2: Multi-Speaker Transcription

Enable diarization and set numSpeakers for interviews, meetings, podcasts.

Pattern 3: Multi-Language Support

Detect language automatically or specify when known for content in 99 languages.

Pattern 4: Video Transcription

Extract audio from video formats and transcribe with timestamps for subtitles.

Pattern 5: Webhook Integration

Process long files asynchronously using webhook callbacks for results.

Integration with Other ElevenLabs Skills

  • tts-integration: Combine STT → processing → TTS for voice translation workflows
  • voice-cloning: Transcribe existing voice samples before cloning
  • dubbing: Use STT as first step in dubbing pipeline

Troubleshooting

Audio Format Issues

# Validate audio format
bash scripts/validate-audio.sh your-audio.mp3

Language Detection Problems

  • Specify languageCode explicitly instead of auto-detection
  • Ensure audio quality is sufficient for chosen language

Diarization Not Working

  • Verify numSpeakers is set correctly (1-32)
  • Check that diarize: true is configured
  • Ensure audio has clear speaker separation

File Size/Duration Limits

  • Max 3 GB file size
  • Max 10 hours duration
  • Files >8 minutes are chunked automatically

Script Reference

All scripts are located in skills/stt-integration/scripts/:

  1. transcribe-audio.sh - Main transcription script with curl
  2. setup-vercel-ai.sh - Install @ai-sdk/elevenlabs package
  3. test-stt.sh - Comprehensive test suite
  4. validate-audio.sh - Audio format and size validation
  5. batch-transcribe.sh - Batch processing for multiple files

Template Reference

All templates are located in skills/stt-integration/templates/:

  1. stt-config.json.template - JSON configuration
  2. vercel-ai-transcribe.ts.template - TypeScript with Vercel AI SDK
  3. vercel-ai-transcribe.py.template - Python with Vercel AI SDK
  4. api-transcribe.ts.template - TypeScript with direct API
  5. api-transcribe.py.template - Python with direct API
  6. diarization-config.json.template - Diarization settings

Example Reference

All examples are located in skills/stt-integration/examples/:

  1. basic-stt/ - Basic transcription workflow
  2. vercel-ai-stt/ - Vercel AI SDK integration
  3. diarization/ - Speaker identification
  4. multi-language/ - Multi-language support
  5. webhook-integration/ - Async processing

Skill Location: plugins/elevenlabs/skills/stt-integration/ Version: 1.0.0 Last Updated: 2025-10-29

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.03%
按下载量换算36

Claude

27.27%
按下载量换算28

Cursor

19.66%
按下载量换算20

Gemini CLI

9.14%
按下载量换算10

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills