gpt-image-2-livestream-image
Pass
Audited by Gen Agent Trust Hub on Aug 12, 2026
Risk Level: SAFECOMMAND_EXECUTIONEXTERNAL_DOWNLOADS
Full Analysis
- [COMMAND_EXECUTION]: The skill uses
argparseto handle CLI arguments andsubprocessis notably absent. It invokeswebbrowser.open()during theinitcommand to help users find their API key on the officialai-hive.iclip.cndomain, which is a standard developer experience pattern. - [EXTERNAL_DOWNLOADS]: The skill downloads generated image results from the AI Hive API (
ai-hive.iclip.cn). These downloads are the intended primary purpose of the skill and target a consistent vendor domain. - [DATA_EXPOSURE]: The skill manages a local configuration file at
~/.ai-hive/config.json. It implements security best practices by explicitly setting file permissions to0600(read/write by owner only) usingos.chmodto protect the stored API key. - [CREDENTIALS_SAFE]: While the skill uses an API key, it correctly avoids hardcoding secrets. It provides multiple safe methods for key management, including environment variables (
AI_HIVE_API_KEY), a secure local config file, and a command-line argument. The providedconfig.example.jsoncontains only placeholders.
Audit Metadata