<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: sergiomattei</title><link>https://news.ycombinator.com/user?id=sergiomattei</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Thu, 09 Apr 2026 09:17:16 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=sergiomattei" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by sergiomattei in "Show HN: I made an email app inspired by Arc browser"]]></title><description><![CDATA[
<p>This is beautiful product design.<p>I will say, I do wish there was a conversation list when looking at folders--having conversations listed on the sidebar can get a bit busy.</p>
]]></description><pubDate>Fri, 20 Mar 2026 21:02:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=47460512</link><dc:creator>sergiomattei</dc:creator><comments>https://news.ycombinator.com/item?id=47460512</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47460512</guid></item><item><title><![CDATA[New comment by sergiomattei in "Israel Strikes Oil Facilities in Iran"]]></title><description><![CDATA[
<p>Zipped up tightly? This has been all over mainstream news outlets, social media, everywhere.<p>We are commenting on a submission linked to the New York Times.</p>
]]></description><pubDate>Sun, 08 Mar 2026 03:33:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=47294127</link><dc:creator>sergiomattei</dc:creator><comments>https://news.ycombinator.com/item?id=47294127</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47294127</guid></item><item><title><![CDATA[New comment by sergiomattei in "Pi – A minimal terminal coding harness"]]></title><description><![CDATA[
<p>I built my own harness on Elixir/Erlang[0]. It's very nice, but I see why TypeScript is a popular choice.<p>No serialization/JSON-RPC layer between a TS CLI and Elixir server. TS TUI libraries utilities are really nice (I rewrote the Elixir-based CLI prototype as it was slowing me down). Easy to extend with custom tools without having to write them in Elixir, which can be intimidating.<p>But you're right that Erlang's computing vision lends itself super well to this problem space.<p>[1]: <a href="https://github.com/matteing/opal" rel="nofollow">https://github.com/matteing/opal</a></p>
]]></description><pubDate>Wed, 25 Feb 2026 00:55:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=47145858</link><dc:creator>sergiomattei</dc:creator><comments>https://news.ycombinator.com/item?id=47145858</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47145858</guid></item><item><title><![CDATA[Show HN: A minimal coding agent in Elixir (Erlang/OTP)]]></title><description><![CDATA[
<p>Hi HN :)<p>Over the past couple of weeks, I got pretty intrigued by the rise of OpenClaw and agent harnesses like Pi.<p>At some point, I decided I wanted to make my own in order to learn how these things work. I learn by doing, and it seemed like a fun project. So I started building my own OpenClaw in TypeScript--but at some point realized I'd rather start from first principles, so instead I shifted focus towards building my own agent harness.<p>Something curious happened though: the more I looked at the problem space (agent system, running tools, etc)--the more it looked like Erlang/OTP to me. I had a hunch that Elixir would be a great fit for this problem.<p>I started building it and effectively, yes! It was a great fit. The agent loop maps perfectly to an Erlang GenServer/gen_fsm, parallel tool execution is easy by just spawning cheap Erlang processes, and multiple agents/subagents can be isolated in one system as separate supervision trees. This is all a lot of stuff I would've had to reinvent if another language was used.<p>Erlang/OTP is an amazing system. This setup gives me incredible observability into running agent systems--I can remote iex to the server binary and manipulate the system, end tool execution. The agent can debug itself by connecting to its own running instance. And, in the future, you can probably network these using Erlang distribution as well!<p>So far, in terms of features, the harness is minimal but packs a punch.<p>- Read/write files<p>- Shell calls<p>- Multiplatform<p>- Subagent support<p>- Asking questions<p>- Nice CLI :)<p>All in all, this project has been very fun to build. It's finally at the point where it's building itself and that's very rewarding to watch.<p><a href="https://github.com/matteing/opal" rel="nofollow">https://github.com/matteing/opal</a><p>Take a look at the GitHub, drop a star, and let me know any feedback? It's my first time building an agent system, so any input is welcome. Thank you!</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47138518">https://news.ycombinator.com/item?id=47138518</a></p>
<p>Points: 3</p>
<p># Comments: 0</p>
]]></description><pubDate>Tue, 24 Feb 2026 15:39:26 +0000</pubDate><link>https://github.com/matteing/opal</link><dc:creator>sergiomattei</dc:creator><comments>https://news.ycombinator.com/item?id=47138518</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47138518</guid></item><item><title><![CDATA[New comment by sergiomattei in "Claws are now a new layer on top of LLM agents"]]></title><description><![CDATA[
<p>No shade, I think it looks cool and will likely use it, but next time maybe disclose that you’re the founder?</p>
]]></description><pubDate>Sat, 21 Feb 2026 12:33:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=47100202</link><dc:creator>sergiomattei</dc:creator><comments>https://news.ycombinator.com/item?id=47100202</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47100202</guid></item><item><title><![CDATA[New comment by sergiomattei in "Show HN: Cmcp – Aggregate all your MCP servers behind 2 tools"]]></title><description><![CDATA[
<p>This looks nice, congrats on the launch. I'm trying this at work on Monday, I suffer from this problem for tons of MCP tools that are MCP only, not CLI, and completely fill my context window.<p>First thoughts: it seems the broader community is moving towards Agent Skills as a "replacement" for MCPs to tackle the context pollution problem.<p>Agent harnesses like Pi don't ship with MCP support as an intentional design choice. MCP servers[0] are being rewritten as pure CLIs in order to support this new scenario.<p>Thoughts on this?<p>[0]: <a href="https://github.com/microsoft/playwright-cli" rel="nofollow">https://github.com/microsoft/playwright-cli</a></p>
]]></description><pubDate>Sat, 21 Feb 2026 11:05:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=47099624</link><dc:creator>sergiomattei</dc:creator><comments>https://news.ycombinator.com/item?id=47099624</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47099624</guid></item><item><title><![CDATA[Elixir's Original Readme (2011)]]></title><description><![CDATA[
<p>Article URL: <a href="https://github.com/elixir-lang/elixir/tree/ae3bdb72eb5a3d3bc80b4335a47579b533b0537b">https://github.com/elixir-lang/elixir/tree/ae3bdb72eb5a3d3bc80b4335a47579b533b0537b</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47099585">https://news.ycombinator.com/item?id=47099585</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Sat, 21 Feb 2026 11:01:10 +0000</pubDate><link>https://github.com/elixir-lang/elixir/tree/ae3bdb72eb5a3d3bc80b4335a47579b533b0537b</link><dc:creator>sergiomattei</dc:creator><comments>https://news.ycombinator.com/item?id=47099585</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47099585</guid></item><item><title><![CDATA[New comment by sergiomattei in "Large Language Model Reasoning Failures"]]></title><description><![CDATA[
<p>Papers like these are much needed bucket of ice water. We antropomorphize these systems too much.<p>Skimming through conclusions and results, the authors conclude that LLMs exhibit failures across many axes we'd find to be demonstrative of AGI. Moral reasoning, simple things like counting that a toddler can do, etc. They're just <i>not human</i> and you can reasonably hypothesize most of these failures stem from their nature as next-token predictors that happen to usually do what you want.<p>So. If you've got OpenClaw running and thinking you've got Jarvis from Iron Man, this is probably a good read to ground yourself.<p>Note there's a GitHub repo compiling these failures from the authors: <a href="https://github.com/Peiyang-Song/Awesome-LLM-Reasoning-Failures" rel="nofollow">https://github.com/Peiyang-Song/Awesome-LLM-Reasoning-Failur...</a></p>
]]></description><pubDate>Sat, 21 Feb 2026 10:50:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=47099504</link><dc:creator>sergiomattei</dc:creator><comments>https://news.ycombinator.com/item?id=47099504</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47099504</guid></item><item><title><![CDATA[New comment by sergiomattei in "Cord: Coordinating Trees of AI Agents"]]></title><description><![CDATA[
<p>My small agent harness[0] does this as well.<p>The tasks tool is designed to validate a DAG as input, whose non-blocked tasks become cheap parallel subagent spawns using Erlang/OTP.<p>It works quite well. The only problem I’ve faced is getting it to break down tasks using the tool consistently. I guess it might be a matter of experimenting further with the system prompt.<p>[1]: <a href="https://github.com/matteing/opal" rel="nofollow">https://github.com/matteing/opal</a></p>
]]></description><pubDate>Sat, 21 Feb 2026 05:21:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=47097748</link><dc:creator>sergiomattei</dc:creator><comments>https://news.ycombinator.com/item?id=47097748</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47097748</guid></item><item><title><![CDATA[New comment by sergiomattei in "Show HN: Micasa – track your house from the terminal"]]></title><description><![CDATA[
<p>This is probably the most beautiful homepage + docs combo I’ve ever seen. The copy is awesome too. It feels human.<p>Great work.</p>
]]></description><pubDate>Thu, 19 Feb 2026 19:43:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=47078184</link><dc:creator>sergiomattei</dc:creator><comments>https://news.ycombinator.com/item?id=47078184</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47078184</guid></item><item><title><![CDATA[New comment by sergiomattei in "AI made coding more enjoyable"]]></title><description><![CDATA[
<p>I don't know. LLMs are great at writing code; but <i>you</i> have to have the right ideas to get decent output.<p>I spend tons of time handholding LLMs--they're not a replacement for thinking. If you give them a closed-loop problem where it's easy to experiment and check for correctness, then sure. But many problems are open-loop where there's no clear benchmark.<p>LLMs are powerful if you have the right ideas. Input = output. Otherwise you get slop that breaks often and barely gets the job done, full of hallucinations and incorrect reasoning. Because they can't think for you.</p>
]]></description><pubDate>Thu, 19 Feb 2026 17:16:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=47076251</link><dc:creator>sergiomattei</dc:creator><comments>https://news.ycombinator.com/item?id=47076251</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47076251</guid></item><item><title><![CDATA[New comment by sergiomattei in "AI made coding more enjoyable"]]></title><description><![CDATA[
<p>Seeing how things are moving, I'm expecting for compute requirements to go down over a longer time horizon, as most technologies do.<p>I'd rather spend my time preparing for this new world now.</p>
]]></description><pubDate>Thu, 19 Feb 2026 17:10:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=47076164</link><dc:creator>sergiomattei</dc:creator><comments>https://news.ycombinator.com/item?id=47076164</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47076164</guid></item><item><title><![CDATA[New comment by sergiomattei in "AI made coding more enjoyable"]]></title><description><![CDATA[
<p>I feel the same way.<p>> That includes code outside of the happy path, like error handling and input validation. But also other typing exercises like processing an entity with 10 different types, where each type must be handled separately. Or propagating one property through the system on 5 different types in multiple layers.<p>With AI, I feel I'm less caught up in the <i>minutia</i> of programming and have more cognitive space for the fun parts: engineering systems, designing interfaces and improving parts of a codebase.<p>I don't mind this new world. I was never too attached to my ability to pump out boilerplate at a rapid pace. What I like is <i>engineering</i> and this new AI world allows me to explore new approaches and connect ideas faster than I've ever been able to before.</p>
]]></description><pubDate>Thu, 19 Feb 2026 16:38:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=47075660</link><dc:creator>sergiomattei</dc:creator><comments>https://news.ycombinator.com/item?id=47075660</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47075660</guid></item><item><title><![CDATA[New comment by sergiomattei in "Patching the Wii News Channel to serve local news (2025)"]]></title><description><![CDATA[
<p>Dude, this is awesome. El Nuevo Dia on the Wii is peak bori brain. :)</p>
]]></description><pubDate>Fri, 16 Jan 2026 22:58:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=46653349</link><dc:creator>sergiomattei</dc:creator><comments>https://news.ycombinator.com/item?id=46653349</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46653349</guid></item><item><title><![CDATA[New comment by sergiomattei in "STFU"]]></title><description><![CDATA[
<p>Real courageous from that guy calling someone a "fat uncle" on a Twitter thread. Could've applied that same energy IRL and told him to tone it down.</p>
]]></description><pubDate>Fri, 16 Jan 2026 22:50:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=46653293</link><dc:creator>sergiomattei</dc:creator><comments>https://news.ycombinator.com/item?id=46653293</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46653293</guid></item><item><title><![CDATA[New comment by sergiomattei in "STFU"]]></title><description><![CDATA[
<p>Seriously, this is as easy as tapping the dude next door and telling him to tone that volume down.<p>Negative social skills on that Twitter thread</p>
]]></description><pubDate>Fri, 16 Jan 2026 22:49:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=46653276</link><dc:creator>sergiomattei</dc:creator><comments>https://news.ycombinator.com/item?id=46653276</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46653276</guid></item><item><title><![CDATA[New comment by sergiomattei in "Redmond, WA, turns off Flock Safety cameras after ICE arrests"]]></title><description><![CDATA[
<p>Thanks for the link.<p>In the interest of saving myself an hour of time uploading a video, I’ll attest that yes—that street view is as “average day on Pike” as it gets.<p>To be clear, there are homeless who walk around the area… and Capitol Hill isn’t exactly the nicest area these days. 3rd and Pike isn’t nice. But Seattle in 2025 isn’t real-life World War Z.<p>Parent commenter should visit sometime.</p>
]]></description><pubDate>Tue, 11 Nov 2025 05:04:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=45884298</link><dc:creator>sergiomattei</dc:creator><comments>https://news.ycombinator.com/item?id=45884298</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45884298</guid></item><item><title><![CDATA[New comment by sergiomattei in "Redmond, WA, turns off Flock Safety cameras after ICE arrests"]]></title><description><![CDATA[
<p>I agree, Chinatown/ID took a turn for the worst unfortunately.</p>
]]></description><pubDate>Tue, 11 Nov 2025 02:11:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=45883365</link><dc:creator>sergiomattei</dc:creator><comments>https://news.ycombinator.com/item?id=45883365</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45883365</guid></item><item><title><![CDATA[New comment by sergiomattei in "Redmond, WA, turns off Flock Safety cameras after ICE arrests"]]></title><description><![CDATA[
<p>I’m so glad you mention “going up Pike towards Capitol Hill” because I live right on the section where Cap Hill & First Hill starts.<p>My lived experience is that I could walk the length of Pike from Bellevue Ave towards the waterfront and see two-three tents at most. Homeless yes, but encampments? “Overrun”? “Tent city”?<p>It’s so easy to make hyperbolic statements and a pain to prove them wrong. I can see how you get away with spouting this nonsense—and people believe it.<p>Let me know if anyone wants a YouTube video or something, I’ll be glad to take a fun evening stroll and prove you wrong.</p>
]]></description><pubDate>Tue, 11 Nov 2025 02:10:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=45883352</link><dc:creator>sergiomattei</dc:creator><comments>https://news.ycombinator.com/item?id=45883352</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45883352</guid></item><item><title><![CDATA[New comment by sergiomattei in "Redmond, WA, turns off Flock Safety cameras after ICE arrests"]]></title><description><![CDATA[
<p>Deflecting is a fun game, but I won’t play it. I’m challenging your hyperbole here—on the other hand, you’re making assumptions about me.<p>Explain to me how “the entire downtown area is just homeless tents”. By all means bring some proof of Pike Place being “overrun with druggies”. Get real.</p>
]]></description><pubDate>Mon, 10 Nov 2025 21:50:48 +0000</pubDate><link>https://news.ycombinator.com/item?id=45881406</link><dc:creator>sergiomattei</dc:creator><comments>https://news.ycombinator.com/item?id=45881406</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45881406</guid></item></channel></rss>