Generate product photos for ecommerce
Analysis
This skill is purpose-aligned for ProductAI photo generation, but it requires a ProductAI API key and sends image URLs/prompts to ProductAI.
Findings (4)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
Tokens are deducted when each operation **starts** (not on completion).
The skill invokes paid/token-metered ProductAI operations. The cost model is disclosed and aligned with the purpose, but users should notice it before running generation or upscaling.
The integration scripts require Python 3.7+ with these dependencies: ... pip install requests pillow
The skill relies on local Python scripts and dependencies. This is disclosed and central to the integration rather than hidden or unrelated code execution.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
api_key = user_message # e.g., "sk_prod_abc123..." ... config_path = Path.home() / '.openclaw' / 'workspace' / 'productai' / 'config.json' ... config_path.chmod(0o600)
The integration can receive a ProductAI API key through the agent conversation and persist it locally. This is purpose-aligned, but it places a paid-service credential in agent-handled context.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
payload = {"model": model, "image_url": image_url, "prompt": prompt} ... self.session.post(f"{self.api_endpoint}/api/generate", json=payload, timeout=self.DEFAULT_TIMEOUT)The skill sends image URLs and prompts to the ProductAI API provider, which is necessary for the advertised photo-generation workflow.
