How good is it to work on building games, compared to existing agents? I am building my own game?
You aren't building your own game if you have a chatbot do it for you.
Show HN: Ante, a coding agent in a single binary that runs offline
51–60 of 95 posts
Re: Show HN: Ante, a coding agent in a single binary that runs offline
#52Re: Show HN: Ante, a coding agent in a single binary that runs offline
#53Re: Show HN: Ante, a coding agent in a single binary that runs offline
#54How good is it to work on building games, compared to existing agents? I am building my own game?
You aren't building your own game if you have a chatbot do it for you.
Compare/contrast: people who develop games on top of high-level genre-specific game engines like RPG Maker are still considered to be "building a game." What's the difference between using a pre-made purpose-fit engine like RPG Maker, vs. asking an AI (or, for that matter, a contracted software company) to build you a custom purpose-fit engine?
Re: Show HN: Ante, a coding agent in a single binary that runs offline
#55Hi HN, I'm Mohan from Antigma Labs. Ante is a coding agent that ships as one self-contained ~15MB binary: the TUI, an embedded ripgrep, local PDF/OCR, and a natively managed llama.cpp engine are all inside. No runtime dependencies, no node_modules, no account. - Ante installs a pinned, checksum-verified official llama.cpp build matched to your machine (Metal on Apple silicon; CUDA, Vulkan, or CPU on Linux) and handle…
> Ante installs a pinned, checksum-verified official llama.cpp
But in README: > Ante ships its own inference engine
May I suggest you use the first phrasing in both places. I took it as Ante devs had written their own engine and I doubt I'm the only one.Re: Show HN: Ante, a coding agent in a single binary that runs offline
#56Earlier quoted context omitted.
You aren't building your own game if you have a chatbot do it for you.
A classic tale from the music production world comes to mind: "I thought using loops was cheating, so I programmed my own using samples. I then thought using samples was cheating, so I recorded real drums. I then thought that programming it was cheating, so I learned to play drums for real. I then thought using bought drums was cheating, so I learned to make my own. I then thought using premade skins was cheating, so…
Re: Show HN: Ante, a coding agent in a single binary that runs offline
#57Earlier quoted context omitted.
A classic tale from the music production world comes to mind: "I thought using loops was cheating, so I programmed my own using samples. I then thought using samples was cheating, so I recorded real drums. I then thought that programming it was cheating, so I learned to play drums for real. I then thought using bought drums was cheating, so I learned to make my own. I then thought using premade skins was cheating, so…
Does prompting an AI music generation service count as making your own songs? I noticed you left that one out of your parable.
So sometimes when I want to hear what my song COULD be if I were good at every one of those, I will use Suno. But I do not let it change my lyrics, or chose it's own arrangement. I will give it a VERY ROUGH demo (out of key singing, basic drums and strums, and it will "polish" my turds into really shiny turds.
Re: Show HN: Ante, a coding agent in a single binary that runs offline
#58Considering that ripgrep, git, and, you know, other dev tools are part of the toolbox, then why ship them inside this executable? And, furthermore, if you ship them, then why stop there?
so it is more for being self contained and works out of box if being deployed in a bare linux environment. we tried shell out to `rg` it didn't work very well and instead spending time handling the args parsing and jugging string output, we decided to spend time on building Grep natively for agent. It is just a start~ as for why stop here yep, the goal is to be able to find the best sweet spot in being self contained…
Re: Show HN: Ante, a coding agent in a single binary that runs offline
#59Re: Show HN: Ante, a coding agent in a single binary that runs offline
#60How good is it to work on building games, compared to existing agents? I am building my own game?
They are a bit weird with game development at the moment. They can one shot entire games, with relatively minor issues. And obviously asking for small code snippets and integrating them yourself has been well supported for five years. But in Agent mode... not so much. I was asking frontier models to make simple changes to my Pong game (you know like the one from 1972) and it constantly failed to make simple changes o…