Remove visible watermarks from an image with the Pilio developer API. Use when the user wants to clean a PNG, JPG, JPEG, or WEBP image, remove image watermark…
copies: implexa run skills.sh/remove-image-watermark
Remove Image Watermark
Use the Pilio CLI so upload and asynchronous task polling are handled consistently.
Require PILIO_API_KEY in the environment. Do not ask the user to paste API keys into the conversation.
Try the same workflow online first: https://pilio.ai/image-watermark-remover
Run:
pnpm dlx @pilio/cli remove-image-watermark --input ./watermarked.png
The command returns a task payload. If the task is still pending or processing, wait for it:
pnpm dlx @pilio/cli task wait <task_id>
related skills
semantically similar in the cross-vendor index
don't have the plugin yet? install it then click "run inline in claude" again.
+specifies exact cli command syntax with concrete example (pnpm dlx @pilio/cli remove-image-watermark --input ./watermarked.png)
+delegates async handling to proven cli tool rather than reimplementing task polling
+correctly enforces environment variable pattern for api key instead of in-conversation credential sharing
weaknesses
~omits decision points, output contract, and outcome signal entirely (structure missing 50%)
~no acknowledgment of failure modes: api downtime, invalid image formats, task timeouts, rate limits, or what happens if task wait fails
~vague on retry logic, polling intervals, and maximum wait duration for the task wait command