Install
$ agentstack add skill-haroontrailblazer-ghost-font-decoder-ghost-decode ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Ghost-Font Video Decoder
Recover motion-defined text with the decoder bundled at the plugin root.
Required behavior
- Actually execute the Python decoder. Do not stop at explaining the algorithm, suggesting commands, or returning file paths.
- Use the bundled
decode.pywhen present. If it is unavailable, write the complete program from/prompts/decode-in-chat.mdto a scratch.pyfile and execute it. - Produce and inspect
revealed.pngandrevealed_heatmap.png. - A successful response must render
revealed.pngin the chat and state the recovered text explicitly. Paths alone are not a successful result.
Workflow
- Resolve the input video from the user's request. If no path is supplied, search the working directory for a recently modified
.mp4,.mov,.avi, or.webmfile. Ask only if more than one candidate is plausible. - Determine `
from this skill's installed location. This file is at/codex-skills/ghost-decode/SKILL.md`; do not assume the plugin is installed in or invoked from the current working directory. - Check the runtime with:
``text python -c "import cv2, numpy" ``
If imports fail, explain that the plugin needs the packages in /requirements.txt and install them only with the user's approval when the environment requires approval.
- Create a scratch output directory unless the user requested a specific destination, then run:
``text python "/decode.py" "" -o "" ``
- Inspect both generated files. Prefer
revealed.png; userevealed_heatmap.pngto verify the decoder's conservative faint-glyph recovery when a lower-energy character would fall below the main Otsu threshold. - If the command prints
Text in the video:, visually verify the OCR result against the revealed image. If OCR is unavailable or disagrees with the image, read the image directly. - Reply using the required chat format below. State uncertainty beside any ambiguous character.
Required chat response
Every successful decode must include all of the following:
Text in the video: ****
Program run: `python "/decode.py" "" -o ""`
Outputs:
- Revealed image: ``
- Heatmap: ``
Use the actual executed scratch-program path in Program run when the fallback is used. Ensure the Markdown image target is an absolute local path so Codex renders the image in chat. Do not say the decode succeeded if the program did not run or the revealed image was not inspected.
No-install / chat fallback
If the bundled decode.py is not present — for example these steps are being run in a chat without the plugin installed — reproduce the decoder yourself: write the complete Python program from prompts/decode-in-chat.md (at the plugin root) to a temporary file and run it on the video with the same steps. Do not merely paste or describe the program without executing it. The algorithm uses dense optical flow, median background subtraction, phase-correlation drift registration, accumulation, a strong Otsu mask plus conservative faint-glyph recovery, then OCR. Never OCR a raw frame — every frame is noise.
Troubleshooting
- Retry a weak or empty mask with
--method farneback. - Try
--stride 2for high-frame-rate clips. - Add
--max-frames 200for long videos; a few seconds is usually enough. - Continue with visual inspection when Tesseract is unavailable. Installing Tesseract is optional.
- Treat a uniformly dark heatmap as evidence that the clip may not contain coherent counter-motion.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: haroontrailblazer
- Source: haroontrailblazer/ghost-font-decoder
- License: MIT
- Homepage: https://fontdecoder.vercel.app
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.