Skill flagged โ€” suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

AB Agents Vision

v1.0.1

๐Ÿ‘๏ธ Image analysis using MiniMax VL API. Describe images, extract text from screenshots, analyze photos. Works with local files and URLs. Simple shell wrapper.

โญ 0ยท 45ยท0 currentยท0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for alexburrstudio/ab-agents-vision.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "AB Agents Vision" (alexburrstudio/ab-agents-vision) from ClawHub.
Skill page: https://clawhub.ai/alexburrstudio/ab-agents-vision
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install ab-agents-vision

ClawHub CLI

Package manager switcher

npx clawhub@latest install ab-agents-vision
Security Scan
Capability signals
Requires sensitive credentials
These labels describe what authority the skill may exercise. They are separate from suspicious or malicious moderation verdicts.
VirusTotalVirusTotal
Suspicious
View report โ†’
OpenClawOpenClaw
Suspicious
medium confidence
โ„น
Purpose & Capability
The code and SKILL.md implement an image-analysis wrapper for MiniMax (calls a minimax tool via 'uvx' and uses a MINIMAX_API_KEY) which matches the stated purpose. However the registry metadata declares no required environment variables while both the docs and the script require MINIMAX_API_KEY โ€” a clear metadata/instruction mismatch. The script also adds /root/.local/bin to PATH which is unusual and unnecessary for the stated functionality.
!
Instruction Scope
SKILL.md instructs the user to install 'uv' by piping a remote install script (curl ... | sh). The runtime script reads MINIMAX_API_KEY from either the environment or from ~/.minimax-env (grep), which means it will access a local credentials file in the user's home directory. Reading that file is outside the nominal scope (the key itself is required, but implicit fallback file access is a privacy/clarity concern). The instructions do not document these behaviors in the registry metadata.
!
Install Mechanism
There is no formal install spec in the package; SKILL.md recommends running a remote installer via 'curl -LsSf https://astral.sh/uv/install.sh | sh', which is high-risk (running remote code without checks). The script relies on the external 'uvx' tool that would be installed by that script. No checksums or explicit trusted package sources are provided in the skill docs.
โ„น
Credentials
Functionality legitimately requires a MiniMax API key (MINIMAX_API_KEY), so requiring one is proportionate. But the registry metadata omits this requirement. The script's fallback to read ~/.minimax-env means it will access a local file containing credentials โ€” this access should be declared up front. No unrelated credentials appear to be requested.
โœ“
Persistence & Privilege
The skill does not request permanent presence (always:false), does not modify other skills' configs, and does not write persistent files itself. The only runtime change is a temporary PATH mutation. Autonomous invocation is allowed by default but not a special privilege here.
What to consider before installing
This skill largely does what it claims (wraps MiniMax VL), but there are several issues to consider before installing: - Metadata mismatch: The registry says no environment variables are required, but both SKILL.md and vision.sh require MINIMAX_API_KEY. Treat the API key as required and ensure you provide a dedicated key. - Remote installer risk: The README suggests running 'curl ... | sh' to install 'uv'. Running remote install scripts without verification is risky โ€” inspect the script at https://astral.sh/uv/install.sh before running, or install the tool from a trusted package source or your distro's package manager. - Local credential file read: vision.sh will try to read ~/.minimax-env to extract MINIMAX_API_KEY. If you keep secrets in that file, be aware the script will access it. Consider storing the key in a controlled location or set MINIMAX_API_KEY in the environment explicitly. - PATH tweak: The script prepends /root/.local/bin to PATH at runtime which is odd and may hide which binary is being invoked; review the tool installed as 'uvx' and confirm it is what you expect. Recommended actions before use: inspect vision.sh and the uv install script yourself, avoid piping unknown scripts to sh, set MINIMAX_API_KEY explicitly in your shell environment (not relying on fallback files), and verify the uvx/minimax client being installed is from a trusted source. If you need higher assurance, ask the package owner for a signed release or an install method that uses a well-known package registry or package manager.

Like a lobster shell, security has layers โ€” review code before you run it.

latestvk979dxpn7n4zc1eftkzaesz6p185ke12
45downloads
0stars
2versions
Updated 1d ago
v1.0.1
MIT-0

AB Agents Vision ๐Ÿ‘๏ธ

Image analysis using MiniMax VL API โ€” simple, fast, reliable.

What It Does

  • ๐Ÿ“ธ Describe images โ€” Get detailed scene descriptions
  • ๐Ÿ“ Extract text โ€” Read text from screenshots, photos, documents
  • ๐Ÿ” Analyze photos โ€” Identify objects, people, settings
  • ๐ŸŒ URL support โ€” Analyze images from the web

Quick Start

# Install
curl -LsSf https://astral.sh/uv/install.sh | sh

# Set your MiniMax API key
export MINIMAX_API_KEY="sk-cp-your-key"

# Use
./vision.sh image.jpg "Describe this image"

Usage

# Basic description
./vision.sh photo.jpg

# With custom prompt
./vision.sh screenshot.png "What text do you see?"

# URL support
./vision.sh "https://example.com/image.jpg" "Describe this"

Requirements

  • MiniMax Token Plan API key (get one)
  • Linux/macOS
  • uvx (auto-installed via script)

Examples

Screenshot analysis:

Input: screenshot.png + "What text is in the image?"
Output: "The screenshot shows a code editor with Python code...

Photo description:

Input: photo.jpg + "Describe in detail"
Output: "A person's bare foot and lower leg resting on a brown
textured waffle-weave blanket. The skin is light-toned with
visible fine hairs..."

Installation

git clone https://github.com/alexburrstudio/ab-agents-skills.git
cd ab-agents-skills/skills/vision
chmod +x vision.sh

Or via ClaWHub:

clawhub install AB-Agents-Vision

Troubleshooting

ErrorSolution
API Error: 1033Retry โ€” system error on MiniMax side
No responseCheck MINIMAX_API_KEY is set correctly
SlowUse smaller images (<10MB)

AB-Agents ๐Ÿฆ€

Comments

Loading comments...