Token导航 LogoToken导航TokenDH.com
研究检索可写文件github未标认证来源可访问clear审计提醒

parakeetparakeet 搜索

Agent Skill

parakeet 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

186

周安装

8

GitHub Stars

1

下载量

65
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/seckatie/katies-ai-skills --skill parakeet

简介

用于查找、检索和筛选相关信息,支持基于关键词或任务场景快速定位候选结果。

  • 适用于需要信息收集、线索追踪或研究支持的场景,帮助 Agent 高效获取目标内容。
  • 通过 npx skills add 命令从指定仓库安装,建议结合原始 README 核验具体用法。
  • 使用前需确认权限范围、维护状态,并评估是否涉及联网、命令执行或文件读写操作。
  • parakeet 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Parakeet-MLX Audio Transcription

This skill provides instructions for using parakeet-mlx to convert audio files to text using NVIDIA's Parakeet automatic speech recognition model optimized for Apple's MLX framework.

Overview

Parakeet-MLX brings NVIDIA's Parakeet ASR model to Apple Silicon, enabling fast, high-quality on-device speech-to-text conversion similar to Whisper but optimized for Apple's MLX framework.

Key Features:

  • High-quality transcription with timestamps
  • Fast processing (e.g., 1+ hour audio in ~53 seconds)
  • On-device processing (no cloud API required)
  • Output in SRT subtitle format
  • No installation required - run directly with uvx

Basic Usage

Transcribe an Audio File

The simplest way to transcribe an audio file is:

uvx parakeet-mlx /path/to/audio/file.mp3

This will:

  1. Download the model on first run (~2.5GB)
  2. Process the audio file
  3. Generate an SRT subtitle file with timestamped transcription

Example:

# Transcribe a podcast episode
uvx parakeet-mlx podcast_episode.mp3

# Transcribe an interview
uvx parakeet-mlx interview.wav

# Transcribe a meeting recording
uvx parakeet-mlx meeting_recording.m4a

Important Notes

First Run

The first time you run parakeet-mlx, it will download a ~2.5GB model file. This may take several minutes depending on your internet connection. Subsequent runs will use the cached model and start immediately.

Performance

Parakeet-MLX is optimized for Apple Silicon and provides excellent performance:

  • A 65MB, 1 hour 1 minute 28 second podcast was transcribed in 53 seconds
  • Performance scales with audio duration, not file size
  • Processing happens entirely on-device

Output Format

The tool generates an SRT (SubRip Subtitle) file with the same name as your input file:

Input: podcast.mp3 Output: podcast.srt

The SRT format includes:

  • Sequential subtitle numbers
  • Timestamp ranges (start --> end)
  • Transcribed text for each segment

Example SRT output:

1
00:00:00,000 --> 00:00:03,500
Welcome to the podcast. Today we're discussing...

2
00:00:03,500 --> 00:00:08,200
The latest developments in machine learning...

Supported Audio Formats

While the documentation explicitly mentions MP3, parakeet-mlx likely supports common audio formats including:

  • MP3
  • WAV
  • M4A
  • FLAC
  • OGG

If you encounter format issues, consider converting your audio file to MP3 or WAV first using tools like ffmpeg.

Working with Output

View the Transcription

# View the entire transcription
cat output.srt

# View just the text (remove timestamps)
grep -v "^[0-9]*$" output.srt | grep -v "^[0-9][0-9]:[0-9][0-9]:[0-9][0-9]"

Convert SRT to Plain Text

If you need plain text without timestamps:

# Using the helper script (recommended)
python3 srt_to_text.py output.srt > transcript.txt

# Or with awk
awk 'NF && !/^[0-9]+$/ && !/^[0-9]{2}:[0-9]{2}:[0-9]{2}/' output.srt > transcript.txt

Helper Scripts

srt_to_text.py

This skill includes a Python helper script for converting SRT files to plain text. Located at skills/parakeet/srt_to_text.py.

Usage:

# Basic conversion (outputs to stdout)
python3 srt_to_text.py transcript.srt

# Save to file
python3 srt_to_text.py transcript.srt --output transcript.txt

# Preserve paragraph breaks between subtitle blocks
python3 srt_to_text.py transcript.srt --paragraphs

# Pipe to other tools
python3 srt_to_text.py transcript.srt | llm "Summarize this"

Features:

  • Strips subtitle numbers and timestamps
  • Joins text into continuous prose (or preserves paragraphs with --paragraphs)
  • Supports stdin input for piping
  • Clean output suitable for LLM processing

See also: The llm skill includes an audio-to-article.yaml template designed to clean up transcripts from this helper into polished articles.

Use with Other Tools

The SRT format is widely supported and can be:

  • Imported into video editing software
  • Used with subtitle players
  • Converted to other formats (VTT, ASS, etc.)
  • Processed with text analysis tools

Common Workflows

Transcribe Multiple Files

# Process all MP3 files in a directory
for file in *.mp3; do
    echo "Processing $file..."
    uvx parakeet-mlx "$file"
done

Transcribe and Extract Text

# Transcribe and immediately extract plain text
uvx parakeet-mlx audio.mp3
awk 'NF && !/^[0-9]+$/ && !/^[0-9]{2}:[0-9]{2}:[0-9]{2}/' audio.srt > audio.txt

Check Transcription Quality

After transcription, review the SRT file to verify:

  • Proper segmentation of speech
  • Accurate timestamps
  • Text quality and accuracy

Troubleshooting

Model Download Issues

If the model download fails or is interrupted:

  1. Check your internet connection
  2. Ensure you have ~2.5GB of free disk space
  3. Try running the command again (it may resume download)

Performance Issues

If transcription is slow:

  • Ensure you're running on Apple Silicon (M1/M2/M3)
  • Close other resource-intensive applications
  • For very long files, consider splitting them into smaller segments

Audio Format Not Supported

If you get an error about unsupported format:

# Convert to MP3 using ffmpeg
ffmpeg -i input.m4a -acodec libmp3lame -ab 192k output.mp3
uvx parakeet-mlx output.mp3

Use Cases

Parakeet-MLX is ideal for:

  • Podcast transcription - Generate searchable text from episodes
  • Interview documentation - Convert recorded interviews to text
  • Meeting notes - Transcribe meeting recordings for reference
  • Content creation - Generate captions or show notes
  • Accessibility - Create subtitles for audio/video content
  • Research - Analyze spoken content at scale

Advantages Over Other Tools

vs. Whisper:

  • Optimized specifically for Apple MLX framework
  • Potentially faster on Apple Silicon
  • Similar quality output

vs. Cloud APIs:

  • No API costs
  • Complete privacy (on-device processing)
  • No internet required after model download
  • No file size limits

vs. Manual Transcription:

  • Dramatically faster (hours to minutes)
  • Consistent quality
  • Includes precise timestamps

Tips for Best Results

  1. Audio Quality Matters: Clear audio with minimal background noise produces better results
  2. Speaker Clarity: Single speaker or well-separated multi-speaker audio works best
  3. Review Output: Always review the transcription for accuracy, especially for technical terms or names
  4. Use Timestamps: The SRT format's timestamps are valuable for referencing specific moments
  5. Batch Processing: Process multiple files in sequence for efficiency

References

Notes

  • Parakeet-MLX runs entirely on-device, ensuring privacy
  • The tool is designed for Apple Silicon; performance on Intel Macs may vary
  • First run requires internet for model download
  • Output quality is reported as "very high" for clear audio
  • The tool is optimized for speech recognition, not music or other audio types

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

30.5%
按下载量换算20

windsurf

23.4%
按下载量换算15

trae

18.3%
按下载量换算12

OpenCode

11.07%
按下载量换算7

Codex

7.78%
按下载量换算5

Antigravity

3.67%
按下载量换算2

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

可写文件

该 Skill 可能写入或修改本地文件,使用前需要确认目标目录和修改范围。

安装前确认

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

来源信息

继续浏览同类 Skills