Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill trx명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | trx |
| description | | Use when this capability is needed. |
Install: npx skills add crafter-station/trx -g
Check setup: trx doctor --output json. If dependencies missing, run trx init.
Install: bun add -g @crafter/trx
trx transcribe <input> --dry-run --output json
Validates input, checks dependencies, shows execution plan without running.
For URLs (YouTube, Twitter, Instagram, etc.):
trx transcribe "https://youtube.com/watch?v=..." --output json
For local files:
trx transcribe ./recording.mp4 --output json
Agent-optimized (text only, saves tokens):
trx transcribe <input> --fields text --output json
trx supports two backends: local Whisper (default) and OpenAI API.
# Local Whisper (default, offline, free)
trx transcribe <input> --backend local
# OpenAI API (faster, SOTA accuracy, requires OPENAI_API_KEY)
trx transcribe <input> --backend openai
OpenAI models:
gpt-4o-transcribe — SOTA accuracy (default for openai backend)gpt-4o-mini-transcribe — cheapestwhisper-1 — legacy, supports per-segment SRT timestampsLocal models: tiny, base, small, medium, large-v3-turbo, large.
Set backend persistently via trx init --backend openai or in config.
After transcription, read the .txt output and apply corrections. Read whisper-fixes.md for common patterns.
Correction checklist:
[Speaker Name]: markers..srt, preserve the timestamp structure. Only modify text between timestamps.trx schema transcribe
trx schema init
| Command | Example |
|---|---|
init | trx init --model small |
transcribe | trx transcribe <url-or-file> --output json |
doctor | trx doctor --output json |
schema | trx schema transcribe |
trx <input> is equivalent to trx transcribe <input>.
--output json: Machine-readable (default when piped)--output table: Human-readable with progress (default when TTY)--fields text: Only return transcript text (saves tokens)--fields metadata: Only return metadata (language, model)--dry-run: Validate without executing| Flag | Description | Default |
|---|---|---|
--backend <name> | local or openai | from config |
--language <code> | ISO 639-1 language code | auto (from config) |
--model <size> | Override model: tiny, base, small, medium, large-v3-turbo, large, gpt-4o-transcribe, gpt-4o-mini-transcribe, whisper-1 | from config |
--output-dir <dir> | Output directory | . (cwd) |
--no-download | Skip yt-dlp (local files only) | false |
--no-clean | Skip ffmpeg audio cleaning | false |
--json <payload> | Raw JSON input | - |
.mp4.webm instead of .mp4. The CLI handles this by scanning for the downloaded file by prefix.--model tiny for speed.--language auto, Whisper detects the language from the first 30 seconds. For multilingual content, specify the primary language.Source: crafter-station/trx — distributed by TomeVault.