Skip to content

Instantly share code, notes, and snippets.

View MovGP0's full-sized avatar
🌱

Johann Dirry MovGP0

🌱
View GitHub Profile
@MovGP0
MovGP0 / .codex\skills\vision-transcribe\SKILL.md
Last active January 15, 2026 09:23
Codex Vision Transcribe Skill
name vision-transcribe
description OCR/transcribe or interpret an image file via OpenAI vision (defaults to gpt-5.2). Models gpt-5.2, gpt-5.1, gpt-5-mini, gpt-4.1, gpt-4.1-mini.
metadata
short-description
Transcribe/interpret an image (Markdown output).

Purpose

This skill reads a local image file (PNG/JPG/WebP/GIF) and uses an OpenAI vision-capable model to:

  • OCR / transcription (verbatim text extraction)
@MovGP0
MovGP0 / chunked-download.ps1
Created February 18, 2026 08:44
Chunked file download via curl
param(
[string]$Url,
[string]$OutputPath,
[int]$ChunkSizeMb = 1,
[int]$MaxRetries = 16
)
$ErrorActionPreference = 'Stop'
if ($ChunkSizeMb -lt 1)