get-voice-file

Return the local file path of a downloaded IM voice message.

9|2|Updated Mar 18, 2026
One-click install
npx skills add https://github.com/AllBeingsFuture/AllBeingsFuture --skill get-voice-file-allbeingsfuture
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: get-voice-file
Source: https://github.com/AllBeingsFuture/AllBeingsFuture/tree/main/electron/embedded-assets/skills/system/get-voice-file
Command: npx skills add https://github.com/AllBeingsFuture/AllBeingsFuture --skill get-voice-file-allbeingsfuture

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Quickly locates the local filesystem path of a voice message that the system auto-downloaded when a user sent an audio message, removing manual searching and enabling immediate processing.

Core Features & Use Cases

  • Simple retrieval: Provide a deterministic local path for a user's voice message so downstream tools can access the audio file.
  • Integration-ready: Works as an IM channel handler to feed transcription, analysis, or storage workflows.
  • Use Case: When a user sends a voice note, use this Skill to fetch the downloaded file path and pass it to a speech-to-text script for transcription.

Quick Start

Use the get-voice-file skill to retrieve the local path of a user's voice message so you can transcribe or process the audio file.

Frequently Asked Questions about get-voice-file

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I get the local file path of a voice message downloaded from an IM channel?

To get the local file path of a voice message, you retrieve the stored audio file using a deterministic mapping between the incoming message ID and the downloaded file name.

What is the best way to access auto-downloaded audio files for transcription processing?

The best way to access auto-downloaded audio files for transcription is to fetch the deterministic local filesystem path and pass it directly to your downstream speech-to-text script.

Do I need access to the system download location to retrieve voice message file paths?

Yes, you need access to the system's download location to locate the downloaded voice message file and successfully provide its local path for downstream audio processing.

How does mapping between message IDs and stored file names work for voice notes?

Mapping message IDs to stored file names works by linking the incoming chat identifier to the auto-downloaded audio file in the local filesystem, creating a reliable lookup for immediate processing.

Can I use this voice message retrieval approach for integration-ready transcription workflows?

Yes, you can use this voice message retrieval approach for integration-ready workflows because it acts as an IM channel handler to directly feed downloaded audio paths into analysis or storage pipelines.