<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Hacker News: voodooEntity</title><link>https://news.ycombinator.com/user?id=voodooEntity</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sun, 27 Sep 2026 10:00:57 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=voodooEntity" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by voodooEntity in "Ask HN: What are you working on? (September 2026)"]]></title><description><![CDATA[
<p>Im working on my own coding agent soon to be released.<p>While you might think "yey another coding agent" i went down some very different paths than other open source coding agents do right now. Ill not bore you with a ton of detailed breakdowns and rather list the main points that are relevant to understand why/how i build it.<p>Premise:<p>-The agent is meant to run against selfhosted environments first like Ollama etc with a focus on non cloud sized models, it should work properly on something like a 27b model already<p>-The agent with full intention trades execution time vs reasoning and result quality<p>So what does it do different:<p>1. The agent, instead of trying to let the model solve a whole task in 3-5 inferences, rather breaks down the "thinking process" in smaller chunks, basically decomposing the task into smaller tasks. While this is not a completely new concept, the agent will break it down to really simple single step variants which even for a smaller model can properly be solved. This involves not just file editings but all points along the way from interpreting user message to planing a task to defining acceptance criteria etc.<p>2. The agent is build in a way that it, apart from some fixed steps such as detect user intent at the beginning and synthesize response at the end, it will by itself decide what is the next proper step to execute/do based on the context i provide. While doing so the agent also revalidates its current execution and if it spots that, given the information i collected since it planned and started running, the current plan is not detailed enough or is missing out due to something he didnt "know" when he was planing, the agent will dynamicly mutate the coming plan stats, as in restructure/decompose/etc in order to have a properly layed out route to fulfill the task.<p>3. The agent has a rather complex system of how his context is composed which is combined by things like the chat history, previous step results, a backlog of what "single steps" it has done (updated file x , read range from file y etc) and in that it is strongly reason driven, so it will for most of the things it does also provide a small reason explaination for why it did that. Than the agent also has a working memory that contains facts and decisions it made along execution. There is more but thats just some thingsd to mention. The whole memory system and context is rather complex (tho not complicated). When i release it ill properly break down how all this works in the docs.<p>4. The agent provides full observability in the ui. At every point of execution you can basically in detail see whats in memory, whats the current composed context, whats the plan and what plan steps depend on what previous steps, you can look at artefacts it build and also you have basically a complete audit log of all single "actions" it has executed and can look into their details.<p>5. The agent allows to while in an execution send steering messages, meaning the message will be, using relevant current contextual information about its execution, send as inference with a prompt askind the agent to interpret on if its relevant, and how does it impact the current execution/plan. It than can decide either just do alter what it currently does, or even do a plan mutation in order to accomodate the users steering information.<p>6. The agent within its capabilities has a lot of error correction/self reflection logic. From dynamicly fixing json including a fallback to let LLM fix a response json, upon to if executions fail to much it will itself do a hypothesis on why this is happening, formulate a critique and with that reevaluate if it wants to try the steps again with the additional information, or if it wants to mutate the plan to accomodate the just spotted problems.<p>Theres quite some more i could list but i guess thats enaugh for now. The big trade off as mentioned earlier is execution time. In comparsion to cloud native agents, which will do giant editings and reasonings in just a hand full of inferences, my agent uses a ton of inferences. The big difference is that this allows (a) the agent to more precisly focus on specific tasks rather than overloading it with to much at once and (b) alot better spot problems/mistakes itself and adjust its execution plan to accomodate those without the user having to reprompt the agent 10 times until something is actually correctly solved.<p>Apart from the pure coding capability, the very same actions that allow for higher quality reasoning and coding at the same time allow the agent also be a good analysis and discussion partner.<p>So : what is it than used for if inferences and executions can take very long? Well for me its in terms of coding capabilities a hands off agent. Its meant to be informed once at the beginning with relevant details, and than should be fully capable (as long its in the capabilities for sure) to fulfill the task without the user having to permanently keep an eye open. I want to free time for myself and not change my time from coding to prompting.<p>Ill wrap it up here and say : the Agents name is "Loa" and i probably will post it on hackernews as soon i got a relatively stable beta to release. Im close to being fine with a beta release but i want  to test some more runs before i publish.</p>
]]></description><pubDate>Mon, 14 Sep 2026 07:40:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=49693278</link><dc:creator>voodooEntity</dc:creator><comments>https://news.ycombinator.com/item?id=49693278</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49693278</guid></item><item><title><![CDATA[New comment by voodooEntity in "Stop Making TUIs"]]></title><description><![CDATA[
<p>Tbh in a time where more and more applications are shipped as vibecoded electron based bloated bug-collections that are slow and take stupid amounts of resources i'd rather have even more TUI's than less.....</p>
]]></description><pubDate>Sat, 22 Aug 2026 09:57:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=49398190</link><dc:creator>voodooEntity</dc:creator><comments>https://news.ycombinator.com/item?id=49398190</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49398190</guid></item><item><title><![CDATA[New comment by voodooEntity in "Show HN: Desktopcolors.com – A museum for solid background colors of classic OS"]]></title><description><![CDATA[
<p>No os² feel like this list should have gotten more entries and love before publishing</p>
]]></description><pubDate>Mon, 17 Aug 2026 13:47:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=49330796</link><dc:creator>voodooEntity</dc:creator><comments>https://news.ycombinator.com/item?id=49330796</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49330796</guid></item><item><title><![CDATA[New comment by voodooEntity in "HashAgent – Share an AI agent as a URL, runs locally via WebGPU"]]></title><description><![CDATA[
<p>Funny, i did this myself some months ago - its actually not that tricky to run a llm in your browser. Tho, the problem is that the models fitting in there are well relativly "tiny" in my opinion.<p>Cool idea tho to make it as accessible (:</p>
]]></description><pubDate>Fri, 14 Aug 2026 14:47:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=49299425</link><dc:creator>voodooEntity</dc:creator><comments>https://news.ycombinator.com/item?id=49299425</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49299425</guid></item><item><title><![CDATA[New comment by voodooEntity in "Ask HN: What are you working on? (August 2026)"]]></title><description><![CDATA[
<p>I have started working on a 1 Person RTS project (crazy right? i know :D)<p>Basically a 2d rts, fully orthogonal view, plays in space with spaceship combat.<p>You start with a deployable base, kinda like the old C&C, which you can place around a minable planet. Than from this you can place further structures arround that planet including the typicals, mining (2 types) of resources, researching stuff, and building ships.<p>The 2 things i focus the most on in this game on are<p>1. Responsiveness. Im a strong fan of starcraft 2 (and brood war) and have spend tons of time playing sc2. I love this super responsive controles and its the only thing i will settle for in terms of controles<p>2. I love the game starsector (yes no rts) for the way its ships are designed. You have a base hull that has some stats like hp / speed / etc - than this thing has basically mountpoints where you can fit weapons into. I always loved this system. So what i build is a game where you can (outside of battle) define your desired ship blueprints combined of a hull, weapons and "inbuilds" (as in upgrades). You can than just build those ships ingame.<p>So ye made quite progress so far , not sure tho what will be the first mode i focus on once i get a playable (as in demo) state.<p>Btw using godot engine as base, but some logic is running as c++ gd extensions (rts is heavy calcs , gdscript is just not fast enaugh (or im just not a gamdev ¯\_(ツ)_/¯)<p>Here a screenshot of the ship blueprint editor for those who are curious
- <a href="https://i.postimg.cc/bq5JB9J7/editorexample.jpg" rel="nofollow">https://i.postimg.cc/bq5JB9J7/editorexample.jpg</a></p>
]]></description><pubDate>Sun, 09 Aug 2026 19:36:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=49234903</link><dc:creator>voodooEntity</dc:creator><comments>https://news.ycombinator.com/item?id=49234903</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49234903</guid></item><item><title><![CDATA[New comment by voodooEntity in "Show HN: Nightcrawler – A local AI pentesting agent running on a smartphone"]]></title><description><![CDATA[
<p>Ye you should be really careful on that one. If just somebody with a bad mood reports you, even if you have absolutely good intentions, it can cost you and if its just in spendings in a lawyer to proof that your fine....</p>
]]></description><pubDate>Mon, 03 Aug 2026 19:15:58 +0000</pubDate><link>https://news.ycombinator.com/item?id=49160177</link><dc:creator>voodooEntity</dc:creator><comments>https://news.ycombinator.com/item?id=49160177</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49160177</guid></item><item><title><![CDATA[New comment by voodooEntity in "Show HN: Nightcrawler – A local AI pentesting agent running on a smartphone"]]></title><description><![CDATA[
<p>Well its not like i didn't consider it, but it heavily relies on stuff that i have written and that is well only used by me till this day. So arguably, publishing it this way it would still have like "points" which make it extremely related to only me.<p>Also asked the lawyer in consulted about it... i would be a heavy gamble</p>
]]></description><pubDate>Mon, 03 Aug 2026 19:00:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=49160020</link><dc:creator>voodooEntity</dc:creator><comments>https://news.ycombinator.com/item?id=49160020</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49160020</guid></item><item><title><![CDATA[New comment by voodooEntity in "Show HN: Nightcrawler – A local AI pentesting agent running on a smartphone"]]></title><description><![CDATA[
<p>Yes and no. I have seen (not wanne name them now to not bring them into a bad context) several tools coming from germany which are well in questionable contexts but due to basically beein advertised as full LLM/AI driven its somehow not on anyones radar. So that is kinda a thing.<p>But sure location itself also plays a role no question.</p>
]]></description><pubDate>Mon, 03 Aug 2026 18:58:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=49159972</link><dc:creator>voodooEntity</dc:creator><comments>https://news.ycombinator.com/item?id=49159972</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49159972</guid></item><item><title><![CDATA[New comment by voodooEntity in "Show HN: Nightcrawler – A local AI pentesting agent running on a smartphone"]]></title><description><![CDATA[
<p>No im referring to the legal terms of germany, the country im residing at. Our laws regarding "hacking" are arguable the strictest and worst.<p>The problem is that they are formulated in a way that it is super easy to have your software being possible "dual use" and that a judge has to decide if its fine or not. Making it worse it also states your "intention" which well is impossible to proof - if the judge says he doesn't believe your intentions are only good, you can literally get massively sued.<p>So ye i could move to another country and than publish it - apart from that i can let it rot on my hdd (which is prolly what will happen).<p>Edit: Additionally mentioned, it is not just the publishing in germany, even the facilitating already which is why i don't even have an article about it (any more).</p>
]]></description><pubDate>Mon, 03 Aug 2026 13:32:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=49155596</link><dc:creator>voodooEntity</dc:creator><comments>https://news.ycombinator.com/item?id=49155596</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49155596</guid></item><item><title><![CDATA[New comment by voodooEntity in "Show HN: Nightcrawler – A local AI pentesting agent running on a smartphone"]]></title><description><![CDATA[
<p>The following rant is not against the owner/project - but...<p>What an irony. I cant publish a attack surface mapping / pentesting tool i wrote which runs fully deterministic and really controlable due to "dual use" legal problems - but llm driven tools hit public space......<p>sorry for the rant....</p>
]]></description><pubDate>Mon, 03 Aug 2026 12:35:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=49154925</link><dc:creator>voodooEntity</dc:creator><comments>https://news.ycombinator.com/item?id=49154925</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49154925</guid></item><item><title><![CDATA[New comment by voodooEntity in "F*: A general-purpose proof-oriented programming language"]]></title><description><![CDATA[
<p>Thank you ! I just had the absolute same experience and was about to write a similar comment - take my upvote instead !</p>
]]></description><pubDate>Sun, 02 Aug 2026 17:10:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=49146296</link><dc:creator>voodooEntity</dc:creator><comments>https://news.ycombinator.com/item?id=49146296</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49146296</guid></item><item><title><![CDATA[New comment by voodooEntity in "A font that humans can read but AI cannot"]]></title><description><![CDATA[
<p>One side i really like it - i also love to play around with funny ideas - but have to say if i would read more than like 2 sentences with that font i'd throw up xD</p>
]]></description><pubDate>Sat, 11 Jul 2026 10:25:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=48870644</link><dc:creator>voodooEntity</dc:creator><comments>https://news.ycombinator.com/item?id=48870644</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48870644</guid></item><item><title><![CDATA[New comment by voodooEntity in "EU Parliament greenlights Chat Control 1.0"]]></title><description><![CDATA[
<p>Some people say im rather pessimistic - but i still kinda hoped that the EU will not go down this path.<p>That said - i was obviously wrong.<p>I don't really know what else to say than : this breaks a fundamental foundation of privacy. Sure i was never 100% aligned with EU level decisions (neither with my residing country one's) but that's just... wrong on so many levels... how can i even still argue to people that EU and democracy are good if this is what its heading for?<p>Usually i try to explain stuff with common grounds, the bigger picture or whatever is fitting. You can't have everyone happy on every decision.<p>But at this point im lost of arguments. They just betrayed every citizen from my pov.<p>So whats my point of this comment? Maybe i need to vent in an environment where i think people might get how bad this actually is, since people IRL around me don't seem to remotly understand the impact....</p>
]]></description><pubDate>Fri, 10 Jul 2026 04:44:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=48855840</link><dc:creator>voodooEntity</dc:creator><comments>https://news.ycombinator.com/item?id=48855840</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48855840</guid></item><item><title><![CDATA[New comment by voodooEntity in "Show HN: Paint the Earth on a live, interactive globe (collaborative art.)"]]></title><description><![CDATA[
<p>Just out of curiosity - Whats the plan against well "missuse" in terms of depicting "forbidden/problematic" symbols/Words/....?<p>This is one of the major issues that made the reddit variant a rather big nightmare for mods.</p>
]]></description><pubDate>Mon, 06 Jul 2026 13:27:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=48804282</link><dc:creator>voodooEntity</dc:creator><comments>https://news.ycombinator.com/item?id=48804282</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48804282</guid></item><item><title><![CDATA[New comment by voodooEntity in "Anonymous GitHub account mass-dropping undisclosed 0-days"]]></title><description><![CDATA[
<p>While i can follow your path, maybe because i see the same, i sadly have seen in groups of friends how this can go sideways very fast. If you report things, some companies gone treat you as a criminal/offensive actor and even go legal actions against you even you just tellem here you got this vuln.<p>Sure you than can do it anonymous and so on but point is : its not like every actor that gets notified will react thankful to it. Some even just ignore it.</p>
]]></description><pubDate>Sat, 27 Jun 2026 17:03:38 +0000</pubDate><link>https://news.ycombinator.com/item?id=48699869</link><dc:creator>voodooEntity</dc:creator><comments>https://news.ycombinator.com/item?id=48699869</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48699869</guid></item><item><title><![CDATA[New comment by voodooEntity in "To study how chips work, MIT researchers built their own operating system"]]></title><description><![CDATA[
<p>chapeau for this project - and thanks for sharing it with the world!</p>
]]></description><pubDate>Fri, 19 Jun 2026 11:59:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=48597590</link><dc:creator>voodooEntity</dc:creator><comments>https://news.ycombinator.com/item?id=48597590</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48597590</guid></item><item><title><![CDATA[New comment by voodooEntity in "Hallucinate – Massively Multiplayer Online Rave"]]></title><description><![CDATA[
<p>Damn :D even tho i prolly just gonne use it this single team, it kinda made my day :) very cool thing - just a collaborative experience to enjoy !</p>
]]></description><pubDate>Thu, 28 May 2026 09:59:38 +0000</pubDate><link>https://news.ycombinator.com/item?id=48306819</link><dc:creator>voodooEntity</dc:creator><comments>https://news.ycombinator.com/item?id=48306819</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48306819</guid></item><item><title><![CDATA[New comment by voodooEntity in "SecurityBaseline.eu"]]></title><description><![CDATA[
<p>Well i wouldnt recommend to use btc for the payment to be honest. But ye offshore servers have been a thing for a long time.<p>Tho i wanted to open source the tool (spend ~10 years developing it) and thats just not an option.<p>Don't wanne self advertise here , but for the sake of better understanding if you want to know the details you can read them here: <a href="https://blog.laughingman.dev/article/Ishikawa_10_years_of_building_an_attack_surface_mapping_tool_i_can_t_release.html" rel="nofollow">https://blog.laughingman.dev/article/Ishikawa_10_years_of_bu...</a></p>
]]></description><pubDate>Wed, 13 May 2026 12:21:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=48120983</link><dc:creator>voodooEntity</dc:creator><comments>https://news.ycombinator.com/item?id=48120983</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48120983</guid></item><item><title><![CDATA[New comment by voodooEntity in "SecurityBaseline.eu"]]></title><description><![CDATA[
<p>Word.....<p>This laws, while i wanne say have a good intention, just do the opposite...<p>I myself, residing in germany, developed a recon/vuln/scanning tool that im legally forbidden to publish cuz of the laws you just mentioned.</p>
]]></description><pubDate>Wed, 13 May 2026 12:13:41 +0000</pubDate><link>https://news.ycombinator.com/item?id=48120905</link><dc:creator>voodooEntity</dc:creator><comments>https://news.ycombinator.com/item?id=48120905</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48120905</guid></item><item><title><![CDATA[Ishikawa: 10 years of building an attack surface mapping tool I can't release]]></title><description><![CDATA[
<p>Article URL: <a href="https://blog.laughingman.dev/article/Ishikawa_10_years_of_building_an_attack_surface_mapping_tool_i_can_t_release.html">https://blog.laughingman.dev/article/Ishikawa_10_years_of_building_an_attack_surface_mapping_tool_i_can_t_release.html</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=48107065">https://news.ycombinator.com/item?id=48107065</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Tue, 12 May 2026 12:04:07 +0000</pubDate><link>https://blog.laughingman.dev/article/Ishikawa_10_years_of_building_an_attack_surface_mapping_tool_i_can_t_release.html</link><dc:creator>voodooEntity</dc:creator><comments>https://news.ycombinator.com/item?id=48107065</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48107065</guid></item></channel></rss>