frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Gemini 3

https://blog.google/products/gemini/gemini-3/
703•preek•5h ago•538 comments

Google Antigravity

https://antigravity.google/
392•Fysi•4h ago•459 comments

Pebble, Rebble, and a path forward

https://ericmigi.com/blog/pebble-rebble-and-a-path-forward/
165•phoronixrly•2h ago•68 comments

Cloudflare Global Network experiencing issues

https://www.cloudflarestatus.com/?t=1
2169•imdsm•8h ago•1397 comments

Strix Halo's Memory Subsystem: Tackling iGPU Challenges

https://chipsandcheese.com/p/strix-halos-memory-subsystem-tackling
43•PaulHoule•3h ago•19 comments

Do not put your site behind Cloudflare if you don't need to

https://huijzer.xyz/posts/123/do-not-put-your-site-behind-cloudflare-if-you-dont
391•huijzer•7h ago•286 comments

Show HN: Guts – convert Golang types to TypeScript

https://github.com/coder/guts
44•emyrk•2h ago•8 comments

Solving a Million-Step LLM Task with Zero Errors

https://arxiv.org/abs/2511.09030
64•Anon84•3h ago•28 comments

How Quake.exe got its TCP/IP stack

https://fabiensanglard.net/quake_chunnel/index.html
402•billiob•11h ago•91 comments

Show HN: RowboatX – open-source Claude Code for everyday automations

https://github.com/rowboatlabs/rowboat
16•segmenta•1h ago•3 comments

Short Little Difficult Books

https://countercraft.substack.com/p/short-little-difficult-books
108•crescit_eundo•5h ago•68 comments

Trying out Gemini 3 Pro with audio transcription and a new pelican benchmark

https://simonwillison.net/2025/Nov/18/gemini-3/
27•nabla9•1h ago•9 comments

Nearly all UK drivers say headlights are too bright

https://www.bbc.com/news/articles/c1j8ewy1p86o
542•YeGoblynQueenne•6h ago•546 comments

NPR to get $36M in settlement to operate US public radio system

https://apnews.com/article/trump-npr-lawsuit-2cc4abfa8cf00fe6f89e387e63eb4a2a
59•geox•1h ago•20 comments

New EU Chat Control Proposal Moves Forward

https://techreport.com/news/new-eu-chat-control-proposal-privacy-experts-see-dangerous-backdoor/
37•ericzawo•57m ago•4 comments

When 1+1+1 Equals 1

https://mathenchant.wordpress.com/2024/12/19/when-111-equals-1/
11•surprisetalk•4d ago•1 comments

Gemini 3 Pro Model Card

https://pixeldrain.com/u/hwgaNKeH
420•Topfi•8h ago•270 comments

The Miracle of Wörgl

https://scf.green/story-of-worgl-and-others/
109•simonebrunozzi•9h ago•60 comments

Experiment: Making TypeScript Immutable-by-Default

https://evanhahn.com/typescript-immutability-experiment/
67•ingve•6h ago•57 comments

A day at Hetzner Online in the Falkenstein data center

https://www.igorslab.de/en/a-day-at-hetzner-online-in-the-falkenstein-data-center-insights-into-s...
129•speckx•3h ago•49 comments

Mathematics and Computation (2019) [pdf]

https://www.math.ias.edu/files/Book-online-Aug0619.pdf
54•nill0•7h ago•13 comments

Looking for Hidden Gems in Scientific Literature

https://elicit.com/blog/literature-based-discovery
18•ravenical•6d ago•2 comments

Beauty in/of mathematics: tessellations and their formulas

https://www.tandfonline.com/doi/full/10.1080/00036811.2025.2510472
21•QueensGambit•5d ago•0 comments

How many video games include a marriage proposal? At least one

https://32bits.substack.com/p/under-the-microscope-ncaa-basketball
315•bbayles•5d ago•76 comments

Ruby 4.0.0 Preview2 Released

https://www.ruby-lang.org/en/news/2025/11/17/ruby-4-0-0-preview2-released/
173•pansa2•6h ago•63 comments

I've Wanted to Play That 'Killer Shark' Arcade Game Briefly Seen in 'Jaws'

https://www.remindmagazine.com/article/15694/jaws-arcade-video-game-killer-shark-atari-sega-elect...
36•speckx•4d ago•17 comments

A squeaky nail, or the wheel that sticks out

https://prashanth.world/squeaky-nail/
10•mangoman•1w ago•9 comments

GoSign Desktop RCE flaws affecting users in Italy

https://www.ush.it/2025/11/14/multiple-vulnerabilities-gosign-desktop-remote-code-execution/
48•ascii•7h ago•21 comments

Langfuse (YC W23) Hiring OSS Support Engineers in Berlin and SF

https://jobs.ashbyhq.com/langfuse/5ff18d4d-9066-4c67-8ecc-ffc0e295fee6
1•clemo_ra•13h ago

The surprising benefits of giving up

https://nautil.us/the-surprising-benefits-of-giving-up-1248362/
192•jnord•15h ago•147 comments
Open in hackernews

Show HN: RowboatX – open-source Claude Code for everyday automations

https://github.com/rowboatlabs/rowboat
16•segmenta•1h ago
Claude Code is great, but it’s focused on coding. The missing piece is a native way to build and run custom background agents for non-code tasks. We built RowboatX as a CLI tool modeled after Claude Code that lets you do that. It uses the file system and unix tools to create and monitor background agents for everyday tasks, connect them to any MCP server for tools, and reason over their outputs.

Because RowboatX runs locally with shell access, the agents can install tools, execute code, and automate anything you could do in a terminal with your explicit permission. It works with any compatible LLM, including open-source ones.

Our repo is https://github.com/rowboatlabs/rowboat, and there’s a demo video here: https://youtu.be/cyPBinQzicY

For example, you can connect RowboatX to the ElevenLabs MCP server and create a background workflow that produces a NotebookLM-style podcast every day from recent AI-agent papers on arXiv. Or you can connect it to Google Calendar and Exa Search to research meeting attendees and generate briefs before each event.

You can try these with: `npx @rowboatlabs/rowboatx`

We combined three simple ideas:

1. File system as state: Each agent’s instruction, memory, logs, and data are just files on disk, grepable, diffable, and local. For instance, you can just run: grep -rl '"agent":"<agent-name>"' ~/.rowboat/runs to list every run for a particular workflow.

2. The supervisor agent: A Claude Code style agent that can create and run background agents. It predominantly uses Unix commands to monitor, update, and schedule agents. LLMs handle Unix tools better than backend APIs [1][2], so we leaned into that. It can also probe any MCP server and attach the tools to the agents.

3. Human-in-the-loop: Each background agent can emit a human_request message when needed (e.g. drafting a tricky email or installing a tool) that pauses execution and waits for input before continuing. The supervisor coordinates this.

I started my career over a decade ago building spam detection models at Twitter, spending a lot of my time in the terminal with Unix commands for data analysis [0] and Vowpal Wabbit for modeling. When Claude Code came along, it felt familiar and amazing to work with. But trying to use it beyond code always felt a bit forced. We built RowboatX to bring that same workflow to everyday tasks. It is Apache-2.0 licensed and easily extendable.

While there are many agent builders, running on the user's terminal enables unique use cases like computer and browser automation that cloud-based tools can't match. This power requires careful safety design. We implemented command-level allow/deny lists, with containerization coming next. We’ve tried to design for safety from day one, but we’d love to hear the community’s perspective on what additional safeguards or approaches you’d consider important here.

We’re excited to share RowboatX with everyone here. We’d love to hear your thoughts and welcome contributions!

—

[0] https://web.stanford.edu/class/cs124/kwc-unix-for-poets.pdf [1] https://arxiv.org/pdf/2405.06807 [2] https://arxiv.org/pdf/2501.10132

Comments

jckahn•47m ago
Can this use local LLMs?
segmenta•46m ago
Yes - you can use local LLMs through LiteLLM and Ollama. Would you like us to support anything else?
thedangler•6m ago
LM Studio?