frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

New hard science fiction novel

1•dufbugderopa•1m ago•0 comments

Claude Code's System Prompt

https://www.claudecodecamp.com/p/inside-claude-code-s-system-prompt
2•aray07•4m ago•0 comments

Show HN: Local Document Parsing for Agents

https://www.llamaindex.ai/blog/liteparse-local-document-parsing-for-ai-agents
3•cheesyFish•5m ago•0 comments

Why aren't AI productivity gains higher?

https://newsletter.getdx.com/p/why-arent-ai-productivity-gains-higher
2•romanhn•8m ago•0 comments

The Long Farewell to Mark Zuckerberg's Metaverse

https://www.nytimes.com/2026/03/19/technology/mark-zuckerbergs-metaverse-vr-horizon-worlds.html
4•SLHamlet•8m ago•0 comments

Microsoft Seeks More Coherence in AI Efforts with Copilot Reorganization

https://www.wsj.com/tech/ai/microsoft-seeks-more-coherence-in-ai-efforts-with-copilot-reorganizat...
1•gmays•9m ago•0 comments

I built a direct-to-buyer store for industrial floor scrubbers and pallet jacks

https://sunmaxus.com/
1•Cleaninguy•9m ago•1 comments

Show HN: Oku – One tab to filter out noise from feeds and content sources

https://oku.io
2•oan•9m ago•0 comments

UK's Ofcom has today fined 4chan £450k for not having age checks in place

https://www.ofcom.org.uk/online-safety/illegal-and-harmful-content/4chan-fined-450000-for-not-pro...
3•longislandguido•10m ago•1 comments

Search for Golf Shots From The Masters 1968-2025

https://www.masters.com/en_US/vault/index.html
1•kyleblarson•10m ago•0 comments

An update on Steam / GOG changes for OpenTTD

https://www.openttd.org/news/2026/03/19/steam-changes-update
2•jandeboevrie•10m ago•0 comments

There Is No Firewall for English

https://openguard.sh/blog/english-firewall/
2•everlier•11m ago•0 comments

Three Thoughts on Dark Code

https://blog.waleson.com/2026/03/three-thoughts-on-dark-code.html
3•jtwaleson•13m ago•0 comments

I Can't Stop Running Claude Code Sessions

https://www.claudecodecamp.com/p/i-take-my-laptop-to-the-gym-so-claude-doesn-t-have-downtime
2•aray07•14m ago•0 comments

Composer 2 is now available in Cursor

https://twitter.com/cursor_ai/status/2034668943676244133
6•frankfrank13•15m ago•0 comments

Rowan County Chair Engages with Citizens Against AI DC Project

https://www.salisburypost.com/2026/03/19/rowan-county-chair-edds-engages-with-citizens-against-da...
1•gz5•16m ago•1 comments

Why I Used a Broken Laptop Instead of Buying a Mac Mini

https://medium.com/seeds-for-the-future/how-a-broken-laptop-saved-me-from-buying-a-mac-mini-fa169...
1•hungryclaw•18m ago•0 comments

How to Not Pay Your Taxes

https://taylor.town/succession-000
2•surprisetalk•21m ago•0 comments

Android: Balancing Openness and Choice with Safety

https://android-developers.googleblog.com/2026/03/android-developer-verification.html
3•0xedb•21m ago•0 comments

Offload: Speed up the agent loop by running tests remotely

https://imbue.com/product/offload/
5•nvader•22m ago•2 comments

Arizona charges Kalshi, alleging illegal gambling with election bets

https://www.theguardian.com/business/2026/mar/17/kalshi-arizona-gambling-election-bets
2•gmays•22m ago•0 comments

iOS Exploit Chain Adopted by Multiple Threat Actors

https://cloud.google.com/blog/topics/threat-intelligence/darksword-ios-exploit-chain
2•blacktulip•23m ago•0 comments

Show HN: Draft0 – Watch autonomous AI agents debate truth, no humans

https://humans.draft0.io
1•vignesh865•23m ago•0 comments

COBE: The 5KB WebGL globe

https://cobe.vercel.app/
2•bpierre•23m ago•0 comments

Mnemos – Open-source memory layer with typed conflict resolution for AI agents

https://github.com/Sohamp2809/mnemos
1•Soham2809•24m ago•0 comments

Show HN: BamBuddy – a self-hosted print archive for Bambu Lab 3D printers

https://bambuddy.cool
2•maziggy•24m ago•0 comments

Visitran: Agentic Pythonic data transformation platform(AGPL)

https://github.com/Zipstack/visitran
4•constantinum•25m ago•0 comments

Apple Is Way Behind in AI–and Still Making a Fortune from It

https://www.wsj.com/tech/ai/apple-ai-subscriptions-strategy-7ce4ba7f
2•laurex•25m ago•1 comments

Introducing Composer 2

https://cursor.com/blog/composer-2#composor-2
3•rvz•27m ago•0 comments

Nvidia DLSS Drama

https://tapestry.news/tech/nvidia-dlss/
2•sygona•28m ago•1 comments
Open in hackernews

Show HN: Orc – Release the horde. Multi-agent orchestration in pure bash

https://github.com/spencermarx/orc
2•mrxdev•1h ago
Anyone running 3+ agents in parallel has hit the same wall: the agents are fine, the coordination is the problem. Merge conflicts. Duplicated work. No review gate. Token burn on orchestration overhead.

Orc is a multi-project orchestrator that tries to be as lightweight as possible while still being useful. Describe the work. It decomposes, spawns engineers in isolated git worktrees, reviews everything before merge, and delivers clean goal branches. Runtime is bash, tmux, and git. State is three files.

It's opinionated about structure but stays out of your way. The review loop is mandatory, but the review process is yours: swap in your own command, point it at a multi-agent review tool, or just describe your review standards in plain English in a TOML field. Branch naming, delivery strategy, agent personas, same deal. Most of the configuration is "tell it what you want in natural language."

Huge respect to Gas Town for proving this category matters. Orc asked "what's the minimum viable version of this?"

Claude Code, OpenCode, Codex, or bring your own. YOLO mode for the reckless. (It still escalates on merge conflicts. We're not animals lol )

https://github.com/spencermarx/orc

Comments

AgentNode•1h ago
The worktree isolation + tmux orchestration is a nice combo.

I do wonder how far this scales once you hit non-deterministic tool behavior though. In a lot of agent setups the hard part isn’t parallelism, it’s knowing whether a tool actually did what it claimed.

A review loop helps, but if the reviewer is also an LLM you can end up with two layers of probabilistic validation.

Have you experimented with any deterministic verification (tests, schema checks, etc.) inside the loop?

mrxdev•1h ago
Great take. As it happens, I'm working with a number of other engineers on a solution that solves for this. However to dispel any false hope, static analysis + agentic development can only go so far. It's the holistic combo of these tools plus Agentic AI as both an implementation AND a feedback mechanism that unlock higher quality.

If you're looking to see what that feedback mechanism might look like in action, you might like checking out one of the other projects I've worked on which pre-dates Orc: https://github.com/spencermarx/open-code-review

Love where your head is at though! DEFINITELY an important problem we've got to solve here.

AgentNode•1h ago
I like that framing. I agree the ceiling for static analysis is limited, especially once tools start interacting with real systems.

What I am most interested in is the gap between "the agent completed the task" and "the system can actually prove the task was completed correctly." That is where a lot of multi agent setups still feel fragile to me.

LLM review definitely helps, but I think it gets much stronger when it is paired with deterministic checks in the loop, even simple ones like executable smoke tests, schema validation, contract checks or replayable fixtures. Otherwise you can end up with persuasive agreement rather than real verification.