← Back to Skills Marketplace
matthew00ita

NEXUS Voice Transcriber

by Matthew00ITA · GitHub ↗ · v1.0.0 · MIT-0
linuxdarwinwin32 ✓ Security Clean
43
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install nexus-voice-transcriber
Description
Voice note transcription and archival for OpenClaw agents. Powered by Deepgram Nova-3 or local Whisper. Transcribes audio messages, saves both audio files an...
README (SKILL.md)

Setup

On first use, read references/whisper-models.md and references/troubleshooting.md.
Ensure dependencies: ffmpeg, python3, and required Python packages (openai-whisper, deepgram-sdk optional).

When to Use

  • User sends a voice note / audio file / video file that needs transcription.
  • Need to archive both the original audio and the text transcript.
  • Want speaker detection (if using Deepgram with diarization).
  • Quick local transcription without external APIs (Whisper).

Architecture

Memory lives in ~/voice-transcriber/. See below for structure.

~/voice-transcriber/
├── memory.md          # Provider preferences, defaults, history
├── transcripts/       # Saved transcripts (txt, json, srt)
├── audio/             # Saved original audio files
└── temp/              # Processing workspace (auto-cleaned)

Quick Reference

Topic File
Whisper model guide references/whisper-models.md
Troubleshooting references/troubleshooting.md
Main script scripts/transcribe.py

Core Rules

1. Detect Input Type

Before transcription:

  • Local file path → verify exists, check format (mp3, wav, m4a, mp4, etc.)
  • URL → download to temp/, then process
  • Voice memo → usually single speaker, short
  • Meeting / interview → likely multiple speakers, consider diarization

2. Choose Provider Based on Context

Scenario Best Provider Why
Privacy, no API keys Local Whisper Runs on-device, free
High accuracy, speed Deepgram Nova‑3 Low latency, good accuracy
Speaker identification Deepgram (with diarization) Native speaker labels
No internet Local Whisper Offline capable

3. Handle Long Audio

Files >25 MB or >2 hours:

  1. Split into chunks with ffmpeg (see scripts/transcribe.py --split)
  2. Process each chunk
  3. Merge transcripts with proper timestamps

4. Save Artifacts

After successful transcription:

  • Save transcript to ~/voice-transcriber/transcripts/ with a meaningful name
  • Save original audio to ~/voice-transcriber/audio/ if user wants archival
  • Update memory.md with date, file, provider, duration

5. Output Formats

Default to plain text (.txt). Offer alternatives:

  • .txt — clean text, no timestamps
  • .srt / .vtt — subtitles with timing
  • .json — structured with word‑level timing (Deepgram) or segment timing (Whisper)

Common Traps

  • Assuming one provider fits all → Whisper lacks diarization; Deepgram needs API key.
  • Uploading huge files directly → Timeouts. Split first.
  • Ignoring audio quality → Noisy audio may need preprocessing (ffmpeg noise reduction).
  • Not checking language → Whisper auto‑detects but can fail on mixed‑language content.
  • Forgetting to save audio → User may want the original file archived.

Requirements

Required:

  • ffmpeg (audio conversion, splitting)
  • python3 + pip
  • Python packages: openai-whisper (local), requests (for Deepgram if used)

Optional API keys (only if using Deepgram):

  • DEEPGRAM_API_KEY — for Deepgram Nova‑3 (speaker diarization available)

Local Whisper works without any API keys.

Provider Quick Reference

Local Whisper (No API Key)

# Install
pip install openai-whisper

# Basic transcription (via script)
python3 scripts/transcribe.py --file audio.wav --provider whisper --model base

# Output formats: txt (default), srt, vtt, json
python3 scripts/transcribe.py --file audio.wav --provider whisper --model medium --format srt

Models: tiny (fastest) → basesmallmediumlarge (most accurate).

Deepgram Nova‑3 (API Key Required)

# Set environment variable
export DEEPGRAM_API_KEY="your_key_here"

# Transcribe with speaker diarization
python3 scripts/transcribe.py --file audio.wav --provider deepgram --diarize

# Output JSON with speaker labels
python3 scripts/transcribe.py --file audio.wav --provider deepgram --format json

Audio Preprocessing

Extract Audio from Video

ffmpeg -i video.mp4 -vn -acodec pcm_s16le -ar 16000 -ac 1 audio.wav

Reduce Noise

ffmpeg -i noisy.wav -af "afftdn=nf=-25" clean.wav

Split Long Audio (10‑minute chunks)

ffmpeg -i long.mp3 -f segment -segment_time 600 -c copy temp/chunk_%03d.mp3

Security & Privacy

Data that stays local:

  • Transcripts in ~/voice-transcriber/transcripts/
  • Original audio in ~/voice-transcriber/audio/
  • Local Whisper processes entirely on‑device

Data that leaves your machine (if using Deepgram):

  • Audio file sent to Deepgram API (api.deepgram.com)
  • Transcript returned and stored locally

This skill does NOT:

  • Store API keys in plain text (use environment variables)
  • Auto‑upload without confirmation
  • Retain files on external servers after processing

External Endpoints

Endpoint Data Sent Purpose
api.deepgram.com/v1/listen Audio file Deepgram transcription

Only called when user explicitly chooses Deepgram provider. Local Whisper sends nothing.

Memory Template

Create ~/voice-transcriber/memory.md with this structure:

# Voice Transcriber Memory

## Status
status: ongoing
version: 1.0.0
last: YYYY‑MM‑DD
integration: pending

## Context
\x3C!-- Observations about transcription needs, preferred providers, languages, etc. -->

## Notes
\x3C!-- Provider preferences, format preferences, diarization needs -->

---
*Updated: YYYY‑MM‑DD*

Related Skills

Install with clawhub install \x3Cslug> if user confirms:

  • speech-to-text-transcription — broader audio/video transcription with more providers
  • ffmpeg — advanced audio/video processing
  • audio — general audio manipulation

Feedback

  • If useful: clawhub star voice-transcriber
  • Stay updated: clawhub sync
Usage Guidance
Install only if you are comfortable with local archiving of transcripts/audio. For private recordings, use the local Whisper provider; if using Deepgram, explicitly confirm the upload, protect the API key, and check Deepgram retention settings. Because the supplied script content is truncated in the review artifacts, inspect the installed script directly if you need high assurance.
Capability Analysis
Type: OpenClaw Skill Name: nexus-voice-transcriber Version: 1.0.0 The 'nexus-voice-transcriber' skill is a legitimate tool for audio and video transcription using local Whisper models or the Deepgram API. The Python script (scripts/transcribe.py) implements standard functionality for downloading remote files, extracting audio via ffmpeg, and managing transcripts. It follows security best practices by using argument lists in subprocess calls to prevent shell injection and retrieving API keys from environment variables rather than hardcoding them. No evidence of data exfiltration, malicious prompt injection, or unauthorized persistence was found.
Capability Tags
requires-sensitive-credentials
Capability Assessment
Purpose & Capability
The artifacts coherently support voice/audio transcription and archival using local Whisper or optional Deepgram. The sensitive behaviors are aligned with that purpose.
Instruction Scope
Instructions are scoped to user-provided audio, video, or URLs. The SKILL.md says Deepgram should only be used with explicit user choice, so users should confirm whether cloud transcription is desired.
Install Mechanism
There is no install spec, but setup/reference docs instruct user-directed Python package installation. Dependencies are not pinned, so installation should preferably happen in an isolated environment.
Credentials
The skill uses ffmpeg, Python, local file writes, URL downloads, and an optional Deepgram API call; these are proportionate for transcription but touch potentially sensitive media.
Persistence & Privilege
The skill intentionally persists transcripts, optional original audio, and a memory/history file under ~/voice-transcriber/.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install nexus-voice-transcriber
  3. After installation, invoke the skill by name or use /nexus-voice-transcriber
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release: Whisper + Deepgram support, multi-format output, chunking for long audio
Metadata
Slug nexus-voice-transcriber
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is NEXUS Voice Transcriber?

Voice note transcription and archival for OpenClaw agents. Powered by Deepgram Nova-3 or local Whisper. Transcribes audio messages, saves both audio files an... It is an AI Agent Skill for Claude Code / OpenClaw, with 43 downloads so far.

How do I install NEXUS Voice Transcriber?

Run "/install nexus-voice-transcriber" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is NEXUS Voice Transcriber free?

Yes, NEXUS Voice Transcriber is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does NEXUS Voice Transcriber support?

NEXUS Voice Transcriber is cross-platform and runs anywhere OpenClaw / Claude Code is available (linux, darwin, win32).

Who created NEXUS Voice Transcriber?

It is built and maintained by Matthew00ITA (@matthew00ita); the current version is v1.0.0.

💬 Comments