Cardano founder ships free code that strips Anthropic Claude watermarks

Charles Hoskinson, the founder of the Cardano blockchain, has published a free open-source release that removes the watermarks Anthropic now attaches to Claude output. He calls it Anthropies. The release lands five days after Anthropic switched on invisible marking across every Claude product. The code appeared on GitHub under an Apache 2.0 license, so anyone can copy, modify, or sell it. Anthropic's mark is not a hidden character. A secret key steers tournament sampling, the step that breaks

2 min
Cardano founder ships free code that strips Anthropic Claude watermarks

Charles Hoskinson, the founder of the Cardano blockchain, has published a free open-source release that removes the watermarks Anthropic now attaches to Claude output. He calls it Anthropies.

Illustration of a chatbot watermark being stripped
A free release now strips Anthropic Claude watermarks. Illustration: llms.blog

The release lands five days after Anthropic switched on invisible marking across every Claude product. The code appeared on GitHub under an Apache 2.0 license, so anyone can copy, modify, or sell it.

Anthropic's mark is not a hidden character. A secret key steers tournament sampling, the step that breaks ties between words that fit equally well, so the signal lives in word choice rather than a payload you can delete.

Hoskinson's repository attacks the problem in three layers. The "Co-Authored-By" git trailer strips out cleanly. C2PA credentials on images disappear after a re-encode. Prose is the hard case, so the code routes text through a model other than Claude, a step it calls a non-origin rewrite, and it refuses to run that rewrite inside Claude or Gemini because they would simply stamp the mark back on.

He packaged the release with three modes: Clean strips the trailers deterministically, humanize rewrites prose elsewhere, and orchestrate blocks the job when the host model is Claude.

Hoskinson framed the project as a warning more than a utility. His legal argument centers on Anthropic's assignment clause, which grants users ownership of output "subject to your compliance with our Terms." He reads that phrasing as a condition precedent, so a breach could mean ownership never transferred. He also argues the co-authorship line could later surface as evidence of joint authorship, and that an editor who runs human copy through Claude for a quick proofread could trip a detector months later.

Anthropic has not responded. The company is preparing a public listing above two trillion dollars and has already withheld its strongest model from the public.

The repository had collected four stars by Sunday morning. Adoption is not really the point. The question it poses is simpler: once a model has signed a sentence, who owns it?

Sources

Written by

More to read

  • Modular Open-Sources Mojo Language Compiler and Toolchain Under Apache 2.0

    Modular Open-Sources Mojo Language Compiler and Toolchain Under Apache 2.0 Modular has released the complete source code for the Mojo programming language compiler, standard tooling, and runtime infrastructure under the Apache 2.0 license with LLVM exceptions. The announcement, delivered on August 18, 2026 during the company's ModCon developer conference, fulfills a multi-year roadmap commitment to transition the systems programming language to a fully open development model. The compiler sour

    1 min
  • AI Agent Evaluation in Production: Trajectory Benchmarks, Sandbox Harnesses, and Flakiness Mitigation

    Evaluating standard large language models relies on static input-output pairs: a fixed prompt produces a completion that an automated script compares against reference strings or grades with a calibrated judge. Autonomous AI agents break this paradigm completely. An agent executes a multi-step trajectory consisting of planning, tool invocation, environment state observation, error recovery, and variable-length decision loops. Evaluating an agent requires testing not just the final string output,

    1 min
  • Fully Sharded Data Parallel (FSDP) and ZeRO: How Memory Sharding Eliminates Redundant Model States in Distributed Training

    Fully Sharded Data Parallel (FSDP) and ZeRO: How Memory Sharding Eliminates Redundant Model States in Distributed Training Training large language models across distributed GPU clusters introduces a fundamental memory bottleneck. In traditional Distributed Data Parallel (DDP) setups, every GPU maintains an identical copy of model weights, optimizer states, and gradients while processing independent data batches. As models scale from billions to hundreds of billions of parameters, static model s

    1 min