Gemini 3 Pro Preview Live in AI Studio
aistudio.google.com
Pebble, Rebble, and a Path Forward
ericmigi.com
Cloudflare Global Network experiencing issues
cloudflarestatus.com
Solving a Million-Step LLM Task with Zero Errors
arxiv.org
Strix Halo's Memory Subsystem: Tackling iGPU Challenges
chipsandcheese.com
How Quake.exe got its TCP/IP stack
fabiensanglard.net
Show HN: Guts – convert Golang types to TypeScript
github.com
Short Little Difficult Books
countercraft.substack.com
Show HN: RowboatX – open-source Claude Code for everyday automations
github.com
Trying out Gemini 3 Pro with audio transcription and a new pelican benchmark
simonwillison.net
When 1+1+1 Equals 1
mathenchant.wordpress.com
Nearly all UK drivers say headlights are too bright
bbc.com
Experiment: Making TypeScript Immutable-by-Default
evanhahn.com
NPR to get $36M in settlement to operate US public radio system
apnews.com
Looking for Hidden Gems in Scientific Literature
elicit.com
A Day at Hetzner Online in the Falkenstein Data Center
igorslab.de
Mathematics and Computation (2019) [pdf]
math.ias.edu
Google boss says AI investment boom has 'elements of irrationality'
bbc.com
New EU Chat Control Proposal Moves Forward
techreport.com
Show HN: Tokenflood – simulate arbitrary loads on instruction-tuned LLMs
github.com
Do Not Put Your Site Behind Cloudflare If You Don't Need To
huijzer.xyz
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