Claude Code's source code has been leaked via a map file in their NPM registry
- foob - 15226 sekunder sedanAmusingly, they deprecated it with a message of "Unpublished" instead of actually unpublishing it [1]. When you use npm unpublish it removes the package version from the registry, when you use npm deprecate it leaves it there and simply marks the package as deprecated with your message. I have to imagine the point was to make it harder for people to download the source map, so to deprecate it with this message gives off a bit of claude, unpublish the latest version of this package for me vibe.
[1] - https://www.npmjs.com/package/@anthropic-ai/claude-code/v/2....
- treexs - 38646 sekunder sedanThe big loss for Anthropic here is how it reveals their product roadmap via feature flags. A big one is their unreleased "assistant mode" with code name kairos.
Just point your agent at this codebase and ask it to find things and you'll find a whole treasure trove of info.
Edit: some other interesting unreleased/hidden features
- The Buddy System: Tamagotchi-style companion creature system with ASCII art sprites
- Undercover mode: Strips ALL Anthropic internal info from commits/PRs for employees on open source contributions
- sheeshkebab - 4492 sekunder sedanObfuscated ts/js code is not machine code to begin with, so not sure what’s the big deal.
Also, not sure why anthropic doesn’t just make their cli open source - it’s not like it’s something special (Claude is, this cli thingy isn’t)
- kschiffer - 31827 sekunder sedanFinally all spinner verbs revealed: https://github.com/instructkr/claude-code/blob/main/src/cons...
- bkryza - 33735 sekunder sedanThey have an interesting regex for detecting negative sentiment in users prompt which is then logged (explicit content): https://github.com/chatgptprojects/claude-code/blob/642c7f94...
I guess these words are to be avoided...
- mohsen1 - 32625 sekunder sedansrc/cli/print.ts
This is the single worst function in the codebase by every metric:
This should be at minimum 8–10 separate modules.- 3,167 lines long (the file itself is 5,594 lines) - 12 levels of nesting at its deepest - ~486 branch points of cyclomatic complexity - 12 parameters + an options object with 16 sub-properties - Defines 21 inner functions and closures - Handles: agent run loop, SIGINT, rate-limits, AWS auth, MCP lifecycle, plugin install/refresh, worktree bridging, team-lead polling (while(true) inside), control message dispatch (dozens of types), model switching, turn interruption recovery, and more - Painsawman123 - 30163 sekunder sedanReally surprising how many people are downplaying this leak! "Google and OpenAi have already open sourced their Agents, so this leak isn't that relevant " What Google and OpenAi have open sourced is their Agents SDK, a toolkit, not the secret sauce of how their flagship agents are wired under the hood! expect the takedown hammer on the tweet, the R2 link, and any public repos soon
- cedws - 34367 sekunder sedan
ANTI_DISTILLATION_CC This is Anthropic's anti-distillation defence baked into Claude Code. When enabled, it injects anti_distillation: ['fake_tools'] into every API request, which causes the server to silently slip decoy tool definitions into the model's system prompt. The goal: if someone is scraping Claude Code's API traffic to train a competing model, the poisoned training data makes that distillation attempt less useful. - avaer - 37586 sekunder sedanWould be interesting to run this through Malus [1] or literally just Claude Code and get open source Claude Code out of it.
I jest, but in a world where these models have been trained on gigatons of open source I don't even see the moral problem. IANAL, don't actually do this.
- hk__2 - 30610 sekunder sedanFor a combo with another HN homepage story, Claude Code uses… Axios: https://x.com/icanvardar/status/2038917942314778889?s=20
- blobbers - 7487 sekunder sedanIt's a little bit shocking that this zipfile is still available hours later.
Could anyone in legal chime in on the legality of now 're-implementing' this type of system inside other products? Or even just having an AI look at the architecture and implement something else?
It would seem given the source code that AI could clone something like this incredibly fast, and not waste it's time using ts as well.
Any Legal GC type folks want to chime in on the legality of examining something like this? Or is it liked tainted goods you don't want to go near?
- fatcullen - 5445 sekunder sedanThere's a bunch of unreleased features and update schedules in the source, cool to see.
One neat one is the /buddy feature, an easter egg planned for release tomorrow for April fools. It's a little virtual pet, sort of like Tamagotchi, randomly generated with 18 species, rarities, stats, hats, custom eyes.
The random generation algorithm is all in the code though, deterministic based on you account's UUID in your claude config, so it can be predicted. I threw together a little website here to let you check what your going to get ahead of time: https://claudebuddychecker.netlify.app/
Got a legendary ghost myself.
- theaicloser - 651 sekunder sedanThe irony of a source code leak via a map file is that it's such a classic mistake — map files are great for debugging but should never ship to production in a commercial product. Curious whether this was an oversight in their build pipeline or someone accidentally committed a dev config.
- dheerajmp - 36274 sekunder sedanSource here https://github.com/chatgptprojects/claude-code/
- meta-level - 21148 sekunder sedanHas the source code 'been leaked' or is this the first evidence of a piece of software breaking free from it's creators labs and jump onto GitHub in order to have itself forked and mutated and forked and ...
- lukan - 35787 sekunder sedanNeat. Coincidently recently I asked Claude about Claude CLI, if it is possible to patch some annoying things (like not being able to expand Ctrl + O more than once, so never be able to see some lines and in general have more control over the context) and it happily proclaimed it is open source and it can do it ... and started doing something. Then I checked a bit and saw, nope, not open source. And by the wording of the TOS, it might brake some sources. But claude said, "no worries", it only break the TOS technically. So by saving that conversation I would have some defense if I would start messing with it, but felt a bit uneasy and stopped the experiment. Also claude came into a loop, but if I would point it at this, it might work I suppose.
- barazany - 1957 sekunder sedanI analyzed its compaction engine, 3-layer masterpiece of which I write in full here: https://barazany.dev/blog/claude-codes-compaction-engine
- - NaN sekunder sedan
- vanyaland - 16125 sekunder sedanThis leak is actually a massive win. Now the whole community can study Claude Code’s architecture and build even better coding agents and open-source solutions.
- mil22 - 16443 sekunder sedanThis isn't even the first time - something similar happened back in February 2025 too:
https://daveschumaker.net/digging-into-the-claude-code-sourc... https://news.ycombinator.com/item?id=43173324
- mesmertech - 33446 sekunder sedanWas searching for the rumored Mythos/Capybara release, and what even is this file? https://github.com/chatgptprojects/claude-code/blob/642c7f94...
- minimaltom - 10638 sekunder sedanThis 'fingerprint' function is super interesting, I imagine this is a signal they use to detect non-claude-code use of claude-code tokens: src/utils/fingerprint.ts#L40-L63
- Squarex - 35966 sekunder sedanCodex and gemini cli are open source already. And plenty of other agents. I don't think there is any moat in claude code source.
- seifbenayed1992 - 18779 sekunder sedanWent through the bundle.js. Found 187 spinner verbs. "Combobulating", "Discombobulating", and "Recombobulating". The full lifecycle is covered. Also "Flibbertigibbeting" and "Clauding". Someone had fun.
- dhruv3006 - 35503 sekunder sedanI have a feeling this is like llama.
Original llama models leaked from meta. Instead of fighting it they decided to publish them officially. Real boost to the OS/OW models movement, they have been leading it for a while after that.
It would be interesting to see that same thing with CC, but I doubt it'll ever happen.
- starkeeper - 5176 sekunder sedanIt should be open source anyways. Maybe they will change gears.
- krzyzanowskim - 22853 sekunder sedanI almost predicted that on Friday https://blog.krzyzanowskim.com/2026/03/30/shipping-snake-oil... so close to when comedy become reality
- vbezhenar - 37930 sekunder sedanLoL! https://news.ycombinator.com/item?id=30337690
Not exactly this, but close.
- karimf - 36909 sekunder sedanIs there anything special here vs. OpenCode or Codex?
There were/are a lot of discussions on how the harness can affect the output.
- bob1029 - 38465 sekunder sedanIs this significant?
Copilot on OAI reveals everything meaningful about its functionality if you use a custom model config via the API. All you need to do is inspect the logs to see the prompts they're using. So far no one seems to care about this "loophole". Presumably, because the only thing that matters is for you to consume as many tokens per unit time as possible.
The source code of the slot machine is not relevant to the casino manager. He only cares that the customer is using it.
- jmward01 - 8931 sekunder sedanI hope this can now be audited better. I have doubted their feedback promises for a while now. I just got prompted again even though I have everything set to disable, which shouldn't be possible. When I dug into their code a long time ago on this it seemed like they were actually sending back message ids with the survey which directly went against their promise that they wouldn't use your messages. Why include a message id if you aren't somehow linking it back to a message? The code look, not great, but it should now be easier to verify their claims about privacy.
- harlequinetcie - 21006 sekunder sedanWhenever someone figures out why it's consuming so many tokens lately, that's the post worth upvoting.
- VadimPR - 19654 sekunder sedanThese security failures from Anthropic lately reveal the caveats of only using AI to write code - the safety an experienced engineer is not matched by an LLM just yet, even if the LLM can seemingly write code that is just as good.
Or in short, if you give LLMs to the masses, they will produce code faster, but the quality overall will degrade. Microsoft, Amazon found out this quickly. Anthropic's QA process is better equipped to handle this, but cracks are still showing.
- - 23244 sekunder sedan
- bryanhogan - 36451 sekunder sedan
- mmaunder - 16596 sekunder sedanThe only sensible response is to immediately open source it.
- zurfer - 26349 sekunder sedantoo much pressure. the author deleted the real source code: https://github.com/instructkr/claude-code/commit/7c3c5f7eb96...
- WD-42 - 23494 sekunder sedanLooks like the repo owner has force pushed a new project over the original source code, now it’s python, and they are shilling some other agent tool.
- gman83 - 32114 sekunder sedanGemini CLI and Codex are open source anyway. I doubt there was much of a moat there anyway. The cool kids are using things like https://pi.dev/ anyway.
- mattlangston - 9162 sekunder sedanBoris Cherny has said that Claude Code is simply a client of the public Claude API, so this may be a good thing for Anthropic to demonstrate Claude API best practices. Maybe CC "leaking" is just preparation for open sourcing Claude Code.
- cbracketdash - 34298 sekunder sedanOnce the USA wakes up, this will be insane news
- georgecalm - 24362 sekunder sedanIntersected available info on the web with the source for this list of new features:
UNRELEASED PRODUCTS & MODES
1. KAIROS -- Persistent autonomous assistant mode driven by periodic <tick> prompts. More autonomous when terminal unfocused. Exclusive tools: SendUserFileTool, PushNotificationTool, SubscribePRTool. 7 sub-feature flags.
2. BUDDY -- Tamagotchi-style virtual companion pet. 18 species, 5 rarity tiers, Mulberry32 PRNG, shiny variants, stat system (DEBUGGING/PATIENCE/CHAOS/WISDOM/SNARK). April 1-7 2026 teaser window.
3. ULTRAPLAN -- Offloads planning to a remote 30-minute Opus 4.6 session. Smart keyword detection, 3-second polling, teleport sentinel for returning results locally.
4. Dream System -- Background memory consolidation (Orient -> Gather -> Consolidate -> Prune). Triple trigger gate: 24h + 5 sessions + advisory lock. Gated by tengu_onyx_plover.
INTERNAL-ONLY TOOLS & SYSTEMS
5. TungstenTool -- Ant-only tmux virtual terminal giving Claude direct keystroke/screen-capture control. Singleton, blocked from async agents.
6. Magic Docs -- Ant-only auto-documentation. Files starting with "# MAGIC DOC:" are tracked and updated by a Sonnet sub-agent after each conversation turn.
7. Undercover Mode -- Prevents Anthropic employees from leaking internal info (codenames, model versions) into public repo commits. No force-OFF; dead-code-eliminated from external builds.
ANTI-COMPETITIVE & SECURITY DEFENSES
8. Anti-Distillation -- Injects anti_distillation: ['fake_tools'] into every 1P API request to poison model training from scraped traffic. Gated by tengu_anti_distill_fake_tool_injection.
UNRELEASED MODELS & CODENAMES
9. opus-4-7, sonnet-4-8 -- Confirmed as planned future versions (referenced in undercover mode instructions).
10. "Capybara" / "capy v8" -- Internal codename for the model behind Opus 4.6. Hex-encoded in the BUDDY system to avoid build canary detection.
11. "Fennec" -- Predecessor model alias. Migration: fennec-latest -> opus, fennec-fast-latest -> opus[1m] + fast mode.
UNDOCUMENTED BETA API HEADERS
12. afk-mode-2026-01-31 -- Sticky-latched when auto mode activates 15. fast-mode-2026-02-01 -- Opus 4.6 fast output 16. task-budgets-2026-03-13 -- Per-task token budgets 17. redact-thinking-2026-02-12 -- Thinking block redaction 18. token-efficient-tools-2026-03-28 -- JSON tool format (~4.5% token saving) 19. advisor-tool-2026-03-01 -- Advisor tool 20. cli-internal-2026-02-09 -- Ant-only internal features
200+ SERVER-SIDE FEATURE GATES
21. tengu_penguins_off -- Kill switch for fast mode 22. tengu_scratch -- Coordinator mode / scratchpad 23. tengu_hive_evidence -- Verification agent 24. tengu_surreal_dali -- RemoteTriggerTool 25. tengu_birch_trellis -- Bash permissions classifier 26. tengu_amber_json_tools -- JSON tool format 27. tengu_iron_gate_closed -- Auto-mode fail-closed behavior 28. tengu_amber_flint -- Agent swarms killswitch 29. tengu_onyx_plover -- Dream system 30. tengu_anti_distill_fake_tool_injection -- Anti-distillation 31. tengu_session_memory -- Session memory 32. tengu_passport_quail -- Auto memory extraction 33. tengu_coral_fern -- Memory directory 34. tengu_turtle_carbon -- Adaptive thinking by default 35. tengu_marble_sandcastle -- Native binary required for fast mode
YOLO CLASSIFIER INTERNALS (previously only high-level known)
36. Two-stage system: Stage 1 at max_tokens=64 with "Err on the side of blocking"; Stage 2 at max_tokens=4096 with <thinking> 37. Three classifier modes: both (default), fast, thinking 38. Assistant text stripped from classifier input to prevent prompt injection 39. Denial limits: 3 consecutive or 20 total -> fallback to interactive prompting 40. Older classify_result tool schema variant still in codebase
COORDINATOR MODE & FORK SUBAGENT INTERNALS
41. Exact coordinator prompt: "Every message you send is to the user. Worker results are internal signals -- never thank or acknowledge them." 42. Anti-pattern enforcement: "Based on your findings, fix the auth bug" explicitly called out as wrong 43. Fork subagent cache sharing: Byte-identical API prefixes via placeholder "Fork started -- processing in background" tool results 44. <fork-boilerplate> tag prevents recursive forking 45. 10 non-negotiable rules for fork children including "commit before reporting"
DUAL MEMORY ARCHITECTURE
46. Session Memory -- Structured scratchpad for surviving compaction. 12K token cap, fixed sections, fires every 5K tokens + 3 tool calls. 47. Auto Memory -- Durable cross-session facts. Individual topic files with YAML frontmatter. 5-turn hard cap. Skips if main agent already wrote to memory. 48. Prompt cache scope "global" -- Cross-org caching for the static system prompt prefix
- alhirzel - 5955 sekunder sedanI love the symbol name: "AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS`.
- freakynit - 3674 sekunder sedantools/bashSecurity.ts is a hackers goldmine. Sooo many exploit patterns detailed in there!!
- AlexWApp - 22190 sekunder sedanIt is pretty funny that they recently announced about mythos which possess cybersecurity threat and then after some days, the claude code leaked. I think we know the culprit
- randomsc - 3201 sekunder sedanDid it happen due to Bun?
- meta-level - 12061 sekunder sedanThis is what I'd do to trick my competitors into thinking they now know my weak spots, agenda, etc.: drop a honeypot and do something else :)
- tills13 - 17941 sekunder sedanIs it not already a node app? So the only novel thing here is we know the original var names and structure? Sure, sometimes obfuscated code can be difficult to intuit, but any enterprising party could eventually do it -- especially with the help of an LLM.
- evanbabaallos - 7413 sekunder sedanReleasing a massive feature every day has a cost!
unreliability becomes inevitable!
- solaire_oa - 15060 sekunder sedanI couldn't tell from the title whether is was client or the server code (although map file and NPM were hints). Looks like the client code, which is not as exciting.
- nickvec - 13298 sekunder sedanAnd this is what happens when you don’t take security seriously folks and instead just rush out vibecoded features without proper QA.
- Diablo556 - 32913 sekunder sedanhaha.. Anthropic need to hire fixer from vibecodefixers.com to fix all that messy code..lol
- Uptrenda - 2473 sekunder sedanThat idea list is super cute. I like the tamagochi idea. Somehow the candidness of that file makes it seem like anthropic would be an easy place to work at.
- neilv - 3010 sekunder sedanI've never understood this convention (common on HN, some news orgs, and elsewhere), that, when there's an IP breach, it's suddenly fair game for everyone else to go through the IP, analyze and comment on it publicly, etc.
- DanDeBugger - 15508 sekunder sedanFascinating, it appears now anyone can be Claude!
Though I wonder how the performance differs from creating your own thing vs using their servers...
- mutkach - 23513 sekunder sedan/*
* Check if 1M context is disabled via environment variable.
* Used by C4E admins to disable 1M context for HIPAA compliance.
*/ export function is1mContextDisabled(): boolean {
isEnvTruthy(process.env.CLAUDE_CODE_DISABLE_1M_CONTEXT)return}
Interesting, how is that relevant to HIPAA compliance?
- Sathwickp - 30134 sekunder sedanThey do have a couple of interesting features that has not been publicly heard of yet:
Like KAIROS which seems to be like an inbuilt ai assistant and Ultraplan which seems to enable remote planning workflows, where a separate environment explores a problem, generates a plan, and then pauses for user approval before execution.
- mapcars - 39117 sekunder sedanAre there any interesting/uniq features present in it that are not in the alternatives? My understanding is that its just a client for the powerful llm
- therealarthur - 19401 sekunder sedanThink It's just the CLI Code right? Not the Model's underlying source. If so - not the WORST situation (still embarrassing)
- VadimPR - 28171 sekunder sedanAnthropic team does an excellent job of speeding up Claude Code when it slows down, but for the sake of RAM and system resources, it would be nice to see it rewritten in a more performant framework!
And now, with Claude on a Ralph loop, you can.
- oxag3n - 6181 sekunder sedanMany comments about code quality being irrelevant.
I'd agree if it was launch-and-forget scenario.
But this code has to be maintained and expanded with new features. Things like lack of comments, dead code, meaningless variable names will result in more slop in future releases, more tokens to process this mess every time (like paying tech-debt results in better outcomes in emerging projects).
- sourcegrift - 22458 sekunder sedanCheap chinese models incoming.
- theanonymousone - 35906 sekunder sedanI am waiting now for someone to make it work with a Copilot Pro subscription.
- prawns_1205 - 17410 sekunder sedansource maps leaking original source happens surprisingly often. they're incredibly useful during development, but it's easy to forget to strip them from production builds.
- sbochins - 29055 sekunder sedanDoes this matter? I think every other agent cli is open source. I don’t even know why Anthropic insist upon having theirs be closed source.
- dark-star - 4736 sekunder sedanThe more I think about this, the more it seems they're not talking about linker map files[1]....
[1] https://www.tasking.com/documentation/smartcode/ctc/referenc...
- lanbin - 13380 sekunder sedanI read it with a different flavor. Is it possible that Mythos did all of this? I mean, life has always been finding a way, hasn't it? The first cry of cyber-life?
- anhldbk - 35836 sekunder sedanI guess it's time for Anthropic to open source Claude Code.
- __alexs - 21860 sekunder sedanLooking forward to someone patching it so that it works with non Anthropic models.
- - 29188 sekunder sedan
- tekacs - 30995 sekunder sedanIn the app, it now reads:
> current: 2.1.88 · latest: 2.1.87
Which makes me think they pulled it - although it still shows up as 2.1.88 on npmjs for now (cached?).
- LeoDaVibeci - 38957 sekunder sedanIsn't it open source?
Or is there an open source front-end and a closed backend?
- ramesh31 - 20654 sekunder sedanWho cares? It's Javascript, if anyone were even remotely motivated deobfuscation of their "closed source" code is trivial. It's silly that they aren't just doing this open source in the first place.
- - 26130 sekunder sedan
- dev213 - 26122 sekunder sedanUndercover mode is pretty interesting and potentially problematic: https://github.com/sanbuphy/claude-code-source-code/blob/mai...
- ZainRiz - 19395 sekunder sedanMaybe now someone will finally fix the bug that causes claude code to randomly scroll up all the way to the top!
- xyst - 7075 sekunder sedanBad day for the node/npm ecosystem.
- boxerbk - 21314 sekunder sedanMaybe everyone should slow the fuck down - https://mariozechner.at/posts/2026-03-25-thoughts-on-slowing...
- artdigital - 26429 sekunder sedanNow waiting for someone to point Codex at it and rebuild a new Claude Code in Golang to see if it would perform better
- jedisct1 - 32848 sekunder sedanIt shows that a company you and your organization are trusting with your data, and allowing full control over your devices 24/7, is failing to properly secure its own software.
It's a wake up call.
- q3k - 38488 sekunder sedanThe code looks, at a glance, as bad as you expect.
- ChicagoDave - 35410 sekunder sedanI hope everyone provides excellent feedback so they improve Claude Code.
- napo - 26189 sekunder sedanThe autoDream feature looks interesting.
- zoobab - 28010 sekunder sedanJust a client side written in JS, nothing to see here, the LLM is still secret.
They could have written that in curl+bash that would not have changed much.
- thefilmore - 29519 sekunder sedan400k lines of code per scc
- - 12403 sekunder sedan
- DeathArrow - 35339 sekunder sedanWhy is Claude Code, a desktop tool, written in JS? Is the future of all software JS or Typescript?
- sourcegrift - 21726 sekunder sedanRemoved
- bdangubic - 28560 sekunder sedanI have 705 PRs ready to go :)
- agile-gift0262 - 25522 sekunder sedantime to remove its copyright through malus.sh and release that source under MIT
- temp7000 - 25774 sekunder sedanThere's some rollout flags - via GrowthBook, Tengu, Statsig - though I'm not sure if it's A/B or not
- DeathArrow - 35757 sekunder sedanI wonder what will happen with the poor guy who forgot to delete the code...
- tw1984 - 21308 sekunder sedanwondering whether it was a human mistake or a CLAUDE model error.
- hemantkamalakar - 26508 sekunder sedantoday being March 31st, is this a genuine issue or just perfectly timed April Fools noise? What do you think?
- Pent - 21509 sekunder sedanApril Fools
- daft_pink - 23119 sekunder sedanNow we need some articles analyzing this.
- jakegmaths - 18076 sekunder sedanI think this is ultimately caused by a Bun bug which I reported, which means source maps are exposed in production: https://github.com/oven-sh/bun/issues/28001
Claude code uses (and Anthropic owns) Bun, so my guess is they're doing a production build, expecting it not to output source maps, but it is.
- isodev - 35125 sekunder sedanCan we stop referring to source maps as leaks? It was packaged in a way that wasn’t even obfuscated. Same as websites - it’s not a “leak” that you can read or inspect the source code.
- kolkov - 22982 sekunder sedan[flagged]
- philbitt - 7577 sekunder sedan[dead]
- mergeshield - 25584 sekunder sedan[dead]
- obelai - 26217 sekunder sedan[dead]
- mergeshield - 36497 sekunder sedan[dead]
- kevinbaiv - 35442 sekunder sedan[flagged]
- animanoir - 4948 sekunder sedan[dead]
- imta71770 - 29373 sekunder sedan[dead]
- - 16820 sekunder sedan
- aiedwardyi - 29766 sekunder sedan[flagged]
- goworm - 12628 sekunder sedan[dead]
- sixhobbits - 35560 sekunder sedan[dead]
- psihonaut - 33751 sekunder sedan[dead]
- CookieJedi - 26131 sekunder sedan[dead]
- CookieJedi - 26117 sekunder sedan[flagged]
- noritaka88 - 24669 sekunder sedan[flagged]
- RodMiller - 22101 sekunder sedan[flagged]
- sudo_man - 25525 sekunder sedanHow this leak happened?
- hemantkamalakar - 26519 sekunder sedanToday being March 31st, is this a genuine issue or just perfectly timed April Fools noise? What do you think?
- phtrivier - 30262 sekunder sedanMaybe the OP could clarify, I don't like reading leaked code, but I'm curious: my understanding is that is it the source code for "claude code", the coding assistant that remotely calls the LLMs.
Is that correct ? The weights of the LLMs are _not_ in this repo, right ?
It sure sucks for anthropic to get pawned like this, but it should not affect their bottom line much ?
- pplonski86 - 21549 sekunder sedanI thought it was open source project on github? https://github.com/anthropics/claude-code no?
- tmarice - 20141 sekunder sedanA couple of years ago I had to evaluate A/B test and feature flag providers, and even then when they were a young company fresh out of YC, GrowthBook stood out. Bayesian methods, bring your own storage, and self-hosting instead of "Contact us for pricing" made them the go-to choice. I'm glad they're doing well.
- arrsingh - 22380 sekunder sedanI don't understand why claude code (and all CLI apps) isn't written in Rust. I started building CLI agents in Go and then moved to Typescript and finally settled on Rust and it was amazing!
I even made it into an open source runtime - https://agent-air.ai.
Maybe I'm just a backend engineer so Rust appeals to me. What am I missing?
Nördnytt! 🤓