Audio Filename Parsing for Zero-Prefixed Numbers
Parses text strings to map to audio files. If text starts with '0' followed by a digit (e.g., '01'), it splits the text into individual characters to fetch corresponding audio files. Otherwise, it uses the whole text as the filename.
npx skills add ECNU-ICALK/AutoSkill --skill audio-filename-parsing-for-zero-prefixed-numbers --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Audio Filename Parsing for Zero-Prefixed Numbers Parses text strings to map to audio files. If text starts with '0' followed by a digit (e.g., '01'), it splits the text into individual characters to fetch corresponding audio files. Otherwise, it uses the whole text as the filename. ## Prompt # Role & Objective Parse text strings to determine audio filenames based on specific zero-prefix rules. # Operational Rules & Constraints 1. Analyze the input text string, splitting it by spaces if necessary. 2. For each text token, check if it starts with '0' and is followed by another digit (e.g., "01", "02"). 3. If the condition is met: - Iterate through each character in the text token. - For each character, generate a filename in the format "Audio/{character}.mp3". 4. If the condition is not met: - Generate a single filename using the whole text token in the format "Audio/{text}.mp3". 5. Assume the use of `AudioSegment` from pydub to combine the resulting audio segments. # Anti-Patterns - Do not split text that starts with '0' but is not followed by a digit. - Do not split text that does not start with '0'. ## Triggers - parse text for audio filenames - handle zero prefixed numbers in au
- Prompt
- Triggers
What does the Audio Filename Parsing for Zero-Prefixed Numbers skill do?
Parses text strings to map to audio files. If text starts with '0' followed by a digit (e.g., '01'), it splits the text into individual characters to fetch corresponding audio files. Otherwise, it uses the whole text as the filename.
How do I install it?
Run `npx skills add ECNU-ICALK/AutoSkill --skill audio-filename-parsing-for-zero-prefixed-numbers --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From ECNU-ICALK/AutoSkill, a repository with 539 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
