Agent skill · AI & Agents

gemini-logo-remover

Remove Gemini logos, watermarks, or AI-generated image markers using OpenCV inpainting. Use this skill when the user asks to remove Gemini logo, AI watermark, or any logo/watermark from images.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill gemini-logo-remover-bear2u-my-skills --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 3 KB
Bundled scripts: none
Path: skills/ai-llm/gemini-logo-remover-bear2u-my-skills/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Gemini Logo Remover Remove Gemini logos and watermarks from AI-generated images using inpainting. ## Setup ```bash pip install opencv-python numpy pillow --break-system-packages ``` ## Usage ### By Coordinates ```python import cv2 import numpy as np def remove_region(input_path, output_path, x1, y1, x2, y2, radius=5): """Remove rectangular region using inpainting.""" img = cv2.imread(input_path) h, w = img.shape[:2] mask = np.zeros((h, w), dtype=np.uint8) cv2.rectangle(mask, (x1, y1), (x2, y2), 255, -1) result = cv2.inpaint(img, mask, radius, cv2.INPAINT_TELEA) cv2.imwrite(output_path, result) # Example: remove region at coordinates remove_region('/mnt/user-data/uploads/img.png', '/mnt/user-data/outputs/clean.png', x1=700, y1=650, x2=800, y2=720) ``` ### By Corner ```python def remove_corner_logo(input_path, output_path, corner='bottom_right', w_ratio=0.1, h_ratio=0.1, padding=10): """Remove logo from corner. corner: top_left, top_right, bottom_left, bottom_right""" img = cv2.imread(input_path) h, w = img.shape[:2] lw, lh = int(w * w_ratio), int(h * h_ratio) coords = { 'bottom_right': (w - lw - padding, h - lh - padding, w - padding, h - padding), 'bottom_left': (padding, h - lh

What's inside
Steps it walks through
  1. Setup
  2. Usage
  3. By Coordinates
  4. By Corner
  5. Find Coordinates
  6. Output
  7. Notes
Ships with 1 file
  • metadata.json
Commands it runs
pip install opencv-python numpy pillow --break-system-packages
More from claude-skill-registry
All skills →
About this skill
What does the gemini-logo-remover skill do?

Remove Gemini logos, watermarks, or AI-generated image markers using OpenCV inpainting. Use this skill when the user asks to remove Gemini logo, AI watermark, or any logo/watermark from images.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill gemini-logo-remover-bear2u-my-skills --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going