원클릭으로
verify
Check mflux (MLX) availability, per-family runtime presence, cached weights, and report readiness status.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Check mflux (MLX) availability, per-family runtime presence, cached weights, and report readiness status.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Produce a labeled figure with PERFECT text — render a label-free image locally (or take an external image) then overlay leader lines and typeset labels programmatically from vision-derived anchor coordinates. Text is correct by construction; only pointer placement is reviewed.
Ask which image models fit a set of tasks — get evidence-based recommendations with per-image costs, which external services to pay for, and which local models to install (with disk/RAM/licence guidance). Reads the live model catalog and probes what is actually available on this machine.
Top-level image orchestrator. Routes all slide image generation to the appropriate skill (jack-tar-ollama:image, jack-tar-ollama:icon, jack-tar-ollama:pattern, jack-tar-ollama:diagram, jack-tar-cloud:image, jack-tar-cloud:icon, render_chart). Produces ImageManifest and ChartManifest. Also reads strategy-map.json to determine per-slide rendering approach (full_render, backdrop_render, composed).
Meta-verify — discover all jack-tar engine plugins, call each verify, report aggregate pipeline capability and discipline-hook readiness.
Generate an image locally on Apple Silicon via the mflux CLI (MLX). Flag-compatible with jack-tar-ollama's /image — a $0 local tier, no API keys needed.
Check which cloud image providers are configured and report readiness status.
| name | verify |
| description | Check mflux (MLX) availability, per-family runtime presence, cached weights, and report readiness status. |
| allowed-tools | Bash(command -v *), Bash(python *), Bash(python3 *), Bash(uv *), Bash(pip *), Bash(du *) |
Check whether this plugin's prerequisites are met and report readiness.
PLUGIN_ROOT=$(python3 -c "
from pathlib import Path
import sys, os
if os.environ.get('JACK_TAR_MLX_ROOT'):
print(os.environ['JACK_TAR_MLX_ROOT']); sys.exit()
home = Path.home()
for base in [home / '.claude' / 'plugins' / 'cache']:
for p in base.rglob('jack-tar-mlx/.claude-plugin/plugin.json'):
print(str(p.parent.parent)); sys.exit()
dev = Path.cwd() / 'plugins' / 'jack-tar-mlx'
if dev.exists():
print(str(dev)); sys.exit()
print('NOT_FOUND')
" 2>/dev/null)
command -v mflux-generate-flux2
command -v mflux-generate-z-image-turbo
command -v mflux-generate-qwen
Report per-family presence. A missing entry point on an otherwise-working install usually means the installed mflux predates that family:
| Family | Minimum mflux version |
|---|---|
| qwen (mflux-generate-qwen) | >= 0.11 |
| z-image (mflux-generate-z-image-turbo) | >= 0.13 |
| flux2 (mflux-generate-flux2) | >= 0.15 (the Runpod klein primary repo needs >= 0.16) |
If ALL entry points are absent, report:
PLUGIN: jack-tar-mlx
VERSION: 0.1.0
DEPENDENCIES:
mflux: NOT_READY (run: uv tool install --upgrade mflux)
STATUS: NOT_AVAILABLE
REASON: mflux is not installed
There is no plain mflux entry point and no --version flag. Resolve the installed version with fallbacks, in order:
uv tool list 2>/dev/null | grep mflux
If empty:
pip show mflux 2>/dev/null
If empty:
python3 -c "import importlib.metadata as m; print(m.version('mflux'))" 2>/dev/null
Surface the resolved version in the report, and flag if it is below any family minimum from Step 1 whose entry point is present.
Shell to the wrapper's own Python helper — do NOT re-implement the snapshot-completeness check in bash:
python3 "$PLUGIN_ROOT/src/generate_image.py" --check-weights
This prints, per catalogued model, either READY (<repo>) or NOT_READY (run: hf download <repo>), using the same HF-cache snapshot-completeness check the deckhand detection seam uses.
Resolve the HF hub cache dir per precedence (HF_HUB_CACHE env var directly → HF_HOME/hub → ~/.cache/huggingface/hub) and report its path plus disk usage:
du -sh "$HF_HUB_DIR" 2>/dev/null
If mflux runtime is present but no model is READY from Step 3:
PLUGIN: jack-tar-mlx
VERSION: 0.1.0
DEPENDENCIES:
mflux: READY (version X.Y.Z)
ENTRY POINTS:
mflux-generate-flux2: READY / NOT_READY
mflux-generate-z-image-turbo: READY / NOT_READY
mflux-generate-qwen: READY / NOT_READY
WEIGHTS:
mlx/flux2-klein-4b: NOT_READY (run: hf download Runpod/FLUX.2-klein-4B-mflux-4bit)
mlx/z-image-turbo: NOT_READY (run: hf download filipstrand/Z-Image-Turbo-mflux-4bit)
mlx/qwen-image: NOT_READY (run: hf download OsaurusAI/Qwen-Image-mflux-4bit)
HF CACHE: <resolved hub dir> (<disk usage>)
STATUS: NOT_AVAILABLE
REASON: mflux is installed but no catalogued model has cached weights
If mflux runtime is present AND at least one model is READY:
PLUGIN: jack-tar-mlx
VERSION: 0.1.0
DEPENDENCIES:
mflux: READY (version X.Y.Z)
ENTRY POINTS:
mflux-generate-flux2: READY
WEIGHTS:
mlx/flux2-klein-4b: READY (Runpod/FLUX.2-klein-4B-mflux-4bit)
HF CACHE: <resolved hub dir> (<disk usage>)
CAPABILITIES:
image: READY
STATUS: FULLY_AVAILABLE
REASON: mflux runtime + N cached model(s) available
If mflux runtime is entirely absent, use the Step 1 NOT_AVAILABLE report and skip Steps 2-4.