home / skills / richardanaya / agent-skills / describe-image
This skill analyzes an image using a local tool to describe details based on a prompt, without overloading GPU.
npx playbooks add skill richardanaya/agent-skills --skill describe-imageReview the files below or copy the command above to add this skill to your agents.
---
name: describe-image
description: Uses a local model to describe something about an image
license: MIT
compatibility: opencode
metadata:
audience: tools
---
There is a local CLI tool describe_image that uses a local AI to describe an image. Don't use this tool in parallel or we might overwhelm our GPU.
```
describe_image <disk path> "<prompt to ask about details in image>"
```This skill describes images using a local AI model to extract visible details, objects, and context. It runs a command-line tool against image files and returns concise, human-readable descriptions for accessibility, indexing, or analysis. It is optimized for privacy and on-premise use since processing happens locally.
The skill calls a local CLI tool that accepts a disk path to the image and a short prompt asking what to describe. The tool runs on a local GPU-backed model and returns descriptive text about the scene, objects, attributes, and any requested focus details. Avoid running multiple instances in parallel to prevent GPU overload.
How do I invoke the tool?
Run the local CLI with the image disk path and a short prompt, for example: describe_image /path/to/image "What is visible in this photo?".
Can I run multiple requests at once?
No — avoid parallel runs. The model uses the local GPU and concurrent jobs can overwhelm resources and slow or fail processing.