EU Rules AI-Generated Content Uncopyrightable: What Engineers Need to Know
The Ruling in Plain Terms
The European Union’s top copyright authority has drawn a hard line: works generated entirely by artificial intelligence, without meaningful human creative input, do not qualify for copyright protection. This isn't a speculative policy paper—it's the current legal reality following a decision that crystallized the principle that copyright requires a human author exercising "free and creative choices." The source material, originally flagged on Mathstodon, confirms that the EUIPO (European Union Intellectual Property Office) has formally refused registration for a work where the only listed creator was an AI system.
The core logic is simple and brutal: if you type a prompt and the machine spits out a complete image, text, or code block, you didn't author it. You commissioned it. The law protects human expression, not machine execution. This doesn't mean all AI-assisted works are uncopyrightable. If a human arranges, selects, edits, or creatively modifies the output, the human-authored elements can be protected. But the raw, unmodified output? In the EU, that's in the public domain the moment it's created.
For the working engineer, this immediately shifts the conversation from "Is AI legal?" to "How do I build a workflow that preserves my IP rights?"
Why This Hits Different for Engineers and FDEs
Most commentary on AI copyright fixates on art and literature. For us, the stakes are actually higher and more immediate. Code is the ultimate functional creative work. It has both expressive and utilitarian value. Here’s why this ruling lands like a bomb in our world:
1. Generated Code is Now a Liability Vector If you use an AI coding assistant to generate a complete function or module and drop it directly into a proprietary codebase, you've just inserted a chunk of code that, under EU law, you likely don't own. In a startup raising its Series A, during IP due diligence, a lawyer will ask: "Did a human write every line we claim to own?" A "yes" from Copilot isn't a human. This can crater valuation or, worse, open the door for a competitor to lift that exact block of code, claim it was never copyrighted, and use it against you.
2. The GPL and Copyleft Time Bomb Open source licenses rely on copyright. If the code isn't copyrightable, the license has no teeth. But the reverse is also true: if you use an AI trained on GPL code and it regenerates a recognizable derivative, you might be infringing on someone else's copyright while simultaneously having no copyright of your own to bargain with. You get all the liability and none of the protection.
3. Forward-Deployed Engineers Operate in the Gray Zone An FDE is often inside a customer's environment, shipping prototypes at high velocity. The classic move is to use an LLM to generate a data transformation script, a SQL query, or an integration adapter on the fly. If that script becomes core to the customer's paid solution, and it was purely AI-generated, the customer's legal team may later discover they don't own the very thing they paid for. As an FDE, your taste and speed are your highest-leverage skills—this ruling means you must add a new dimension to that taste: IP traceability. For a deeper dive on those skills, check out The Highest-Leverage Skills for an FDE in the AI Era.
The Architecture of an AI-IP-Safe Workflow
To think clearly about this, we need to model the workflow. It’s no longer a simple one-shot prompt. A defensible, copyright-safe engineering process looks like a human-in-the-loop system where the AI is a component, not the author.
The key node here is "Human Curation Layer." It’s not enough to glance at the output and say "looks good." The legal standard is "free and creative choices." In engineering terms, that means you need to leave fingerprints. Refactor the generated code. Change variable names for semantic clarity. Restructure the logic to fit your project’s particular architecture. Add error handling specific to your known edge cases. Write the tests yourself. Each of these is a creative choice that builds the chain of human authorship.
Practical Mitigations You Can Ship Today
This isn't a theoretical problem. Here are concrete, implementable steps to protect your work right now:
1. The "Refactor Commit" Pattern Never commit raw AI output directly. Even if it works perfectly, pull it into your editor and make a deliberate refactoring pass. The goal isn't to change functionality but to imprint your engineering judgment. Then, commit that refactored version. Your Git history becomes a legal artifact showing the human transformation.
2. Hybrid Generation with Deliberate Composition Instead of asking for an entire module, use the AI for small, composable units that you then assemble. Ask for a pure function, a type definition, or a regex. You are the one choosing how these atoms combine into a molecule. The architecture—the selection and arrangement of these pieces—is a clear creative act. This is similar to the composability we teach in The FDE Portfolio: 4 Projects to Build to Prove You Can Ship, where demonstrating architectural intent is everything.
3. Document Your Creative Choices
Add a comment block or a commit message that explicitly states your creative intent: // Chose a recursive descent parser here instead of the generated iterative one to improve readability for the team. This isn't just good engineering documentation; it's a timestamped record of human authorship.
4. License Your AI Inputs If you're fine-tuning or using few-shot prompting with your own proprietary examples, you're on strong ground. The final output is a derivative of your copyrighted input. Keep a clean record of the examples you provided.
5. Audit Your Dependencies If you use an AI coding tool inside a monorepo, consider a CI/CD check that flags files with >90% AI-generated similarity scores (tools for this are emerging). This isn't to block AI use but to trigger a mandatory human review and refactor step before merge.
The Forward-Deployed Reality: Chaos and Opportunity
For FDEs, this ruling is actually a massive opportunity to differentiate. The market is flooding with engineers who can prompt. The scarce skill is the engineer who can own the output. When you're on a customer site and you ship a prototype in a week, as described in What a Forward Deployed Engineer Actually Does in a Week, the customer isn't just buying the code. They're buying the assurance that the code is theirs, cleanly, with no legal ghosts in the machine.
This means your workflow must be auditable at speed. A practical FDE pattern is the "AI Draft, Human Sign-off" pair. You generate the boilerplate, the data munging, the API client—all the grunt work. Then you spend your high-leverage time on the 20% that matters: the business logic, the security model, the state machine transitions. You write that part from scratch, deliberately. You've just created a copyrighted core, surrounded by utility code that, even if it were public domain, doesn't matter because the value is in the architecture you built around it.
A Balanced Take: It's Not All Doom and Gloom
Let's zoom out. This ruling is actually a rational stabilization of the IP system. The alternative—granting full copyright for prompt engineering—would have led to a catastrophic land grab, where trolls automated the generation of every possible melody, logo, and code snippet and then sued everyone. That's a worse world for builders.
For the pragmatic engineer, the boundary is clearer than it seems. Think of the AI as an extremely talented junior developer who happens to have no legal right to own their work. You wouldn't let a junior dev's first draft go straight to production without code review and refactoring. You'd guide them, reshape their work, and integrate it into the broader system. Do the same with the AI, and you'll naturally cross the threshold of human authorship.
The real risk is for fully automated content pipelines—the systems that generate thousands of product descriptions, news summaries, or boilerplate microservices without a human ever looking at the output. Those are now legally naked. If you're building one of those, you need to insert a meaningful human checkpoint, or accept that your output is a commodity no one can own.
If you're building AI-powered tools that process user content, like a GitHub PR Review Bot or a Gmail Triage Agent, the copyright of the tool's output (the review comment or the draft reply) may be in question, but the value is in the action, not the ownership of the text. Focus your IP protection on the unique system architecture, the prompt chains, and the integration logic—all of which you designed by hand.
FAQ: Copyright, Code, and Copilot
Q: If I use GitHub Copilot to write a function and I edit one line, do I own it? A: Probably not. The standard is "free and creative choices," not a mechanical change. Changing a variable name or fixing a typo is a trivial modification. Restructuring the algorithm, adding novel error handling, or integrating it into a larger, human-designed architecture are the kinds of transformations that establish authorship. Make your edits count.
Q: Does this mean all AI-generated code is open source? A: No. "Not copyrighted" is not the same as "open source." Open source is a license granted by a copyright holder. If there is no copyright holder, there's no one to grant a license. The code is effectively in the public domain, but be careful: if the AI generated code that is a derivative of someone else's copyrighted GPL code, you could still be infringing on that original copyright, even though you don't own the generated version.
Q: How does this affect my startup's valuation? A: Directly. IP due diligence is standard in any funding round or acquisition. Investors buy defensible moats, and copyright is a key part of that. If your core codebase has a significant percentage of unmodified AI-generated code, you have a disclosure problem. Start the audit now. The refactor-commit pattern is your cheapest insurance policy.
Q: Can I patent AI-generated inventions? A: This ruling is about copyright, not patents. Patent law has its own separate, complex relationship with AI inventorship (the famous DABUS cases). In most jurisdictions, a human inventor is still required for a patent. Don't assume that because copyright is off the table, patents are too. They're different legal tools for different kinds of protection.
Q: What if I'm just using it for internal tools that never leave the company? A: Legally, the risk of being sued for copyright infringement on an internal tool is low, but the business risk is real. If that internal tool becomes critical infrastructure and you later want to license or sell it, you'll face the ownership question. Build with clean IP habits from day one, even for internal projects.
Want to build like a Forward Deployed Engineer?
FDE Coach is a cohort-based program in frontend, backend, AWS, and AI. Build real products and get referred to 200+ hiring partners.
Explore the program