cd /news/ai-tools/watermarks-remover-strip-multi-vendo… · home topics ai-tools article
[ARTICLE · art-94827] src=github.com ↗ pub= topic=ai-tools verified=true sentiment=· neutral

Watermarks-remover: Strip multi-vendor AI provenance marks

Watermarks-remover v0.3.2, an open-source agent skill and Python script suite by Guillaume Meyer, strips multi-vendor AI provenance marks from text and files, including Claude, Gemini/SynthID-Text, OpenAI, and open-LLM Kirchenbauer-style marks, targeting invisible Unicode, statistical watermarks, and C2PA/EXIF/XMP metadata. The tool, requiring Python 3.10+ and optional external tools like c2patool and exiftool, offers deterministic scripts for Layer A text cleaning, an optional Layer B rewrite hook, and image cleaning with optional pixel-domain SynthID scoring via an external reverse-SynthID checkout.

read11 min views1 publishedAug 13, 2026
Watermarks-remover: Strip multi-vendor AI provenance marks
Image: source
_ _ _ ____ ___ ____ ____ _  _ ____ ____ _  _ ____    ____ ____ _  _ ____ _  _ ____ ____
| | | |__|  |  |___ |__/ |\/| |__| |__/ |_/  [__  __ |__/ |___ |\/| |  | |  | |___ |__/
|_|_| |  |  |  |___ |  \ |  | |  | |  \ | \_ ___]    |  \ |___ |  | |__|  \/  |___ |  \

Agent skill + stdlib Python scripts to strip multi-vendor AI provenance marks from text and files — for privacy and hygiene on content you own.

Layer Target How
A
Invisible Unicode, exotic spaces, bidi, tag chars Deterministic Python scripts
B
Statistical (token-sampling) text watermarks Agent rewrite + optional rewrite_text.py hook
Files
C2PA / EXIF / XMP / doc props PNG, JPEG, SVG, PDF, DOCX, ODT, HTML, Markdown

Vendors / ecosystems (class-level): Claude, Gemini / SynthID-Text, OpenAI provenance surfaces, open-LLM Kirchenbauer-style marks.

Latest release: v0.3.2

Skill path: skills/remove-ai-marks/

(migration: formerly remove-claude-marks

; slash alias /remove-claude-marks

still documented)

mkdir -p .grok/skills
ln -sfn "$(pwd)/skills/remove-ai-marks" .grok/skills/remove-ai-marks

mkdir -p ~/.grok/skills
ln -sfn "$(pwd)/skills/remove-ai-marks" ~/.grok/skills/remove-ai-marks

Invoke with /remove-ai-marks

or ask to “strip AI watermarks / C2PA / Claude marks / SynthID-class text.”

Optional system tools (auto-used when present):

Tool Role
c2patool

exiftool

Core scripts need Python 3.10+ stdlib only. Layer B model calls are optional.

SCRIPTS=skills/remove-ai-marks/scripts

python3 "$SCRIPTS/inspect_file.py" draft.md
python3 "$SCRIPTS/clean_file.py" draft.md -o draft.cleaned.md
python3 "$SCRIPTS/clean_file.py" photo.png -o photo.cleaned.png
python3 "$SCRIPTS/clean_file.py" notes.docx -o notes.cleaned.docx

python3 "$SCRIPTS/inspect_text.py" draft.md
python3 "$SCRIPTS/clean_text.py" draft.md -o draft.cleaned.md --stats

python3 "$SCRIPTS/rewrite_text.py" draft.md --backend print-prompt --strength paraphrase

python3 "$SCRIPTS/inspect_image.py" shot.png
python3 "$SCRIPTS/clean_image.py" shot.png -o shot.cleaned.png

inspect_image.py

and clean_image.py

can report a pixel-domain SynthID confidence score when an external checkout of aloshdenny/reverse-SynthID is available. The scorer is

not bundled: it is loaded at runtime from your checkout, and its code remains under the upstream project's non-commercial Research License.

SCRIPTS=skills/remove-ai-marks/scripts

"$SCRIPTS/setup_synthid.sh"

REVERSE_SYNTHID_DIR=~/reverse-SynthID \
~/reverse-SynthID/.venv/bin/python "$SCRIPTS/score_synthid.py" shot.png

REVERSE_SYNTHID_DIR=~/reverse-SynthID \
~/reverse-SynthID/.venv/bin/python "$SCRIPTS/inspect_image.py" shot.png

setup_synthid.sh

accepts --dir PATH

, --ref REF

, and --full

(install the full upstream requirements.txt

, which adds torch

/diffusers

for the upstream VAE bypass this project does not use).

make docker-synthid-build
docker run --rm \
  --user "$(id -u):$(id -g)" \
  --read-only --tmpfs /tmp \
  -v "$(pwd):/data" \
  watermarks-remover-synthid-scorer /data/shot.png

The image is built locally from the upstream source at build time. It is not published, so it does not redistribute the upstream code.

V4 scoring uses artifacts/spectral_codebook_v4.npz

from the upstream checkout (~220 MB). This is detection/scoring only — it does not remove pixel watermarks.

Channel Claude Gemini/SynthID OpenAI Open-LLM
Unicode / edit-based text Layer A Layer A Layer A Layer A
Statistical sampling text Layer B best-effort Layer B best-effort Layer B if present Layer B best-effort
C2PA / file metadata Yes (listed formats) Yes when present Yes when present Yes when present
Pixel image marks Out of scope Optional SynthID score (external); removal out of scope Out of scope Out of scope
Training backdoors Out of scope Out of scope Out of scope Out of scope

Details: skills/remove-ai-marks/references/vendor-notes.md,

.

mark-classes.md

Modern LLM watermarks often hide a signal in which tokens are chosen (generative / sampling bias), not only in invisible characters. Edit-based schemes inject Unicode or synonym rules. File schemes attach C2PA or generator metadata.

Layer A removes edit-based Unicode carriers (testable).Layer B attacks sampling watermarks via heavy rewrite (best-effort; literature-standard attacks such as paraphrase / back-translation).File cleaners strip C2PA/XMP/props from supported containers.

Until vendors ship public detectors and keys, no tool can honestly certify “this fails the official check.” Reports must separate verifiable vs best-effort work.

Prefer a non-origin model for Layer B (do not rewrite Claude text with Claude if you are trying to avoid re-stamping).

Text watermarks live in the wording itself: the signal is spread across token choices, so nearly every sentence carries a little of it. Two consequences follow, and they are why Layer B is honestly described as best-effort rather than a magic eraser.

Removal means rewording, not restructuring. Shuffling paragraphs, changing headings, or light touch-ups barely move the signal. Stripping a statistical mark requires rewriting a substantial fraction of the text — sentence by sentence, not section by section. - Rewording degrades the copy. Any rewrite replaces the original word choices with the rewriting model's, which flattens tone, voice, and precision. On production copy (SEO, marketing, client work) that degradation is real and often visible to the people who care most about the writing. It is like taking text from a top-tier model and asking a less capable model to rewrite it from scratch: the result cannot exceed the rewrite model's ceiling.

Which leads to the honest full-circle question:

If the plan is to rewrite the text with a cheaper model anyway, why pay for a premium model in the first place? Generating directly with the cheaper model is simpler, cheaper, and produces the same — or better — end result.

Layer B makes sense when you specifically want the premium model's thinking and drafting and accept a rewrite pass to satisfy a hygiene or privacy requirement — not as a cheap route to mark-free text.

When to skip Layer B:

Quality matters more than hygiene: use the lossless path — Layer A Unicode scrub plus the file metadata cleaners — and keep the original prose.Rewriting anyway: use anon-origin model (rewriting with the origin model can re-stamp the text), and remember residual risk remains — no tool can certify a vendor detector will fail.

Format Inspect Clean
PNG / JPEG C2PA chunks / APP11, AI XMP hints Drop metadata segments
SVG <metadata> , XMP
Strip blocks
Byte/XMP + optional tools exiftool preferred; degraded without it
DOCX docProps / customXml Scrub props, drop customXml
ODT meta.xml Drop generator / AI-ish meta
HTML meta, JSON-LD, data-ai* Strip tags/attrs
Markdown YAML frontmatter AI keys Drop keys + Layer A body

Pixel-domain watermark removal and C2PA soft binding (in-content watermark that can re-link a remote Content Credentials manifest after metadata is stripped) remain out of scope. Stripping hard-bound C2PA does not clear those channels. An optional local SynthID scorer is available for detection only (see above).

This tool reports verifiable removals (Unicode counts, metadata actions) and best-effort Layer B rewrites. It cannot certify that vendor detectors will fail.

To check residual signals yourself (optional, external):

Channel What we remove What may remain External check (examples)
Hard-bound C2PA / EXIF / XMP Yes Soft-bound / pixel marks

Google SynthID/ Vertex detector where offered); optional localreverse-SynthIDscorerIndustry two-layer context (C2PA + imperceptible watermark): Institute of AI PM guide.

Option Removes Notes
Unicode scrub (Layer A) ZWSP, bidi, tags, exotic spaces, … Safe default for text
Rewrite (Layer B) Statistical token marks (best-effort) Always offered by skill; costs style — see

Matrix: skills/remove-ai-marks/references/removal-matrix.md.

See skills/remove-ai-marks/references/ethics.md. For privacy and research on

your content — not academic fraud or false “human-written” claims.

python3 -m venv .venv && .venv/bin/pip install pytest
.venv/bin/python -m pytest          # or: make test
make smoke                          # quick CLI smoke on fixtures

v0.3.2 — security hardening (safe writes, HTTP client, CI supply chain)

Safe, atomic output writes: every cleaner now writes via temp-file + atomic rename (safe_write_bytes

/safe_write_text

), refuses symlinked destinations, and creates.bak

backups through the same safe path — pre-placed symlinks (e.g. in/tmp

or download dirs) can no longer redirect a clean write onto an arbitrary file: redirects are refused outright, so an API key in therewrite_text.py

HTTP client hardeningAuthorization

header can never be re-sent to an unvalidated host; non-loopback endpoints aredenied by default(opt in with--allow-remote

orWATERMARKS_REWRITE_ALLOW_REMOTE=1

); only http(s) schemes are accepted;--api-key

was removed — keys are env-only viaWATERMARKS_REWRITE_API_KEY

Resource caps: default max input 1 GiB → 256 MiB, new 64 MiB stdin cap, DOCX/ODT zip budget 512 MiB → 128 MiB, andRLIMIT_AS

/RLIMIT_FSIZE

applied to exiftool/c2patool/SynthID subprocesses (all caps env-overridable)Supply chain: CI actions SHA-pinned withpermissions: contents: read

, pinned dev deps (requirements-dev.txt

), apip-audit

step, and a new CodeQL workflow; the Docker image now runs as an unprivileged user with pip pinnedScorer deps: Pillow bumped 10.4.0 → 12.3.0 (24 known CVEs); API usage verified against the pinned upstream commit- Tests: 18 new security regression tests (60 total, all passing)

v0.3.1 — stronger Layer B statistical-watermark rewrite

rewrite_text.py

default paraphrase now performs an explicitword-choice + syntax attack (clause order, connectors, transition words, sentence boundaries, function words) rather than a generic rewrite- New --strength humanize

: zero-shot "write like a human" pass targeting formulaic AI-style phrasing - New --strength code

: rewrites comments, docstrings, and string literals, and renames local identifiers while preserving behavior and public API names - Structural pass now emits "natural, varied human prose" instead of AI-typical "clear professional style"

  • New --temperature

(default0.9

) for both Ollama and OpenAI-compatible backends - New --candidates N

: generates N rewrites and selects the most lexically diverged (bigram Jaccard distance) with a length-drift guard - Stronger model hygiene: prefer local open-weight models and avoid any known-watermarked vendor, not just the suspected origin

  • Residual-risk reporting now distinguishes short/highly predictable text (lower risk) from long, high-entropy prose (higher risk)
  • Docs updated in SKILL.md

,removal-matrix.md

, andvendor-notes.md

; tests cover new prompts, divergence scoring, and candidate selection

v0.3.0 — optional SynthID pixel scoring

  • Optional pixel-domain SynthID scorer via an external checkout (aloshdenny/reverse-SynthID

score_synthid.py

); surfaced ininspect_image.py

/clean_image.py

withREVERSE_SYNTHID_DIR

or--synthid-dir

setup_synthid.sh

bootstrap (scorer-only dependencies;--full

installs upstream requirements);Dockerfile.synthid

plusmake docker-synthid-build

/docker-synthid-help

  • Makefile smoke-synthid

andbootstrap-synthid

targets - Tests for the scorer adapter, CLI unavailable path, JSON parsing, and runtime errors

  • Docs: detection/scoring only (no pixel removal); upstream code is not bundled and remains under its non-commercial Research License

v0.2.0 — c2patool false-positive fix

image_meta.py

:has_manifest

no longer flagsError: No claim found

/No JUMBF data found

as a manifest (operator-precedence bug: the negative markers now veto every positive branch)- New tests/test_c2patool_report.py

(4 cases: no claim, no JUMBF, genuine manifest, tool absent) - Docs: fixed c2patool

links (repo moved tocontentauth/c2pa-rs

); added a disclaimer on the quality cost of text-watermark removal

v0.1.0 — packaging polish + provenance honesty

Makefile

(test

/smoke

/install-skill

) andpytest.ini

  • Fixture samples for Markdown, HTML, SVG; PDF degraded-clean test
  • Docs: industry two-layer model (hard-bound C2PA vs soft binding / SynthID-media) - README residual-risk table + links to external verify tools
  • Reference: Institute of AI PM C2PA/SynthID guide
  • Soft-binding and pixel/audio/video watermarks explicitly out of scope in skill/matrix/ethics

v0.0.1 — initial multi-vendor release

  • Agent skill remove-ai-marks

(replaces Claude-onlyremove-claude-marks

) Layer A: invisible Unicode / bidi / tag chars / space homoglyphs (inspect_text

/clean_text

)Layer B: rewrite guidance + optionalrewrite_text.py

(print-prompt, Ollama, OpenAI-compatible)Files: C2PA/AI metadata strip for PNG, JPEG, SVG, PDF, DOCX, ODT, HTML, Markdown- Unified inspect_file.py

/clean_file.py

  • Multi-vendor docs (Claude, Gemini/SynthID-class, OpenAI, open-LLM)
  • Stdlib-first scripts; optional c2patool

/exiftool

MIT — see LICENSE.

How Claude marks AI-generated content(Anthropic)- Dathathri et al., (SynthID-Text, Nature 2024)Scalable watermarking for identifying large language model outputs - Google AI for Developers, (Gemini API docs)SynthID safeguards C2PA/c2patool- Kirchenbauer et al., A Watermark for Large Language Models - Zhang et al., (ICML 2024)Watermarks in the Sand: Impossibility of Strong Watermarking for Generative Models google-deepmind/synthid-text(research reference; not used for detection here)aloshdenny/reverse-SynthID(research reference)- Institute of AI PM, (two-layer industry model: C2PA + imperceptible watermark / soft binding; SB 942 / EU AI Act Art. 50 context)AI Content Provenance and Watermarking: The PM's Guide to C2PA and SynthID

── more in #ai-tools 4 stories · sorted by recency
── more on @guillaume meyer 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain — perfect for shipping the agent you just read about.

$git push zahid main
Live at https://your-agent.zahid.host
Get free account → Pricing
from €0/mo · no card required
LIVE [news/watermarks-remover-s…] indexed:0 read:11min 2026-08-13 ·