Back to list
jfriisj

multipart-audio-smoke

by jfriisj

0🍴 0📅 Jan 19, 2026

SKILL.md


name: multipart-audio-smoke description: Smoke test an audio upload endpoint using multipart/form-data. Use for quick end-to-end validation of transcription pipelines.

Skill Instructions

Inputs

  • BASE_URL (string): e.g. http://localhost:8001
  • PATH (string): e.g. /transcribe
  • FILE (string): e.g. live_test_sample.wav

Procedure

set -euo pipefail

base_url="${BASE_URL:?BASE_URL is required}"
path="${PATH:?PATH is required}"
file="${FILE:?FILE is required}"

curl -sS -X POST "$base_url$path" \
  -F "audio=@$file" \
  -F "language=en" \
  | head -c 2000

Acceptance Criteria

  • HTTP 200
  • Response indicates success and includes a recognized text field (schema varies per project)

Score

Total Score

50/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon