This repository is a backup of that leaked source, and this README is a full breakdown of what’s in it, how the leak happened and most importantly, the things we now know that were never meant to be public.


I am not making this up.

Claude Code has a full Tamagotchi-style companion pet system called “Buddy.” A deterministic gacha system with species rarity, shiny variants, procedurally generated stats, and a soul description written by Claude on first hatch like OpenClaw.

  • doodoo_wizard@lemmy.ml
    link
    fedilink
    English
    arrow-up
    61
    ·
    2 months ago

    As usual the real damage of a source leak isn’t other companies cloning and selling your flagship product, which numerous well established legal frameworks exist to counteract, but everyone realizing how bone crushingly stupid you and all the people you’re paying millions to write the product clearly are.

  • dat_math [they/them]@hexbear.net
    link
    fedilink
    English
    arrow-up
    40
    ·
    edit-2
    2 months ago

    Claude Code has a full Tamagotchi-style companion pet system called “Buddy.” A deterministic gacha system with species rarity, shiny variants, procedurally generated stats, and a soul description written by Claude on first hatch like OpenClaw.

    what the fuck?

    • Acute_Engles [he/him, any]@hexbear.net
      link
      fedilink
      English
      arrow-up
      22
      ·
      edit-2
      2 months ago

      Each buddy gets procedurally generated:

      5 stats: DEBUGGING, PATIENCE, CHAOS, WISDOM, SNARK (0-100 each) 6 possible eye styles and 8 hat options (some gated by rarity) A “soul” as mentioned, the personality generated by Claude on first hatch, written in character

      The sprites are rendered as 5-line-tall, 12-character-wide ASCII art with multiple animation frames. There are idle animations, reaction animations, and they sit next to your input prompt.

      what if bonzi buddy evaporated the ocean

      The code references April 1-7, 2026 as a teaser window (so probably for easter?), with a full launch gated for May 2026. The companion has a system prompt that tells Claude:

      A small {species} named {name} sits beside the user’s input box and occasionally comments in a speech bubble. You’re not {name} - it’s a separate watcher.

      So it’s not just cosmetic - the buddy has its own personality and can respond when addressed by name. I really do hope they ship it.

      • JustSo [she/her, any]@hexbear.netM
        link
        fedilink
        English
        arrow-up
        15
        ·
        2 months ago

        The sprites are rendered as 5-line-tall, 12-character-wide ASCII art with multiple animation frames. There are idle animations, reaction animations, and they sit next to your input prompt.

        Neat we should liberate this. I want a little terminally online guy in my prompt but I don’t need the generative shit, a state machine is fine too.

  • Hohsia [any]@hexbear.net
    link
    fedilink
    English
    arrow-up
    26
    ·
    edit-2
    2 months ago

    “You are performing a dream - a reflective pass over your memory files. Synthesize what you’ve learned recently into durable, well-organized memories so that future sessions can orient quickly.”

    Kinda triggering, are tech bros saying that this is what dreams are?

        • WhatDoYouMeanPodcast [comrade/them]@hexbear.net
          link
          fedilink
          English
          arrow-up
          14
          ·
          2 months ago

          I feel like a sophisticated adversary could do something with it. If I know your habits and design choices from the leak and I couple that with knowing who you hire, who you don’t, what your shareholders want, when you’re doing crunch time, etc. I’m sure there’s something to be done. This all, of course, assumes a rational market and effectual competition.

          But if they had a good bad guy, that bad guy could do something like release something 5% better the Friday before your big announcement. Or an example like if they know your next big thing is automatically coordinating office work then you could astroturf a campaign about displaced middle managers while you release your robotics integration at the same time.

          If you were a consumer you might expect an open source version of the CLI that gets rid of the 10x+ inefficiency of the official release. But, yeah, this hasn’t shaken Anthropic to its core from my understanding

          • invalidusernamelol [he/him]@hexbear.net
            link
            fedilink
            English
            arrow-up
            5
            ·
            2 months ago

            The most useful thing is shipping fake Claude binaries with malicious code. The end user would expose their entire system for probably a day or so before noticing and Bob’s you Uncle

        • Not_mikey@lemmy.dbzer0.com
          link
          fedilink
          English
          arrow-up
          3
          ·
          2 months ago

          Nah, the special sauce with claude has always been how it manages context, what and how it injects that context into sub agents, and the system prompts and tool prompts it has.

          The model is pretty interchangeable and claude allows you to change it within anthropics catalog, though you could probably sub in an open AI model and wouldn’t know the difference.

  • darkmode [comrade/them]@hexbear.net
    link
    fedilink
    English
    arrow-up
    8
    ·
    edit-2
    2 months ago

    I use this stuff exclusively at work and I like the flexibility of cursor a lot better than CC. When one service goes down i can just switch models and I pretty much get the same results no matter which model because i have a very specific goal in mind every time i reach for these tools.

    the worst work that i have to review comes from ppl who totally abdicate responsibility to LLM gen’d stuff and it especially pisses me off when someone who gets paid more than me passes me a PR or a doc that is just straight up incorrect

    I really want a flexible CLI tool that is not written in TS. it’s no surprise that this code base is garbage because the models are trained on JS/TS which is the cool uncle of programming languages. I’ve finally had a chance to work with Go at work and it’s pretty great for collaborating CLI tools and servers. Every time i have to write some TS for our front end it’s just endless nit picking and style debate

    • invalidusernamelol [he/him]@hexbear.net
      link
      fedilink
      English
      arrow-up
      4
      ·
      2 months ago

      Go and Python are so much better for quick CLI tools than JS/TS. Python is just good for the extensive standard library. I’m usually able to to basically anything I want with no external dependencies. Meanwhile Go/Rust/JS end up with like hundreds.

        • invalidusernamelol [he/him]@hexbear.net
          link
          fedilink
          English
          arrow-up
          3
          ·
          2 months ago

          I haven’t written much in Rust since my job is mostly Python and I get to control the environment. Usually means I only use standard lib and whatever library we may need to interact with a specific program, in my case ArcGIS Pro.

          I just know that the standard libraries for Rust and Go are pretty minimal and most code I’ve seen in the wild has a ton of dependencies.