Earlier quoted context omitted.
Well, as a general rule, I don't do business with people who lie to me. You've got a business, and you sent me junk mail, but you made it look like some official government thing to get me to open it? I'm done, just because you lied on the envelope . I don't care how badly I need your service. There's a dozen other places that can provide it; I'll pick one of them rather than you, because you've shown yourself to be…
Out of curiosity, given two code submissions that are completely identical—one written solely by a human and one assisted by AI—why should its provenance make any difference to you? Is it like fine art, where it’s important that Picasso’s hand drew it? Or is it like an instruction manual, where the author is unimportant? Similarly, would you consider it to be dishonest if my human colleague reviewed and made changes…
The Claude Code Source Leak: fake tools, frustration regexes, undercover mode
101–110 of 636 posts
Re: The Claude Code Source Leak: fake tools, frustration regexes, undercover mode
#102The more code gets generated by AI, won’t that mean taking source code from a company becomes legal? Isn’t it true that works created with generative AI can’t be copyrighted?
I wonder if large companies have throught of this risk. Once a company’s product source code reaches a certain percentage of AI generation it no longer has copyright. Any employee with access can just take it and sell it to someone else, legally, right?
Re: The Claude Code Source Leak: fake tools, frustration regexes, undercover mode
#103Earlier quoted context omitted.
Langchain is for model-agnostic composition. Claude Code only uses one interface to hoist its own models so zero need for an abstraction layer. Langgraph is for multi-agent orchestration as state graphs. This isn't useful for Claude Code as there is no multi-agent chaining. It uses a single coordinator agent that spawns subagents on demand. Basically too dynamic to constrain to state graphs.
You may have a point but to drive it further, can you give an example of a thing I can do with langgraph that I can't do with Claude Code?
Re: The Claude Code Source Leak: fake tools, frustration regexes, undercover mode
#104Earlier quoted context omitted.
What signing? Are you referencing the use of Claude subscription authentication (oauth) from non-Claude Code clients? That’s already possible, nothing prevents you from doing it. They are detecting it on their backend by profiling your API calls, not by guarding with some secret crypto stuff. At least that’s how things worked last week xD
I'm referring to this signing bit: https://alex000kim.com/posts/2026-03-31-claude-code-source-l... Ah, it seems that Bun itself signs the code. I don't understand how this can't be spoofed.
They are most likely using these as post-fact indicators and have automation they kicks in after a threshold is reached.
Now that the indicators have leaked, they will most likely be rotated.
Re: The Claude Code Source Leak: fake tools, frustration regexes, undercover mode
#105Re: The Claude Code Source Leak: fake tools, frustration regexes, undercover mode
#106The buddy feature the article mentions is planned for release tomorrow, as a sort of April Fools easter egg. It'll roll out gradually over the day for "sustained Twitter buzz" according to the source. The pet you get is generated based off your account UUID, but the algorithm is right there in the source, and it's deterministic, so you can check ahead of time. Threw together a little app to help, not to brag but I go…
(I didn't think to include a UUID checker though - nice touch)
Re: The Claude Code Source Leak: fake tools, frustration regexes, undercover mode
#107A few weeks ago I was using Opus and Sonnet in OpenCode. Is this not possible anymore?
They don't want you using your subscription outside of Claude Code. Only API key usage is allowed.
Google also doubled down on this and OpenAI are the only ones who explicitly allow you to do it.
Re: The Claude Code Source Leak: fake tools, frustration regexes, undercover mode
#108Earlier quoted context omitted.
I'm normally suspicious but honestly they've been so massively supply-constrained that I don't think it really benefits them much. They're not worried about getting enough demand for the new models; they're worrying about keeping up with it. Granted, there's a small counterargument for mythos which is that it's probably going to be API-only not subscription
Why would Claude code mention Mythos then
Re: The Claude Code Source Leak: fake tools, frustration regexes, undercover mode
#109Earlier quoted context omitted.
It's different if it's an institutional decision or a personal like in your case. Which is and I am repeating myself here borderline insecure.
what's insecure about it? if it is up to the institution to make that decision - you can still do it. Claude is not stopping you from making that decision
Re: The Claude Code Source Leak: fake tools, frustration regexes, undercover mode
#110Earlier quoted context omitted.
That seems desirable? Like that's what commit messages are for. Describing the change. Much rather that than the m$ way of putting ads in commit messages
The commit message should complement the code. Ideally, what the code does should not need a separate description, but of course there can be exceptions. Usually, it's more interesting to capture in the commit message what is not in the code: the reason why this approach was chosen and not some other obvious one. Or describe what is missing, and why it isn't needed.