惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

G
Google Developers Blog
宝玉的分享
宝玉的分享
月光博客
月光博客
B
Blog
云风的 BLOG
云风的 BLOG
Google DeepMind News
Google DeepMind News
Engineering at Meta
Engineering at Meta
aimingoo的专栏
aimingoo的专栏
N
Netflix TechBlog - Medium
博客园_首页
GbyAI
GbyAI
人人都是产品经理
人人都是产品经理
A
About on SuperTechFans
Y
Y Combinator Blog
L
LangChain Blog
有赞技术团队
有赞技术团队
D
Docker
爱范儿
爱范儿
博客园 - 司徒正美
H
Hackread – Cybersecurity News, Data Breaches, AI and More
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
酷 壳 – CoolShell
酷 壳 – CoolShell
Microsoft Security Blog
Microsoft Security Blog
D
DataBreaches.Net

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Who Owns the Code Claude Wrote? The Legal Mess No One's T...
Andrew Kew · 2026-04-29 · via DEV Community

Anthropic accidentally published 512,000 lines of Claude Code's source in a routine update. Before sunrise, GitHub mirrors. Before breakfast, someone had rewritten the whole thing in Python. Then came 8,000 DMCA takedowns — for code that Anthropic's own lead engineer said was predominantly written by Claude itself.

Can you issue a DMCA takedown for code copyright law may not protect? Nobody had a clean answer. That's the problem.

"If Claude Code was, by Anthropic's own lead engineer's admission, predominantly written by Claude itself, does Anthropic even own it?"

The same question applies to your codebase.

Three risks in your codebase

Three separate legal risks are colliding right now, and most engineers are only dimly aware of any of them:

  • Copyrightability — the US Copyright Office and DC Circuit (upheld after the Supreme Court declined to hear Thaler in March 2026) are clear: AI-generated work without meaningful human authorship is not copyrightable. Code you accepted verbatim from Claude may sit in the public domain in everything but name.
  • Work-for-hire — your employment contract almost certainly already assigned anything you build at work to your employer. AI-assisted or not, that doctrine applies. Worse: if your employer licenses Claude Code and you use it for a side project, a broad IP clause may reach that too.
  • GPL contamination — AI tools are trained on mountains of copyleft-licensed code. If the model reproduced a substantial verbatim chunk of GPL code in its output and you shipped it commercially, you may have a copyleft violation you can't see. "I didn't know" is not a defense.

Why it matters now

The legal edges are actively moving. Allen v. Perlmutter (600 detailed prompts + Photoshop edits — still unresolved) will be the closest thing yet to a ruling on how much human involvement is "enough." Doe v. GitHub in the Ninth Circuit is asking whether Copilot reproduces licensed code without attribution — it's already changed industry behavior: Copilot added duplicate detection filters; M&A due diligence now routinely includes an AI codebase license scan.

The place where unsettled law becomes concrete today isn't court — it's acquisition due diligence and fundraising, where investors are already asking these questions as a condition of closing.

What to do

1. Run a license scan. FOSSA, Snyk Open Source, or Black Duck. One afternoon, costs less than the first hour of a copyright dispute. If you're shipping a commercial product and haven't done this, you're operating on assumption.

2. Document human creative decisions as you go. "Restructured Claude's module architecture, rejected initial state management approach, rewrote error handling from scratch" is legal evidence. "Add rate limiting module" is not. Export your prompt logs from agentic sessions where you made architectural calls.

3. Read your IP clause before you build anything on the side. Search your employment contract for "intellectual property," "IP assignment," or "work product." The phrase to watch: "any software created with the assistance of company-licensed tools." If your employer licenses Claude Code, that clause may reach your weekend project.

4. Check your Anthropic plan. Consumer/Pro plans have narrower IP indemnification than API/Enterprise. If you're shipping commercially on the free tier, the gap is real.


Source: Legal Layer — Who Owns the Code Claude Wrote?

✏️ Drafted with KewBot (AI), edited and approved by Drew.