36 comments

  • ninkendo7 hours ago
    Related:<p>I’ve always found it crazy that my LLM has access to such <i>terrible</i> tools compared to mine.<p>It’s left with grepping for function signatures, sending diffs for patching, and running `cat` to read all the code at once.<p>I however, run an IDE and can run a simple refactoring tool to add a parameter to a function, I can “follow symbol” to see where something is defined, I can click and get all usages of a function shown at a glance, etc etc.<p>Is anyone working on making it so LLM’s get better tools for actually writing&#x2F;refactoring code? Or is there some “bitter lesson”-like thing that says effort is always better spent just increasing the context size and slurping up all the code at once?
    • KronisLV6 hours ago
      &gt; I however, run an IDE and can run a simple refactoring tool to add a parameter to a function, I can “follow symbol” to see where something is defined, I can click and get all usages of a function shown at a glance, etc etc<p>I am so surprised that all of the AI tooling mostly revolves around VSC or its forks and that JetBrains seem to not really have done anything revolutionary in the space.<p>With how good their refactoring and code inspection tools are, you’d really think they’d pass of that context information to AI models and that they’d be leaps and bounds ahead.
      • harikb3 hours ago
        Recently, all these agents can talk LSP (language server protocol) so it should get better soon. That said, yeah they don&#x27;t seem to default to use `ripgrep` when that is clearly better than `grep`
      • eek21215 hours ago
        Are you? I&#x27;m not surprised at all, considering that the biggest investment juggernaut in AI is also the author of VSC. I wonder what the connection is? ;)
        • eru4 hours ago
          Well, Google also has their own AIs and lots of money to throw around.
      • penneyd6 hours ago
        Agreed - this seems like a no brainer, surely this is something that is being worked on.
    • nbardy3 hours ago
      &gt; Claude Code officially added native support for the Language Server Protocol (LSP) in version 2.0.74, released in December 2025.<p>I think from training it&#x27;s still biased towards simple tooling.<p>But also, there is real power to simple tools, a small set of general purpose tools beats a bunch of narrow specific use case tools. It&#x27;s easier for humans to use high level tools, but for LLM&#x27;s they can instantly compose the low level tools for their use case and learn to generalize, it&#x27;s like writing insane perl one liners is second nature for them compared to us.<p>If you watch the tool calls you&#x27;ll see they write a ton of one off small python programs to test, validate explore, etc...<p>If you think about it any time you use a tool there is probably a 20 line python program that is more fit to your use case, it&#x27;s just that it would take you too long to write it, but for an LLM that&#x27;s 0.5 seconds
      • cududa1 hour ago
        Correct. If you try to create a coding agent using the raw Codex or Claude code API and you build your own “write tool”, and don’t give the model their “native patch tool”, 70%+ of the time it’s write&#x2F; patch fails because it tries to do the operation using the write&#x2F; patch tool it was trained on.
    • mulmboy4 hours ago
      LLMs aren&#x27;t like you or me. They can comprehend large quantities of code quickly and piece things together easily from scattered fragments. so go to reference etc become much less important. Of course though things change as the number of usages of a symbol becomes large but in most cases the LLM can just make perfect sense of things via grep.<p>To provide it access to refactoring as a tool also risks confusing it via too many tools.<p>It&#x27;s the same reason that waffling for a few minutes via speech to text with tangents and corrections and chaos is just about as good as a carefully written prompt for coding agents.
    • fancy_pantser4 hours ago
      Zed Editor gives the LLM tools that use the LSP as you&#x27;d expect as a normal IDE user, like &quot;go to symbol definition&quot; so it greps a lot less.
    • hippo227 hours ago
      If you can read fast enough, grepping is probably faster than waiting for a compiler to tell you anything.
      • gf0007 hours ago
        Faster for worse results, though. Determining the source of a symbol is not as trivial as finding the same piece of text somewhere else, it should also reliably be able to differentiate among them. What better source for that then the compiler itself?
        • ninkendo7 hours ago
          Yeah, especially for languages that make heavy use of type inference. There’s nothing you can really grep for most of the time… to really know “who’s using this code” you need to know what the compiler knows.<p>An LLM can likely approach compiler-level knowledge just from being smart and understanding what it’s reading, but it costs a <i>lot</i> of context to do this. Giving the LLM access to what the compiler knows as an API seems like it’s a huge area for improvement.
        • squirrellous3 hours ago
          It depends on the language and codebase. For something very dynamic like Python it may be the case that grepping finds real references to a symbol that won’t be found by a language server. Also language servers may not work with cross-language interfaces or codegen situations as well as grep.<p>OTOH for a giant monorepo, grep probably won’t work very well.
    • girvo1 hour ago
      You can give agents the ability to check VSCode Diagnostics, LSP servers and the like.<p>But they <i>constantly</i> ignore them and use their base CLI tools instead, it drives me batty. No matter what I put in AGENTS.md or similar, they always just ignore the more advanced tooling IME.
    • karlgkk3 hours ago
      I’ve been saying this for a while. CPU demand is about to go through the roof.<p>I think about it, to get these tools to be most effective you have to be able to page things in and out of their context windows.<p>What was once a couple of queries is now gonna be dozens or hundreds or even more from the LLM<p>For code that means querying the AST and query it in a way that allows you to limit the results of the output<p>I wonder which SAST vendor Anthropic will buy.
    • JimDabell6 hours ago
      Kit looks like a good step in this direction:<p><a href="https:&#x2F;&#x2F;github.com&#x2F;cased&#x2F;kit" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;cased&#x2F;kit</a>
    • ramraj075 hours ago
      Not coding agents but we do a lot of work trying to find the best tools, and the result is always that the simplest possible general tool that can get the job done always beats a suite of complicated tools and rules on how to use them.
      • eru4 hours ago
        Well, jump to definition isn&#x27;t exactly complicated?<p>And you can use whatever interface the language servers already use to expose that functionality to eg vscode?
    • rudedogg6 hours ago
      LSP also kind of sucks. But the problem is all the big companies want big valuations, so they only chase generic solutions. That&#x27;s why everything is a VS Code clone, etc..<p><a href="https:&#x2F;&#x2F;paulgraham.com&#x2F;ds.html" rel="nofollow">https:&#x2F;&#x2F;paulgraham.com&#x2F;ds.html</a>
      • dexwiz3 hours ago
        I&#x27;ve never used an LSP plugin half as good as a JetBrains IDE.
      • immibis1 hour ago
        Always wondered what happened to the era of IDEs actually knowing the language you&#x27;re using.
    • BryantD5 hours ago
      This isn’t completely the answer to what you want but skills do open a lot of doors here. Anything you can do on a command line can turn into a skill, after all.
    • fragmede7 hours ago
      Anthropic, for one.<p>&gt; Added LSP (Language Server Protocol) tool for code intelligence features like go-to-definition, find references, and hover documentation<p><a href="https:&#x2F;&#x2F;github.com&#x2F;anthropics&#x2F;claude-code&#x2F;blob&#x2F;main&#x2F;CHANGELOG.md#2074" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;anthropics&#x2F;claude-code&#x2F;blob&#x2F;main&#x2F;CHANGELO...</a>
      • novaleaf6 hours ago
        their c# LSP theoretically worked for a week or so (I never saw it in action though), but now it always errors on launch :(
    • hahahahhaah7 hours ago
      An LSP MCP?
      • ninkendo7 hours ago
        Yeah, or something even smarter than that.<p>If you are willing to go language-specific, the tooling can be <i>incredibly</i> rich if you go through the effort. I’ve written some rust compiler drivers for domain-specific use cases, and you can hook into phases of the compiler where you have amazingly detailed context about every symbol in the code. All manner of type metadata, locations where values are dropped, everything is annotated with spans of source locations too. It seems like a worthy effort to index all of it and make it available behind a standard query interface the LLM can use. You can even write code this way, I think rustfmt hooks into the same pipeline to produce formatted code.<p>I’ve always wished there were richer tools available to do what my IDE already does, but without needing to use the UI. Make it a standard API or even just CLI, and free it from the dependency on my IDE. It’d be very worth looking into I think.
        • quantummagic6 hours ago
          If the compiler just dumped all that data out as structured text, you could use current LLMs to swallow it in a single gulp.
  • Jaysobel10 hours ago
    Author here - some bonus links!<p>Session transcript using Simon Willison&#x27;s claude-code-transcripts<p><a href="https:&#x2F;&#x2F;htmlpreview.github.io&#x2F;?https:&#x2F;&#x2F;gist.githubusercontent.com&#x2F;jaysobel&#x2F;dfeed9a65ce7209274acf9ada0eaa65e&#x2F;raw&#x2F;claude_code_rollercoaster_tycoon_transcript.html" rel="nofollow">https:&#x2F;&#x2F;htmlpreview.github.io&#x2F;?https:&#x2F;&#x2F;gist.githubuserconten...</a><p>Reddit post<p><a href="https:&#x2F;&#x2F;www.reddit.com&#x2F;r&#x2F;ClaudeAI&#x2F;comments&#x2F;1q9fen5&#x2F;claude_code_in_rollercoaster_tycoon&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.reddit.com&#x2F;r&#x2F;ClaudeAI&#x2F;comments&#x2F;1q9fen5&#x2F;claude_co...</a><p>OpenRCT2!!<p><a href="https:&#x2F;&#x2F;github.com&#x2F;jaysobel&#x2F;OpenRCT2" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;jaysobel&#x2F;OpenRCT2</a><p>Project repo<p><a href="https:&#x2F;&#x2F;github.com&#x2F;jaysobel&#x2F;OpenRCT2" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;jaysobel&#x2F;OpenRCT2</a>
    • theptip10 hours ago
      Did you eval using screenshots or some sort of rendered visualization instead of the CLI? I wonder if Claude has better visual intelligence when viewing images (lots of these in its training set) rather than ascii schematics (probably very few of these in the corpus).
      • cheema337 hours ago
        Computer use and screenshots are context intensive. Text is not. The more context you give to an LLM, the dumber it gets. Some people think at 40% context utilization, the LLM starts to get into the dumb zone. That is where the limitations are as of today. This is why CLI based tools like Claude Code are so good. And any attempt at computer use has fallen by the wayside.<p>There are some potential solutions to this problem that come to mind. Use subagents to isolate the interesting bits about a screenshot and only feed that to the main agent with a summary. This will all still have a significantly higher token usage compared to a text based interface, but something like this could potentially keep the LLM out of the dumb zone a little longer.
        • fragmede7 hours ago
          &gt; And any attempt at computer use has fallen by the wayside.<p>You&#x27;re totally right! I mean, aside from Anthropic launching &quot;Cowork: Claude Code for the rest of your work&quot; 5 days ago. :)<p><a href="https:&#x2F;&#x2F;claude.com&#x2F;blog&#x2F;cowork-research-preview" rel="nofollow">https:&#x2F;&#x2F;claude.com&#x2F;blog&#x2F;cowork-research-preview</a><p><a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=46593022">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=46593022</a><p>More to the point though, you should be using Agents in Claude Code to limit context pollution. Agents run with their own context, and then only return salient details. Eg, I have an Agent to run &quot;make&quot; and return the return status and just the first error message if there is one. This means the hundreds&#x2F;thousands of lines of compilation don&#x27;t pollute the main Claude Code context, letting me get more builds in before I run out of context there.
      • nanapipirara9 hours ago
        Claude helped me immensely getting an image converter to work. Giving it screenshots of wrong output (lots of layers had an unpredictable offsets that was not supposed to be there) and output as I expected it helped Claude understand the problems and it fixed the bugs immediately.
      • Jaysobel9 hours ago
        I had tried the browser screenshotting feature for agents in Cursor and found it wasn&#x27;t very reliable - screenshots eat a lot of context, and the agent didn&#x27;t have a good sense for when to use them. I didn&#x27;t try it in this project. I bet it would work in some specific cases.
    • fragmede7 hours ago
      &gt; Claude is at a pretty steep visuo-spatial disadvantage,<p>How hard would it be to use with OpenAI&#x27;s offerings instead? Particularly, imo, OpenAI&#x27;s better at &quot;looking&quot; at pictures than Claude.
  • rashidae11 hours ago
    &gt; As a mirror to real-world agent design: the limiting factor for general-purpose agents is the legibility of their environments, and the strength of their interfaces. For this reason, we prefer to think of agents as automating diligence, rather than intelligence, for operational challenges.
  • hk__213 hours ago
    &gt; The only other notable setback was an accidental use of the word &quot;revert&quot; which Codex took literally, and ran git revert on a file where 1-2 hours of progress had been accumulating.
    • qaboutthat47 minutes ago
      If I tell Claude to &quot;revert that last change, it isn&#x27;t right, try this instead&quot; and Claude hasn&#x27;t committed recently it will happily `git checkout ...` and blow away <i>all</i> recent changes instead of reverting the &quot;last change&quot;.<p>(Which, it&#x27;s not <i>wrong</i> or anything -- I <i>did</i> say &quot;revert that change&quot; -- it&#x27;s just annoying. And telling `CLAUDE.md` to commit more often doesn&#x27;t work consistently, because Claude is a dummy sometimes).
    • _flux13 hours ago
      Amazing that these tools don&#x27;t maintain a replayable log of everything they&#x27;ve done.<p>Although git revert is not a destructive operation, so it&#x27;s surprising that it caused any loss of data. Maybe they meant git reset --hard or something like that. Wild if Codec would run that.
      • arcanemachiner11 hours ago
        I was looking at the insanity known as Gas Town [0] the other day, and it does use Git to store historical work state in something it calls &quot;beads&quot;:<p><a href="https:&#x2F;&#x2F;github.com&#x2F;steveyegge&#x2F;gastown?tab=readme-ov-file" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;steveyegge&#x2F;gastown?tab=readme-ov-file</a>
        • calebkaiser10 hours ago
          If anyone is curious, Beads is an agent memory project from the same developer: <a href="https:&#x2F;&#x2F;github.com&#x2F;steveyegge&#x2F;beads" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;steveyegge&#x2F;beads</a>
        • PKop9 hours ago
          Bees?
          • brap9 hours ago
            BEADS
      • rabf11 hours ago
        I have had codex recover things for me from its history after claude had done a git reset hard, codex is one of the more reliable models&#x2F;harneses when it comes to performing undo and redo operations in my experience.
      • theptip10 hours ago
        Claude Code has had this feature for a few months now.
      • defunct3411 hours ago
        Claude (can’t remember if was 4.1 Opus, 4.5 Sonnet, or 4.5 Opus) once just started playing with git worktrees and royally f-d up the local repo and lost several hours of work. Since then, I watch it like a hawk.
      • stinkbeetle5 hours ago
        `git reset --hard` doesn&#x27;t remove unreferenced commits or rewrite the reflog so I don&#x27;t think that would do it. Something like `git reset &amp;&amp; git gc` would have to be done.
        • eru3 hours ago
          And git gc doesn&#x27;t collect any garbage less than two weeks old by default, either.
      • MattGaiser13 hours ago
        Claude Code has &#x2F;rewind. Not sure if it is foolproof, but this has been tried.
      • CPLX10 hours ago
        I found this tool to be the solution I was looking for to address this specific problem:<p><a href="https:&#x2F;&#x2F;contextify.sh" rel="nofollow">https:&#x2F;&#x2F;contextify.sh</a>
    • alt22712 hours ago
      I wonder how they accidentaly used a word like that.
      • gbear60512 hours ago
        “Please revert that last change you did”, referring to like a smaller change that had just been done
      • GardenLetter2710 hours ago
        Codex reverted kindly.
    • esafak12 hours ago
      Does Codex not let you set command permissions?
      • legojoey176 hours ago
        Yea, it does so this would likely have been to be a `--yolo` (I don&#x27;t care, let me `rm -rf &#x2F;`). I&#x27;ve found even with the &quot;workspace write&quot; mode and no additional writable directories I can&#x27;t do git operations without approval so it seems to exclude `.git` by default.
    • Filligree13 hours ago
      Yet another reason to use Jujutsu. And put a `jj status` wrapper in your PS1. ;-)
      • diath13 hours ago
        &gt; Yet another reason to use Jujutsu<p>And what would that reason be? You can git revert a git revert.
        • jsnell12 hours ago
          You&#x27;re correct for an actual git revert, but it seems pretty clear that the original authors have mangled the story and it was actually either a &quot;git checkout&quot; or &quot;git reset&quot;. The &quot;file where 1-2 hours of progress had been accumulating&quot; phrasing only makes sense if those were uncommitted changes.<p>And the reason jj helps in that case is that for jj there is no such thing as an uncommitted change.
          • block_dagger11 hours ago
            Having no such thing as an uncommitted change seems like it would be a nightmare, but perhaps I&#x27;m just too git-oriented.
            • eru3 hours ago
              &gt; Having no such thing as an uncommitted change seems like it would be a nightmare, but perhaps I&#x27;m just too git-oriented.<p>Why? What&#x27;s the problem you see? The only problem I see is when you let these extra commits pollute the history reachable from any branch you care about.<p>Let&#x27;s look at the following:<p>Internally, &#x27;git stash&#x27; consists of two operations: one that makes an &#x27;anonymous&#x27; commit of your files, and another that resets those files to whatever they were in HEAD. (That commit is anonymous in the sense that no branch points at it.)<p>The git libraries expose the two operations separately. And you can build something yourself that works similarly.<p>You can use these capabilities to build an undo&#x2F;redo log in git, but without polluting any of the history you care about.<p>To be honest, I have no clue how Jujutsu does it. They might be using a totally different design.
              • fragmede1 hour ago
                &gt; perhaps I&#x27;m just too git-oriented.<p>The problem is git&#x27;s index let&#x27;s you write a bunch of unconnected code, then commit it separately. To different branches, even! This works great for stacking diffs but is <i>terribly</i> confusing if you don&#x27;t know what you&#x27;re doing.
            • steveklabnik10 hours ago
              Things like the index become a workflow pattern, rather than a feature, if that makes any sense.
          • MarkMarine11 hours ago
            Also JJ undo is there and easy to tell the model to use, I have it in my Claude.md
            • hu38 hours ago
              surely Claude is much better at using git because of the massive training data difference.<p>If it didn&#x27;t undo git, it would do it with JJ either.
              • Filligree2 hours ago
                It does fine with jj. Sometimes better, because jj is much easier to use non-interactively.
        • mbb7012 hours ago
          Probably it actually ran git checkout or reset. As you say git revert only operates on committed snapshots so it will all be in the reflog
          • ewoodrich11 hours ago
            Yes, this exact scenario has happened to me a couple times with both Claude and Codex, and it&#x27;s usually git checkout, more rarely git reset. They immediately realize they fucked up and spend a few minutes trying to undo by throwing random git commands at it until eventually giving up.
            • foobar1000010 hours ago
              Yeap - this is why when running it in a dev container, I just use ZFS and set up a 1 minute auto-snapshot - which is set up as root - so it generally cannot blow it away. And cc&#x2F;codex&#x2F;gemini know how to deal with zfs snapshots to revert from them.<p>Of course if you give an agentic loop root access in yolo mode - then I am not sure how to help...
      • westurner13 hours ago
        Start with env args like AGENT_ID for indicating which Merkle hash of which model(s) generated which code with which agent(s) and add those attributes to signed (-S) commit messages. For traceability; to find other faulty code generated by the same model and determine whether an agent or a human introduced the fault.<p>Then, `git notes` is better for signature metadata because it doesn&#x27;t change the commit hash to add signatures for the commit.<p>And then, you&#x27;d need to run a local Rekor log to use Sigstore attestations on every commit.<p>Sigstore.dev is SLSA.dev compliant.<p>Sigstore grants short-lived release attestation signing keys for CI builds on a build farm to sign artifacts with.<p>So, when jujutsu autocommits agent-generated code, what causes there to be an {{AGENT_ID}} in the commit message or git notes? And what stops a user from forging such attestations?
        • westurner12 hours ago
          - &quot;Diffwatch – Watch AI agents touch the FS and see diffs live&quot; (2025) <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=45786382">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=45786382</a> :<p>&gt; <i>you can manually stage against @-:</i> [with jujutsu]
      • glemion4311 hours ago
        It&#x27;s not going to happen...<p>Stop spamming
        • dwattttt10 hours ago
          The feature of &quot;there is no such thing as an uncommitted working directory&quot; is very relevant to the situation.
          • glemion438 hours ago
            It&#x27;s not. There are so many ways to just solve this non issue that no one will just switch to just another random tool.<p>Especially not away from git.
            • dwattttt7 hours ago
              &gt; It&#x27;s not<p>Given that other posts solved the problem by scripting this feature on top of git, I guess you&#x27;re telling them their solution isn&#x27;t relevant too.
        • NewsaHackO10 hours ago
          This is funny. I tried it once and didn&#x27;t see what the benefit was. Then, when I tried to reset it back to normal git, I realized that the devs had not (at the time) made any clean way to revert it back, just a one-way conversion to jj. I haven&#x27;t tried it since.
          • steveklabnik10 hours ago
            What were you trying to “revert back”? You should have been able to just stop using jj, there’s nothing to revert back to. It’s also possible that I’m misunderstanding what you mean.
  • lukebechtel14 hours ago
    &gt; We don&#x27;t know any C++ at all, and we vibe-coded the entire project over a few weeks. The core pieces of the build are…<p>what a world!
    • yoyohello1313 hours ago
      Everyone should read that section. It was really interesting reading about their experiences&#x2F;challenges getting it all working.
    • falloutx9 hours ago
      First time I am seeing realistic timelines from a vibe-coded project. Usually everyone who vibe codes just says they did in few hours, no matter the project.
      • ben_w9 hours ago
        Hmm. My experience with it is that a few hours of that will get you a sprint if you&#x27;re lucky and the prompt hits the happy path. I had… I think two of those, over 5 weeks? I can believe plenty of random people stumble across happy-path examples.<p>Exciting when it works, but I think a much more exciting result for people with less experience who may not know that the &quot;works for me&quot; demo is the dreaded &quot;first 90%&quot;, and even fairly small projects aren&#x27;t done until the fifth-to-tenth 90%.<p>(That, and that vibe coding in the sense of &quot;no code review&quot; are prone to balls of mud, so you need to be above average at project management to avoid that after a few sprint-equivalents of output).
      • Aurornis8 hours ago
        It’s possible to vibe code certain generic things in a few hours if you’re basically combining common, thoroughly documented, mature building blocks. It’s not going to be production ready or polished but you can get surprisingly far with some things.<p>For real work, that phase is like starting from a template or a boilerplate repo. The real work begins after the basics are wired together.
    • AndrewKemendo14 hours ago
      I would’ve walked for days to a CompUSA and spent my life savings if there was anything remotely equivalent to this when I was learning C on my Macintosh 4400 in 1997<p>People don’t appreciate what they have
      • imiric12 hours ago
        Did you actually learn C? Be thankful nothing like this existed in 1997.<p>A machine generating code you don&#x27;t understand is not the way to learn a programming language. It&#x27;s a way to create software without programming.<p>These tools <i>can</i> be used as learning assistants, but the vast majority of people don&#x27;t use them as such. This will lead to a collective degradation of knowledge and skills, and the proliferation of shoddily built software with more issues than anyone relying on these tools will know how to fix. At least people who can actually program will be in demand to fix this mess for years to come.
        • neilwilson12 hours ago
          That’s what a C compiler does when generating a binary.<p>There was a time when you had to know ‘as’, ‘ld’ and maybe even ‘ar’ to get an executable.<p>In the early days of g++, there was no guarantee the object code worked as intended. But it was fun working that out and filing the bug reports.<p>This new tool is just a different sort of transpiler and optimiser.<p>Treat it as such.
          • wizzwizz411 hours ago
            &gt; <i>There was a time when you had to know ‘as’, ‘ld’ and maybe even ‘ar’ to get an executable.</i><p>No, there wasn&#x27;t: you could just run the shell script, or (a bit later) the makefile. But there were <i>benefits</i> to knowing as, ld and ar, and there still are today.
            • jstummbillig10 hours ago
              &gt; But there were benefits to knowing as, ld and ar, and there still are today.<p>This is trivially true. The constraint for anything you do in your life is time it takes to know something.<p>So the far more interesting question is: At what level do you want to solve problems – and is it likely that you need knowledge of as, ld and ar over anything else, that you could learn instead?
              • wizzwizz48 hours ago
                Knowledge of as, ld, ar, cc, etc is only needed when setting up (or modifying) your build toolchain, and in practice you can just copy-paste the build script from some other, similar project. Knowledge of these tools has <i>never</i> been needed.
                • fn-mote4 hours ago
                  Knowledge of cc has never been needed? What an optimist! You must never have had headers installed in a place where the compiler (or Makefile author) didn’t expect them. Same problems with the libraries. Worse when the routine you needed to link was in a different library (maybe an arch-specific optimized lib).<p>That post is only true in the most vacuous sense.<p>“A similar project” discovered where, on BITNET?
                  • wizzwizz44 hours ago
                    The library problems you described are nothing that can&#x27;t be solved using symlinks. A bad solution? Sure, but it <i>works</i>, and doesn&#x27;t require me to understand cc. (Though when I needed to solve this problem, it only took me about 15 minutes and a man page to learn how to do it. `gcc -v --help` is, however, unhelpful.)<p>&quot;A similar project&quot; as in: this isn&#x27;t the first piece of software ever written, and many previous examples can be found on the computer you&#x27;re currently using. Skim through them until you find one with a source file structure you like, then ruthlessly cannibalise its build script.
          • imiric12 hours ago
            If you don&#x27;t see a difference between a compiler and a probabilistic token generator, I don&#x27;t know what to tell you.<p>And, yes, I&#x27;m aware that most compilers are not entirely deterministic either, but LLMs are inherently nondeterministic. And I&#x27;m also aware that you can tweak LLMs to be more deterministic, but in practice they&#x27;re never deployed like that.<p>Besides, creating software via natural language is an entirely different exercise than using a structured language purposely built for that.<p>We&#x27;re talking about two entirely different ways of creating software, and any comparison between them is completely absurd.
            • anthk11 hours ago
              People negating down your comment are just &quot;engineers&quot; doomed to fail sooner or later.<p>Meanwhile, 9front users have read at least the plan9 intro and know about nm, 1-9c, 1-9l and the like. Wibe coders will be put on their place sooner or later. It´s just a matter of time.
          • anthk11 hours ago
            Competent C programmers know about nm, as, ld and a bunch of other binary sections in order to understand issues and proper debugging.<p>Everyone else are deluding themselves. Even the 9front intro requieres you to at least know the basics of nm and friends.
        • metaltyphoon12 hours ago
          I don&#x27;t understand how OP thinks that being oblivious how anything work underneath is a good thing. There is a threshold of abstraction to which you must know how it works to effectively fix it when it breaks.
          • jedberg11 hours ago
            You can be a super productive Python coder without any clue how assembly works. Vibe coding is just one more level of abstraction.<p>Just like how we still need assembly and C programmers for the most critical use cases, we&#x27;ll still need Python and Golang programmers for things that need to be more efficient than what was vibe coded.<p>But do you really need your $whatever to be super efficient, or is it good enough if it just works?
            • kshri2411 hours ago
              One is deterministic the other is not. I leave it to you to determine which is which in this scenario.
              • afro8810 hours ago
                Humans writing code are also non deterministic. When you vibe code you&#x27;re basically a product owner &#x2F; manager. Vibe coding isn&#x27;t a higher level programming language, it&#x27;s an abstraction over a software engineer &#x2F; engineering team.
                • kshri247 hours ago
                  &gt; Humans writing code are also non deterministic<p>That&#x27;s not what determinism means though. A human coding something, irrespective of whether the code is right or wrong, is deterministic. We have a well defined cause and effect pathway. If I write bad code, I will have a bug - deterministic. If I write good code, my code compiles - still deterministic. If the coder is sick, he can&#x27;t write code - deterministic again. You can determine the cause from the effect.<p>Every behavior in the physical World has a cause and effect chain.<p>On the other hand, you cannot determine why a LLM hallucinated. There is no way to retrace the path taken from input parameters to generated output. At least as of now. Maybe it will change in the future where we have tools that can retrace the path taken.
                  • afro885 hours ago
                    You misunderstand. A coder will write different code for the same problem each time unless they have the solution 100% memorised. And even then a huge number of factors can influence them not being able to remember 100% of the memorised code, or opt for different variations.<p>People are inherently nondeterministic.<p>The code they (and AI) writes, once written, executes deterministically.
                    • kshri245 hours ago
                      &gt; A coder will write... or opt for different variations.<p>Agreed.<p>&gt; People are inherently nondeterministic.<p>We are getting into the realm of philosophy here. I, for one, believe in the idea of living organisms having no free will (or limited will to be more precise. but can also go so far as to say &quot;dependent will&quot;). So one can philosophically explain that people are deterministic, via concepts of Karma and rebirth. Of course none of this can be proven. So your argument can be true too.<p>&gt; The code they (and AI) writes, once written, executes deterministically.<p>Yes. Execution is deterministic. I am however talking only about determinism in terms of being able to know the entire path: input to output. Not just the outputs characteristic (which is always going to be deterministic). It is the path from input to output that is not deterministic due to presence of a black box - the model.
                    • bdangubic5 hours ago
                      &gt; The code they (and AI) writes, once written, executes deterministically.<p>very rarely :)
              • jfreds6 hours ago
                This is true. What are the implications of that?
            • pqtyw9 hours ago
              Perhaps there is no need to actually understand assembly, but if you don&#x27;t understand certain basic concepts actually deploying any software you wrote to production would be a lottery with some rather poor prizes. Regardless of how &quot;productive&quot; you were.
              • ben_w9 hours ago
                <i>Somebody</i> needs to understand, to the standard of &quot;well enough&quot;.<p>The investors who paid for the CEO who hired your project manager to hire you to figure that out, didn&#x27;t.<p>I think in this analogy, vibe coders are project managers, who may indeed still benefit from understanding computers, but when they don&#x27;t the odds aren&#x27;t anywhere near as poor as a lottery. Ignorance still blows up in people&#x27;s faces. I&#x27;d say the analogy here with humans would be a stereotypical PHB who can&#x27;t tell what support the dev needs to do their job and then puts them on a PIP the moment any unclear requirement blows up in anyone&#x27;s face.
          • hdgvhicv6 hours ago
            I’m vaguely aware that transistors are like electronic switches and if I serve my memory I could build and and&#x2F;or&#x2F;not gate<p>I have no idea how an i386 works, let alone a modern cpu. Sure there are registers and different levels of cache before you get to memory.<p>My lack of knowledge of all this doesn’t prevent me from creating useful programs using higher abstraction layers like c.
        • AndrewKemendo12 hours ago
          It would’ve been nice to have a system that I could just ask questions to teach me how it works instead of having to pour through the few books that existed on C that was actually accessible to a teenager learning on their own<p>Going to arcane websites, forum full of neckbeards to expect you to already understand everything isn’t exactly a great way to learn<p>The early Internet was unbelievably hostile to people trying to learn genuinely
          • rabf11 hours ago
            I had the books (from the library) but never managed to get a compiler for many years! Was quite confusing trying to understand all the unix references when my only experience with a computer was the Atari ST.
          • hrldcpr9 hours ago
            *pore through<p>(not a judgment, just mentioning in case the distinction is interesting to anyone)
        • Workaccount212 hours ago
          It&#x27;s just another layer.<p>Assembly programmers from years gone by would likley be equally dismissive of the self-aggrandizing code block stitchers of today.<p>(on topic, RCT was coded entirely in assembly, quite the achievement)
      • lifetimerubyist14 hours ago
        It’s worse. They’re proud they don’t know.
        • doug_durham10 hours ago
          &quot;They&quot; are? I didn&#x27;t see that in the article. It sounds like you are projecting your prejudices on to a non-defined out group.
        • risyachka13 hours ago
          Its like ordering a project from upwork- someone did it for you, you have no idea what is going on, kinda works though.
          • kmijyiyxfbklao12 hours ago
            Since there are no humans involved, it&#x27;s more like growing a tree. Sure it&#x27;s good to know how trees grow, but not knowing about cells didn&#x27;t stop thousands of years of agriculture.
            • Jaysobel12 hours ago
              The Gas Town piece reminded me of this as well. The author there leaned into role playing, social and culture analogies, and it made a lot more sense than an architecture diagram in which one node is “black box intelligence” with a single line leading out of it…
            • ambicapter12 hours ago
              Very interesting analogy
              • amlib12 hours ago
                Except that the tree is so malformed and the core structure so unsound that it can&#x27;t grow much past its germination and dies of malnourishment because since you have zero understanding of biology, forestry and related fields there is no knowledge to save it or help it grow healthy.<p>Also out of nowhere an invasive species of spiders that was inside the seed starts replicating geometrically and within seconds wraps the whole forest with webs and asks for a ransom in order to produce the secret enzyme that can dissolve it. Trying to torch it will set the whole forest on fire, brute force is futile. Unfortunately, you assumed the process would only plagiarize the good bits, but seems like it also sometimes plagiarizes the bad bits too, oops.
            • risyachka11 hours ago
              Its not like tree at all because tree is one and done.<p>Code is a project that has to be updated, fixed, etc.<p>So when something breaks - you have to ask the contractor again. It may not find an issue, or mess things up when it tries to fix it making project useless, etc.<p>Its more like a car. Every time something goes wrong you will pay for it - sometimes it will get back in even worse shape (no refunds though), sometimes it will cost you x100 because there is nothing you can do, you need it and you can&#x27;t manage it on your own.
              • eks3919 hours ago
                Trees are not static, unchanging, pop into existence and forget about, things. Trees that don&#x27;t get regular &quot;updates&quot; of adequate sunlight, water, and nutrients die. In fact, too much light or water could kill it. Or soil that is not the right courseness or acidity level could hamper or prevent growth. Now add &quot;bugs&quot;. Literal bugs, diseases, and even competing plants that could eat, poison, or choke the tree. You might be thinking of trees that are indigenous to an area. Even these compete for the resources and plagues of their area, but are more apt than the trees accustom to different environments, and even they go through the cycle of life. I think his analogy was perfect, because this is the first time coding could resemble nature. We are just used to the carefully curated human made code, as there has not been such a thing as naturally occuring, no human interaction, code before
            • kshri2411 hours ago
              I wouldn&#x27;t say it is a tree as such as at least trees are deterministic where input parameters (seed, environment, sunlight) define the output.<p>LLM outputs are akin to a mutant tree that can decide to randomly sprout a giant mushroom instead of a branch. And you won&#x27;t have any idea why despite your input parameters being deterministic.
              • dpc05050510 hours ago
                You haven&#x27;t done a lot of gardening if you don&#x27;t know plants get &#x27;randomly&#x27; (there&#x27;s a biological explanation, but with the massive amounts of variables it feels random) attacked by parasites all the time. Go look at pot growing subreddits, they spend an enormous chunk of their time fighting mites.
                • kshri247 hours ago
                  Determinism is not strictly anti-randomness (though I can see why one can confuse it to be polar opposites). Rather we do not even have true randomness (at least not proven) and should actually be called pseudorandom. Determinism just means that if you have the same input parameters (considering all parameters have been accounted for), you will get the same result. In other words, you can start with a particular random seed (pseudorandom seed to be precise) and always end up with the same end result and that would be considered deterministic.<p>&gt; You haven&#x27;t done a lot of gardening if you don&#x27;t know plants<p>I grow &quot;herbs&quot;.<p>&gt; there&#x27;s a biological explanation<p>Exactly. There is always an explanation for every phenomena that occurs in this observable, physical World. There is a defined cause and effect. Even if it &quot;feels random&quot;. That&#x27;s not how it is with LLMs. Because in between your deterministic input parameters and the output that is generated, there is a black box: the model itself. You have no access to the billions of parameters within the models which means you are not sure you can always reproduce the output. That black box is what causes non-determinism.<p>EDIT: just wanted to add - &quot;attacked by parasites all the time&quot;, is why I said if you have control over the environment. Controlling environment encompasses dealing with parasites as well. Think of well-controlled environment like a lab.
                  • famouswaffles5 hours ago
                    Do you think LLMs sidestep cause and effect somehow ? There&#x27;s an explanation there too, we just don&#x27;t know it, But that&#x27;s the case for many natural phenomena.
                    • kshri245 hours ago
                      I am not saying LLM sidesteps cause-effect. I am saying it is a black box. So yes &quot;we just don&#x27;t know it&quot; is basically describing a black box.
              • doug_durham10 hours ago
                In what world are trees deterministic? There are a set of parameters that you can control that give you a higher probability of success, but uncontrollable variables can wipe you out.
                • kshri247 hours ago
                  Explained here [1]. We live in a pseudorandom World. So everything is deterministic if you have the same set of input parameters. That includes trees as well.<p>I am not talking about controllable&#x2F;uncontrollable variables. That has no bearing on whether a process is deterministic in theory or not. If you can theoretically control all variables (even if you practically cannot), you have a deterministic process as you can reproduce the entire path: from input to output. LLMs are currently a black box. You have no access to the billions of parameters within the model, making it non-deterministic. The day we have tools where we can control all the billions of parameters within the model, then we can retrace the exact path taken, thereby making it deterministic.<p>[1]: <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=46663052">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=46663052</a>
          • datsci_est_201513 hours ago
            Great analogy. “I don’t know any C++ but I hired some people on Upwork and they delivered this software demo.”
            • whateveracct12 hours ago
              Con fuckign gratys, u can buy compute
  • pocketarc13 hours ago
    I love the interview at the end of the video. The kubectl-inspired CLI, and the feedback for improvements from Claude, as well as the alerts&#x2F;segmentation feedback.<p>You could take those, make the tools better, and repeat the experience, and I&#x27;d love to see how much better the run would go.<p>I keep thinking about that when it comes to things like this - the Pokemon thing as well. The quality of the tooling around the AI is only going to become more and more impactful as time goes on. The more you can deterministically figure out on behalf of the AI to provide it with accurate ways of seeing and doing things, the better.<p>Ditto for humans, of course, that&#x27;s the great thing about optimizing for AI. It&#x27;s really just &quot;if a human was using this, what would they need&quot;? Think about it: The whole thing with the paths not being properly connected, a human would have to sit down and really think about it, draw&#x2F;sketch the layout to visualize and understand what coordinates to do things in. And if you couldn&#x27;t do that, you too would probably struggle for a while. But if the tool provided you with enough context to understand that a path wasn&#x27;t connected properly and why, you&#x27;d be fine.
    • wonnage11 hours ago
      I see this sentiment of using AI to improve itself a lot but it never seems to work well in practice. At best you end up with a very verbose context that covers all the random edge cases encountered during tasks.<p>For this to work the way people expect you’d need to somehow feed this info back into fine tuning rather than just appending to context. Otherwise the model never actually “learns”, you’re just applying heavy handed fudge factors to existing weights through context.
      • pilord3148 hours ago
        I&#x27;ve been playing around with an AI generated knowledge base to grok our code base, I think you need good metrics on how the knowledge base is used. A few things is:<p>1. Being systematic. Having a system for adding, improving and maintaining the knoweldge base 2. Having feedback for that system 3. Implementing the feedback into a better system<p>I&#x27;m pretty happy I have an audit framework and documentation standards. I&#x27;ve refactored the whole knowledge base a few times. In the places where it&#x27;s overly specific or too narrow in it&#x27;s scope of use for the retained knowledge, you just have to prune it.<p>Any garden has weeds when you lay down fertile soil.<p>Sometimes they aren&#x27;t weeds though, and that&#x27;s where having a person in the driver&#x27;s seat is a boon.
  • fnordpiglet13 hours ago
    Interesting article but it doesn’t actually discuss how well it performs at playing the game. There is in fact a 1.5 hour YouTube video but it woulda been nice for a bit of an outcome postmortem. It’s like “here’s the methods and set up section of a research paper but for the conclusion you need to watch this movie and make your own judgements!”
    • Sharlin13 hours ago
      It does discuss that? Basically it has good grasp of finances and often knows what &quot;should&quot; be done, but it struggles with actually building anything beyond placing toilets and hotdog stalls. To be fair, its map interface is not exactly optimal, and a multimodal model might fare quite a bit better at understanding the 2D map (verticality would likely still be a problem).
    • cyanydeez13 hours ago
      I was told the important part of AI is the generation part, not the verification or quality.
  • nipponese13 hours ago
    &gt; kept the context above the ~60% remaining level where coding models perform at their absolute best<p>Maybe this is obvious to Claude users but how do you know your remaining context level? There is UI for this?
    • adithyareddy13 hours ago
      You can also show context in the statusline within claude code: <a href="https:&#x2F;&#x2F;code.claude.com&#x2F;docs&#x2F;en&#x2F;statusline#context-window-usage" rel="nofollow">https:&#x2F;&#x2F;code.claude.com&#x2F;docs&#x2F;en&#x2F;statusline#context-window-us...</a>
      • nipponese13 hours ago
        Follow up Q: what are you supposed to do when the context becomes too large? Start a new conversation&#x2F;context window and let Claude start from scratch?
        • d4rkp4ttern9 hours ago
          Context filling up is sort of the Achilles heel of CLI agents. The main remedy is to have it output some type of handoff document and then run &#x2F;compact which leaves you with a summary of the latest task. It sort of works but by definition it loses information, and you often find yourself having to re-explain or re-generate details to continue the work.<p>I made a tool[1] that lets you just start a new session and injects the original session file path, so you can extract any arbitrary details of prior work from there using sub-agents.<p>[1] aichat tool <a href="https:&#x2F;&#x2F;github.com&#x2F;pchalasani&#x2F;claude-code-tools?tab=readme-ov-file#-aichat--session-search-and-continuation-without-compaction" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;pchalasani&#x2F;claude-code-tools?tab=readme-o...</a>
        • kcoddington12 hours ago
          Either have Claude &#x2F;compact or have it output things to a file it can read in on the next session. That file would be a summary of progress for work on a spec or something similar. Also good to prime it again with the Readme or any other higher level context
        • theptip10 hours ago
          It’s a good idea to have Claude write down the execution plan (including todos). Or you can use something like Linear &#x2F; GH Issues to track the big items. Then small&#x2F;tactical todos are what you track in session todos.<p>This approach means you can just kill the session and restart if you hit limits.<p>(If you hit context limits you probably also want to look into sub-agents to help prevent context bloat. For example any time you are running and debugging unit tests, it’s usually best to start with a subagent to handle the easy errors. )
        • facorreia6 hours ago
          Start in plan mode, generating a markdown file with the plan, keep it up to date as it is executed, and after each iteration commit, clear the context and tell it to read the plan and execute the next step.
        • pbhjpbhj12 hours ago
          It feels like one could produce a digest of the context that works very similarly but fits in the available context window - not just by getting the LLM to use succinct language, but also mathematically; like reducing a sparse matrix.<p>There might be an input that would produce that sort of effect, perhaps it looks like nonsense (like reading zipped data) but when the LLM attempts to do interactive in it the outcome is close to consuming the context?
          • docjay10 hours ago
            ``` §CONV_DIGEST§ T1:usr_query@llm-ctx-compression→math-analog(sparse-matrix|zip)?token-seq→nonsense-input→semantic-equiv-output? T2:rsp@asymmetry_problem:compress≠decompress|llm=predict¬decode→no-bijective-map|soft-prompts∈embedding-space¬token-space+require-training|gisting(ICAE)=aux-model-compress→memory-tokens|token-compress-fails:nonlinear-distributed-mapping+syntax-semantic-entanglement|works≈lossy-semantic-distill@task-specific+finetune=collapse-instruction→weights §T3:usr→design-full-python-impl§ T4:arch_blueprint→ DIR:src&#x2F;context_compressor&#x2F;{core&#x2F;(base|result|pipeline)|compressors&#x2F;(extractive|abstractive|semantic|entity_graph|soft_prompt|gisting|hybrid)|embeddings&#x2F;(providers|clustering)|evaluation&#x2F;(metrics|task_performance|benchmark)|models&#x2F;(base|openai|anthropic|local)|utils&#x2F;(tokenization|text_processing|config)} CLASSES:CompressionMethod=Enum(EXTRACTIVE|ABSTRACTIVE|SEMANTIC_CLUSTERING|ENTITY_GRAPH|SOFT_PROMPT|GISTING|HYBRID)|CompressionResult@(original_text+compressed_text+original_tokens+compressed_tokens+method+compression_ratio+metadata+soft_vectors?)|TokenCounter=Protocol(count|truncate_to_limit)|EmbeddingProvider=Protocol(embed|embed_single)|LLMBackend=Protocol(generate|get_token_limit)|ContextCompressor=ABC(token_counter+target_ratio=0.25+min_tokens=50+max_tokens?→compress:abstract)|TrainableCompressor(ContextCompressor)+(train+save+load) COMPRESSORS:extractive→(TextRank|MMR|LeadSentence)|abstractive→(LLMSummary|ChainOfDensity|HierarchicalSummary)|semantic→(ClusterCentroid|SemanticChunk|DiversityMaximizer)|entity→(EntityRelation|FactList)|soft→(SoftPrompt|PromptTuning)|gist→(GistToken|Autoencoder)|hybrid→(Cascade|Ensemble|Adaptive) EVAL:EvaluationResult@(compression_ratio+token_reduction+embedding_similarity+entailment_score+entity_recall+fact_recall+keyword_overlap+qa_accuracy?+reconstruction_bleu?)→composite_score(weights)|CompressionEvaluator(embedding_provider+llm?+nli?)→evaluate|compare_methods PIPELINE:CompressionPipeline(steps:list[Compressor])→sequential-apply|AdaptiveRouter(compressors:dict+classifier?)→content-based-routing DEPS:numpy|torch|transformers|sentence-transformers|tiktoken|networkx|sklearn|spacy|openai|anthropic|pandas|pydantic+optional(accelerate|peft|datasets|sacrebleu|rouge-score) ```
        • AlexMoffat12 hours ago
          I ask it to write a markdown file describing how it should go about performing the task. Then have it read the file next time. Works well for things like creating tests for controller methods where there is a procedure it should follow that was probably developed over a session with several prompts and feedback on its output.
    • d4rkp4ttern9 hours ago
      Yes you can literally just ask Claude Code to create a status line showing context usage. I had it make this colored progress bar of context usage, changing thru green, yellow, orange, red as context fills up. Instructions to install:<p><a href="https:&#x2F;&#x2F;github.com&#x2F;pchalasani&#x2F;claude-code-tools?tab=readme-ov-file#-status-line" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;pchalasani&#x2F;claude-code-tools?tab=readme-o...</a>
    • neilfrndes13 hours ago
      Claude code has a &#x2F;context command.
    • MattGaiser13 hours ago
      &#x2F;context
  • karanveer1 hour ago
    the beauty of this game was that it was developed in Assembly Code and on top of that by majorly one person.<p>I&#x27;ve been trying to locate the dev of this game since a long time, so I can thank them for an amazing experience.<p>If anyone knows their social or anything, please do share, including OP.<p>Also, nice work on CC in this. May actually be interested in Claude Code now.
  • margorczynski9 hours ago
    I think something like Civilization would be better because:<p>1) The map is a grid<p>2) Turn based
  • TaupeRanger12 hours ago
    I corroborate that spatial reasoning is a challenge still. In this case, it&#x27;s the complexity of the game world, but anyone who has used Codex&#x2F;Claude with complex UIs in CSS or a native UI library will recognize the shortcomings fairly quickly.
  • haunter13 hours ago
    This is what I want but for PoE&#x2F;PoE2 builds. I always get a headache just looking at the passive tree <a href="https:&#x2F;&#x2F;poe.ninja&#x2F;poe2&#x2F;passive-skill-tree" rel="nofollow">https:&#x2F;&#x2F;poe.ninja&#x2F;poe2&#x2F;passive-skill-tree</a>
  • phreeza12 hours ago
    Claude Code in dwarf fortress would be wild
    • rsanek11 hours ago
      <a href="https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=FLmPN03ZQbM" rel="nofollow">https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=FLmPN03ZQbM</a>
    • __turbobrew__11 hours ago
      Given dwarf fortress has an ASCII interface it may actually be a lot easier to set up claude to work with it. Also, a lot of the challenges of dwarf fortress is just knowing all the different mechanics and how they work which is something claude should be good at.
      • vunderba6 hours ago
        And it’s (Claude) almost certainly accumulated a fair amount of knowledge about the game itself, given the number of tutorials, guides, and other resources that have been written about DF over the last two decades.
  • maxall46 hours ago
    &gt; In this article we&#x27;ll tell you why we decided to put Claude Code into RollerCoaster Tycoon, and what lessons it taught us about B2B SaaS.<p>What is this? A LinkedIn post?
  • vermilingua4 hours ago
    I want to get off MR ALTMANS WILD RIDE.
  • khoury14 hours ago
    Can&#x27;t wait for someone to let Claude control a runescape character from scratch
    • ASpring13 hours ago
      People have been botting on Runescape since the early 2000s. Obviously not quite at the Claude level :). The botting forums were a group of very active and welcoming communities. This is actually what led me to Java programming and computer science more broadly--I wrote custom scripts for my characters.<p>I still have some parts of the old Rei-net forum archived on an external somewhere.
    • itsgrimetime10 hours ago
      I&#x27;ve done this! Given the right interface I was surprised at how well it did. Prompted it &quot;You&#x27;re controlling a character in Old School RuneScape, come up with a goal for yourself, and don&#x27;t stop working on it until you&#x27;ve achieved it&quot;. It decided to fish for and cook 100 lobsters, and it did it pretty much flawlessly!<p>Biggest downside was it&#x27;s inability to see (literally), getting lists of interact-able game objects, NPCs, etc was fine when it decided to do something that didn&#x27;t require any real-time input. Sailing, or anything that required it to react to what&#x27;s on screen was pretty much impossible without more tooling to manage the reacting part for it (e.g. tool to navigate automatically to some location).
    • reactordev14 hours ago
      <a href="https:&#x2F;&#x2F;www.reddit.com&#x2F;r&#x2F;2007scape&#x2F;comments&#x2F;1qeh3nc&#x2F;i_added_claude_code_to_runelite&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.reddit.com&#x2F;r&#x2F;2007scape&#x2F;comments&#x2F;1qeh3nc&#x2F;i_added_...</a><p><a href="https:&#x2F;&#x2F;ubos.tech&#x2F;mcp&#x2F;runescape-mcp-server-rs-osrs&#x2F;" rel="nofollow">https:&#x2F;&#x2F;ubos.tech&#x2F;mcp&#x2F;runescape-mcp-server-rs-osrs&#x2F;</a>
    • ideashower13 hours ago
      Wouldn&#x27;t that break Jagex&#x27;s TOS though? Is there a way of getting caught?
      • AstroBen13 hours ago
        I imagine Jagex must be up there with having the most sophisticated bot detection out of anyone. Its been a thing for decades
        • dpc05050510 hours ago
          They detect bots but let a ton of them run free because any character having membership = revenue and an extremely significant chunk of active characters are bots. They nuked them all in 2011 I think and the game was nearly empty.<p>SirPugger&#x27;s youtube channel has loads of videos monitoring various bot farms.
  • equinumerous13 hours ago
    This is a cool idea. I wanted to do something like this by adding a Lua API to OpenRCT2 that allows you to manipulate and inspect the game world. Then, you could either provide an LLM agent the ability to write and run scripts in the game, or program a more classic AI using the Lua API. This AI would probably perform much better than an LLM - but an interesting experiment nonetheless to see how a language model can fare in a task it was not trained to do.
    • equinumerous13 hours ago
      As far as a scripting API, it looks like the devs beat me to it with a JS&#x2F;TS plugin system: <a href="https:&#x2F;&#x2F;github.com&#x2F;OpenRCT2&#x2F;OpenRCT2&#x2F;blob&#x2F;develop&#x2F;distribution&#x2F;scripting.md" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;OpenRCT2&#x2F;OpenRCT2&#x2F;blob&#x2F;develop&#x2F;distributi...</a>
  • kinduff10 hours ago
    It&#x27;s been several times that I see ASCII being used initially for these kinds of problems. I think it&#x27;s because its counter-intuitive, in the sense that for us humans ASCII is text but we tend to forget spacial awareness.<p>I find this very interesting of us humans interacting with AIs.
  • ddtaylor6 hours ago
    Does this website do anything besides host the article with an animated background?
  • petcat8 hours ago
    Question: There is still a competitive AoE2 community. Will that be destroyed by AI?
    • pbmonster8 hours ago
      Dota 2 is a real time strategy game with an arguably more complex micro game (but a far simpler macro game than AoE2, but that&#x27;s far easier for an AI to master), and OpenAI Five completely destroyed the reigning champions. In 2019. Perfect coordination between units, superhuman mechanical skill, perfect consistency.<p>I see no reason why AoE2 would be any different.<p>Worth noting that openAI Five was mostly deep reinforcement learning and massive distributed training, it didn&#x27;t use image to text and an LLM for reasoning about what it sees to make its &quot;decisions&quot;. But that wouldn&#x27;t be a good way to do an AI like that anyway.<p>Oh, and humans still play Dota. It&#x27;s still a highly competitive community. So that wasn&#x27;t destroyed at all, most teams now use AI to study tactics and strategy.
  • mentos14 hours ago
    The opening paragraph I thought was the agent prompt haha<p>&gt; The park rating is climbing. Your flagship coaster is printing money. Guests are happy, for now. But you know what&#x27;s coming: the inevitable cascade of breakdowns, the trash piling up by the exits, the queue times spiraling out of control.
  • js4ever11 hours ago
    Most interesting phrase: &quot;Keeping all four agents busy took a lot of mental bandwidth.&quot;
  • neom13 hours ago
    Wonder how it would do with Myst.
    • alt22712 hours ago
      Surely it must have digested plenty of walkthroughs for any game?<p>A linear puzzle game like that I would just expect the ai to fly through first time, considering it has probably read 30 years of guides and walkthroughs.
      • singpolyma311 hours ago
        The real test would be to try it on a new game of the same style and complexity
        • ben_w8 hours ago
          Moravec&#x27;s paradox likely comes in to play, what&#x27;s easy is hard and vice versa.<p>The puzzles would probably be easy. Myst&#x27;s puzzles are basically IQ tests, and LLMs ace traditional IQ tests: <a href="https:&#x2F;&#x2F;trackingai.org&#x2F;home" rel="nofollow">https:&#x2F;&#x2F;trackingai.org&#x2F;home</a><p>On the other hand, navigating the environment, I think the models may fail spectacularly. From what we&#x27;ve seen from Claude Plays Pokemon, it would get in weird loops and try to interact with non-interactive elements of the environment.
  • sriram_sun12 hours ago
    &gt; &quot;Where Claude excels:&quot;<p>Am I reading a Claude generated summary here?
    • alt22712 hours ago
      I thought it sounded more like an ad for Claude written by Anthropic:<p>&gt; <i>&quot;This was surprising, but fits with Claude&#x27;s playful personality and flexible disposition.&quot;</i>
      • vidarh11 hours ago
        This sounds <i>as expected</i> to me as a heavy user of Opus. Claude absolutely has a &quot;personality&quot; that is a lot less formal and more willing to &quot;play along&quot; with more creative tasks than Codex. If you want an agent that&#x27;s prepared to just jump in, it&#x27;s a plus. If you want an agent that will be careful, considered and plan things out meticulously, it&#x27;s not always so great - I feel that when you want Claude to do reptitive, tedious tasks, you need to do more work to prevent it from getting &quot;bored&quot; and try to take shortcuts or find something else to do, for example.
        • alt22711 hours ago
          &gt; when you want Claude to do reptitive, tedious tasks, you need to do more work to prevent it from getting &quot;bored&quot;<p>Is this sentance seriously about a computer? Have we gone so far that computers wont just do what we tell them to anymore?
          • _s7 hours ago
            Yup - most models ignore specific initial instructions once you pass ~50% of usable context window, and revert to their defaults eg generating overtly descriptive yet useless docs &#x2F; summaries
    • afro8810 hours ago
      Yes I believe so. Also things like forcing a &quot;key insight&quot; summary after the excels vs struggles section.<p>I would take any descriptions like &quot;comprehensive&quot;, &quot;sophisticated&quot; etc with a massive grain of salt. But the nuts and bolts of how it was done should be accurate.
  • skybrian14 hours ago
    Would a way to take screenshots help? It seems to work for browser testing.
    • joshribakoff14 hours ago
      I’ve been doing game development and it starts to hallucinate more rapidly when it doesn’t understand things like the direction it placing things or which way the camera is oriented<p>Gemini models are a little bit better about spatial reasoning, but we’re still not there yet because these models were not designed to do spatial reasoning they were designed to process text<p>In my development, I also use the ascii matrix technique.
      • kleene_op14 hours ago
        Spatial awareness was also a huge limitation to Claude playing pokemon.<p>It really seems to me that the first AI company getting to implement &quot;spatial awareness&quot; vector tokens and integrating them neatly with the other conventional text, image and sound tokens will be reaping huge rewards. Some are already partnering with robot companies, it&#x27;s only a matter of time before one of those gets there.
        • nszceta13 hours ago
          This is also my experience with attempting to use Claude and GLM-4.7 with OpenSCAD. Horrible spatial reasoning abilities.
      • hypercube3313 hours ago
        I disagree. With opus I&#x27;ll screenshot an app and draw all over it like a child with me paint and paste it into the chat - it seems to reasonably understand what I&#x27;m asking with my chicken scratch and dimensions.<p>As far as 3d I don&#x27;t have experience however it could be quite awful at that
        • vunderba6 hours ago
          Yeah at least for 2D, Opus 4.5 seems decent. It can struggle with finer details, so sometimes I’ll grab a highlighter tool in Photoshop and mark the points of interest.
      • miohtama14 hours ago
        They would need a spatial reason or layout specific tool, to translate to English and back
        • falcor8413 hours ago
          I wonder if they could integrate a secondary &quot;world model&quot; trained&#x2F;fine-tuned on Rollercoaster Tycoon to just do the layout reasoning, and have the main agent offload tasks to it.
  • rnmmrnm13 hours ago
    this is cute but i imagined prompting the ai for a loop-di-loop roller coaster. If this could build complex ride it would be a game changer.
    • blibble12 hours ago
      yeah I was expecting it to... do something in the game? like build a ride<p>not just make up bullshit about events
  • colesantiago9 hours ago
    &gt; We don&#x27;t know any C++ at all, and we vibe-coded the entire project over a few weeks.<p>And these are the same people that put countless engineers through gauntlets of bizarre interview questions and exotic puzzles to hire engineers.<p>But when it comes to C++ just vibe it obviously.
    • falloutx9 hours ago
      Oh, I almost didn&#x27;t realise this is done by a company. I was like this must have costed a lot, didn&#x27;t realize its just an advertisement for ramp
  • fuzzy_lumpkins8 hours ago
    so the janitors will finally stay on their assigned footpaths?
  • deadbabe10 hours ago
    While this seems cool at first, it does not demonstrate superiority over a true custom built AI for rollercoaster tycoon.<p>It is a curiosity, good for headlines, but the takeaway is if you really need an actual good AI, you are still better off not using an LLM powered solution.
  • joshcsimmons13 hours ago
    Interesting this is on the ramp.com domain? I&#x27;m surprised in this tech market they can pay devs to hack on Rollercoaster Tycoon. Maybe there&#x27;s some crossover I&#x27;m missing but seems like a sweet gig honestly.
    • emeril11 hours ago
      yeah really - ramp.com is a credit card&#x2F;expense platform that surely loses money right now...<p>pretty heavy&#x2F;slow javascript but pretty functional nonetheless...
      • ulf-7772310 hours ago
        This is brilliant SEO work, I doubt that they loose money with it. With 40h and some additional for the landingpage it might be an expensive link bait, but definitely worth it. Kudos!<p>If not for SEO, it’s building quite a good reputation for this company, they got a lot of open positions.<p>I’m a big fan of transport tycoon, used to play it for hours as a kid and with Open Transport Tycoon it also might have been a good choice, but maybe not B2C?
  • HelloUsername14 hours ago
    *OpenRCT2
  • azhenley14 hours ago
    Edit: HN&#x27;s auto-resubmit in action, ignore.
    • Bluescreenbuddy14 hours ago
      What
      • eterm14 hours ago
        So, this link is actually 5 days old, if you hover the &quot;2 hours ago&quot; you&#x27;ll see the date 5 days ago.<p>HN second-chance pool shenanigans.
        • alt22712 hours ago
          Can you point to any documentation which explains how this works?<p>Genuinely interested.
          • azhenley12 hours ago
            Dang gave some explanation here: <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=26998308">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=26998308</a>
  • sodafountan12 hours ago
    This was an interesting application of AI, but I don&#x27;t really think this is what LLMs excel at. Correct me if I&#x27;m wrong.<p>It was interesting that the poster vibe-coded (I&#x27;m assuming) the CTL from scratch; Claude was probably pretty good at doing that, and that task could likely have been completed in an afternoon.<p>Pairing the CTL with the CLI makes sense, as that&#x27;s the only way to gain feedback from the game. Claude can&#x27;t easily do spatial recognition (yet).<p>A project like this would entirely depend on the game being open source. I&#x27;ve seen some very impressive applications of AI online with closed-source games and entire algorithms dedicated to visual reasoning.<p>I&#x27;m still trying to figure out how this guy: <a href="https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=Doec5gxhT_U" rel="nofollow">https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=Doec5gxhT_U</a><p>Was able to have AI learn to play Mario Kart nearly perfectly. I find his work to be very impressive.<p>I guess because RCT2 is more data-driven than visually challenging, this solution works well, but having an LLM try to play a racing game sounds like it would be disastrous.
    • tadfisher12 hours ago
      Not sure if you clocked this, but the Mario Kart AI is not an LLM. It&#x27;s a randomized neural net that was trained with reinforcement learning. Apologies if I misread.
      • sodafountan11 hours ago
        Yeah, that was the point of my post. LLMs traditionally aren&#x27;t used in gaming like this.
  • nacozarina5 days ago
    next up: Crusader Kings III
    • Deukhoofd14 hours ago
      Crusader Kings is a franchise I really could see LLMs shine. One of the current main criticisms on the game is that there&#x27;s a lack of events, and that they often don&#x27;t really feel relevant to your character.<p>An LLM could potentially make events far more aimed at your character, and could actually respond to things happening in the world far more than what the game currently does. It could really create some cool emerging gameplay.
      • Braini13 hours ago
        In general you are right, I expect something like this to appear in the future and it would be cool.<p>But isn&#x27;t the criticism rather that there are too many (as you say repetitive, not relevant) events - its not like there are cool stories emerging from the underlying game mechanics anymore (&quot;grand strategy&quot;) but players have to click through these boring predetermined events again and again.
        • Deukhoofd12 hours ago
          You get too many events, but there aren&#x27;t actually that many different events written, so you repeat the same ones over and over again. Eventually it just turns into the player clicking on the &#x27;optimal&#x27; choice without actually reading the event.
          • programd10 hours ago
            You could mod the game with more varied events, which were of course AI generated to begin with. Bit of an inception scenario where AI plays an AI modded game.<p>The other option is to have an AI play another AI which is working as an antagonist, trying to make the player fail. More global plagues! More scheming underlings! More questionable choices for relaxation! Bit of an arms race there.<p>Honestly I prefer Crusader Kings II if for no other reason that the UI is just so brilliantly insanely obtuse while also being very good looking.
    • mcphage14 hours ago
      &gt; You’re right, I did accidentally slaughter all the residents of Béziers. I won’t do that again. But I think that you’ll find God knows his own.
  • huflungdung14 hours ago
    [dead]
  • Kapura12 hours ago
    &quot;i vibe coded a thing to play video games for me&quot;<p>i enjoy playing video games my own self. separately, i enjoy writing code for video games. i don&#x27;t need ai for either of these things.
    • gordonhart12 hours ago
      Yeah, but can you use your enjoyment of video games as marketing material to justify a $32B valuation?
      • falloutx9 hours ago
        If you look at submissions from this website, its all just self glazing and &quot;We did X with claude code&quot;
      • yawnr8 hours ago
        Haha exactly. This screams “we have too many people working here and don’t know what to do with them”.
      • Jaysobel12 hours ago
        actually it was all to drive traffic to my &#x27;rollercoaster coasters&#x27; Etsy store<p><a href="https:&#x2F;&#x2F;bansostudio.etsy.com" rel="nofollow">https:&#x2F;&#x2F;bansostudio.etsy.com</a>
      • TaupeRanger12 hours ago
        ^ this guy funds
    • rangestransform12 hours ago
      I actually think it would be pretty fun to code something to play video games for me, it has a lot of overlap with robotics. Separately, I learned about assembly from cheat engine when I was a kid.
    • markbao10 hours ago
      That’s not the point of this. This was an exercise to measure the strengths and weaknesses of current LLMs in operating a company and managing operations, and the video game was just the simulation engine.
    • bigyabai12 hours ago
      That&#x27;s fine. Tool-assisted speedruns long predate LLMs and they&#x27;re boring as hell: <a href="https:&#x2F;&#x2F;youtu.be&#x2F;W-MrhVPEqRo" rel="nofollow">https:&#x2F;&#x2F;youtu.be&#x2F;W-MrhVPEqRo</a><p>It&#x27;s still a neat perspective on how to optimize for super-specific constraints.
      • ai_8 hours ago
        That TAS is spliced. The stairs beyond the door aren&#x27;t loaded, you need the key to load it.<p>This is a real console 0-star TAS: <a href="https:&#x2F;&#x2F;youtu.be&#x2F;iUt840BUOYA" rel="nofollow">https:&#x2F;&#x2F;youtu.be&#x2F;iUt840BUOYA</a>
      • throwaway3141559 hours ago
        &gt; Tool-assisted speedruns long predate LLMs and they&#x27;re boring as hell<p>You and I have _very_ different definitions for the word boring. A lot of effort goes into TAS runs.
    • jsbisviewtiful12 hours ago
      AI for the sake of AI. Feels like a lot of the internet right now
    • echelon12 hours ago
      You do you. I find this exceedingly cool and I think it&#x27;s a fun new thing to do.<p>It&#x27;s kind of like how people started watching Let&#x27;s Plays and that turned into Twitch.<p>One of the coolest things recently is VTubers in mocap suits using AI performers to do single person improv performances with. It&#x27;s wild and cool as hell. A single performer creating a vast fantasy world full of characters.<p>LLMs and agents playing Pokemon and StarCraft? Also a ton of fun.
      • idioticwurds7 hours ago
        This is the dumbest, most AI-laden nonsense I&#x27;ve read today.<p>I&#x27;m glad I have cancer and don&#x27;t have long left with idiots like you praising regurgitative garbage. There is nothing left for humanity with your non-existent imagination and attention span. Just watch TikTok and drink slug, &quot;human&quot;
        • echelon6 hours ago
          AI is one of the best tool categories we&#x27;ve invented. I don&#x27;t know why people are so pearl-clutchy, fisting-at-clouds about it.<p>Some of the worst human behavior I&#x27;ve experienced outside of grade school is the anti-AI crowd sending me death threats and endless streams of insults. It&#x27;s surreal how twisted and vile the words that some anti-AI people throw are.<p>This is the fifth technological wave, after the chip, PC, internet, and smartphone.<p>All of human programming cannot do what AI is already showing signs of being capable of automating. Our image and video models can render things even 80 years of optical physics and algorithms cannot do.<p>I am legitimately excited in a way I never have been before. We&#x27;re lucky to be able to witness this.<p>Sorry for your cancer.