Feed aggregator

Au Revoir, Eleventy

Hacker News - Thu, 03/05/2026 - 7:29pm
Categories: Hacker News

Identify Every Visitor

Hacker News - Thu, 03/05/2026 - 6:53pm

Article URL: https://fingerprint.com/

Comments URL: https://news.ycombinator.com/item?id=47268877

Points: 1

# Comments: 0

Categories: Hacker News

Show HN: Console2svg – Convert terminal output to crisp SVGs

Hacker News - Thu, 03/05/2026 - 6:48pm

I built a CLI that turns terminal output into vector SVGs.

It supports truecolor, animated “video” mode, cropping by pixels/chars/patterns, and optional window chrome/backgrounds.

Available via npm, dotnet tool, and standalone binaries.

Repo: https://github.com/arika0093/console2svg

Comments URL: https://news.ycombinator.com/item?id=47268837

Points: 1

# Comments: 0

Categories: Hacker News

Ncruces/wasm2go: A WASM to Go translator

Hacker News - Thu, 03/05/2026 - 6:43pm

Article URL: https://github.com/ncruces/wasm2go

Comments URL: https://news.ycombinator.com/item?id=47268801

Points: 1

# Comments: 0

Categories: Hacker News

Crush, Welcome Home

Hacker News - Thu, 03/05/2026 - 6:41pm
Categories: Hacker News

Is anyone else drowning in terminal tabs running AI coding agents?

Hacker News - Thu, 03/05/2026 - 6:39pm

I work on a 300k line monorepo, just me and my co-founder. At any given moment I have 3-6 CLI agents (Claude Code, Codex, Aider) running simultaneously across git worktrees. The throughput is great. Managing it is not.

Every tool I found was either another agent, an IDE plugin, an abstraction over my CLIs, or doesn't understand worktrees. Conductor is Mac-only and getting buggier. Warp and Ghostty were interesting but not opinionated enough for my worktree-to-PR workflow.

So I built Pane (https://runpane.com). Keyboard-driven desktop app that gives you one interface to monitor and control CLI agents across worktrees. Ships with a command palette, simple shortcuts (ctrl + up or down arrow to switch between each worktree, VS code shortcuts for other basic things). Each worktree gets a run button that auto-generates a script (via Claude Code on first run) to spin up on isolated ports, so I can have every branch hot reloading in its own tab.

Been using it daily since last week. Hard to go back. I fully open sourced it here, so you can ship your own features to Pane, using Pane: https://github.com/Dcouple-Inc/Pane

How are others handling multi-agent workflows?

Comments URL: https://news.ycombinator.com/item?id=47268777

Points: 1

# Comments: 1

Categories: Hacker News

Show HN: NavAgent – CDP-free, token-efficient web automation for AI

Hacker News - Thu, 03/05/2026 - 6:36pm

Hi HN, I built NavAgent, a small MCP server + Chrome extension that lets AI clients drive your real browser session without CDP.

I use Claude Code daily, and I kept wanting it to interact with pages in my own browser, with my existing tabs, cookies, and logins.

Most browser automation approaches I tried for MCP were based on CDP / Playwright. I wanted something lighter and closer to normal browser behavior, so I tried a different design: the extension scans the DOM and sends the model a compact numbered list of actionable elements over a local WebSocket.

So the model sees something like: Search [input] Books [link] ... and can reply with browse_click(2) or browse_type(...)

That keeps scans very small (usually much smaller than screenshots or ARIA-tree dumps) and avoids screenshots, vision models, and huge accessibility payloads.

It currently handles SPAs, shadow DOM, same-origin iframes, and contenteditable editors. Everything runs locally. Setup is just the npm package plus the extension, and you can already try it by sideloading the extension from the repo and running npx navagent-mcp.

It's intentionally narrow: this is not a replacement for Playwright, CI automation or heavy scraping. It's a passive bridge for everyday browser tasks like opening pages, clicking around, and filling forms from an AI assistant.

It's still early, but it's already useful for my daily workflow. Feedback very welcome, especially on edge cases, security concerns and sites where it breaks.

Comments URL: https://news.ycombinator.com/item?id=47268758

Points: 1

# Comments: 0

Categories: Hacker News

Pages