frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Dreams of making drugs and tissues in space get closer to reality

https://www.science.org/content/article/dreams-making-drugs-and-tissues-space-get-closer-reality
1•geneticdrifts•1m ago•0 comments

Vulnerability Disclosure Policy

https://www.flocksafety.com/legal/vulnerability-disclosure-policy
1•Tomte•1m ago•0 comments

Tinfield 1 is an open weight coding model from Nigeria that beats Opus 4.8

https://twitter.com/Badtheorylabs/status/2102046067990692093
2•gslepak•2m ago•0 comments

2026: The Year Galleries Realised the Need to Flag or Cull Slop Images

https://techrights.org/n/2026/09/21/2026_The_Year_Galleries_Realised_the_Need_to_Flag_or_Cull_Slo...
1•amcclure•4m ago•0 comments

Big AI to humanity: drop dead

https://matthewbutterick.com/chron/drop-dead.html
2•Tomte•4m ago•0 comments

Ten years since the factors (fiction)

https://dreamstation.systems/personal/factors.html
1•robinpie•5m ago•0 comments

The Apocalypse Will Not Be Sexy

https://www.techdirt.com/2026/09/21/the-apocalypse-will-not-be-sexy/
2•beardyw•7m ago•0 comments

Qwen3.8-Flash-Next on a 64 GB M2 Ultra: A 66-Minute Real Work Run

https://b1tank.github.io/writing/my-real-world-qwen38-flash-next-agent-run/
1•b1tank•7m ago•0 comments

Building standards for the next phase of AI

https://openai.com/index/building-standards-next-phase-ai/
1•artninja1988•9m ago•0 comments

Seeing Who Contaminates Linux with Slop (and Also Admits It)

https://techrights.org/n/2026/09/21/Linux_Kernel_Becoming_a_Slopfest_Part_6_Seeing_Who_Contaminat...
1•amcclure•9m ago•0 comments

Skyportal CLI: What happens when an AI agent needs approval

https://pypi.org/project/skyportalai/
1•henrique221•10m ago•0 comments

Show HN: Sommelier, an Excel Addin for your agent

https://sommelier.grokked.it
1•grokkedit•12m ago•0 comments

Seven Deadly Sins of DevX

https://amplitude.com/seven-sins-of-devx
2•ShMcK•13m ago•0 comments

Gobag: Semantic session archival for Claude Code

https://github.com/satmihir/gobag
3•musigma90•17m ago•0 comments

Bernstein's Factorization Method Helped Factor RSA-240 in 2020

https://leetarxiv.substack.com/p/bernsteins-factorization-method-helped
2•theanonymousone•19m ago•0 comments

Petal: Building the First Petabit-Class Transoceanic Subsea Cable

https://engineering.fb.com/2026/09/21/connectivity/petal-petabit-transoceanic-subsea-cable/
1•sbulaev•20m ago•0 comments

OpenAI projections point to a $278B cash burn through 2030

https://www.tomshardware.com/tech-industry/artificial-intelligence/openai-projections-point-to-a-...
2•MC995•21m ago•1 comments

LGBT tolerance slumps in the Netherlands, 22% of boys have LGBT+ positive views

https://www.dutchnews.nl/2026/09/lgbt-tolerance-slumps-in-the-netherlands-as-debate-turns-vicious/
3•alephnerd•21m ago•0 comments

Aura – Open-Source Framework for Detecting Social Engineering in LLMs

https://github.com/kate8382/AURA
2•kate8382•21m ago•0 comments

What would happen if the Yellowstone supervolcano erupted now

https://theconversation.com/end-of-humanity-blow-by-blow-account-of-what-would-happen-if-the-yell...
2•Stratoscope•22m ago•0 comments

How do I talk about using AI without sounding like an AI evangelist?

https://www.askamanager.org/2026/09/how-do-i-talk-about-using-ai-without-sounding-like-an-ai-evan...
1•MattSayar•25m ago•0 comments

Writing Rust code faster than SotA by asking agents to make the code faster

https://minimaxir.com/2026/09/agentic-iteration/
1•minimaxir•25m ago•0 comments

How to address the failures we found along the US border's "virtual wall"

https://www.technologyreview.com/2026/09/21/1144164/border-towers-surveillance-policy-recommendat...
1•joozio•25m ago•0 comments

France to Upgrade Heat Wave Modeling After Record Nuclear Curbs

https://www.bloomberg.com/news/articles/2026-09-21/france-to-upgrade-heat-wave-modeling-after-rec...
1•toomuchtodo•25m ago•1 comments

AI proves Medvedev logic is undecidable

https://arxiv.org/abs/2609.13359
3•carra•26m ago•0 comments

Amazon Blocks Meta's New Muse AI Agent from Shopping on Amazon.com

https://www.forbes.com/sites/jonmarkman/2026/09/21/amazon-blocks-metas-new-muse-ai-agent-from-sho...
18•simianwords•27m ago•0 comments

I don't care about majors, minors, or honors programs. Do you?

https://blog.computationalcomplexity.org/2026/09/i-dont-care-about-majors-minors-or.html
1•mathattack•28m ago•0 comments

Ask HN: How close are we to AI bubble bursting?

2•bg117•28m ago•1 comments

The Questionable Legality of ICE's Palantir Elite System

https://www.techpolicy.press/from-records-to-raids-the-questionable-legality-of-ices-palantir-eli...
3•cdrnsf•28m ago•0 comments

The Influence of AI on Human Decisions in DHS Surveillance

https://www.techpolicy.press/the-influence-of-ai-on-human-decisions-in-dhs-surveillance/
1•cdrnsf•28m ago•0 comments
Open in hackernews

Show HN: Foremerge – Catch Intent Conflicts Between Parallel Coding Agents

https://github.com/naw103/foremerge
12•foremerge•1h ago
At, GPTree, we run several coding agents across our team on one repo using parallel worktrees. Apart from wasted time reviewing and fixing conflicts at PR time, the failures that hurt the most are when multiple plans or tickets cause architecture changes that cannot both be true. Ex. one agent replaces a class while another one is in the process of extending it. Git only notices if the resulting patches happen to touch the same lines and the review only catches it if they are familiar with both tickets.

Foremerge is a local "git like" coordination layer that sits above git (ie. does not interact with or change the way git and worktrees function), Before editing each agent publishes an intent and the scopes it will change, with the operation it plans to complete on each one.

    foremerge intent publish --agent "$A" \
        --summary "Replace PaymentService with StripePaymentService" \
        --scope symbol:PaymentService=replace
    foremerge intent publish --agent "$B" \
        --summary "Add PayPal support to PaymentService" \
        --scope symbol:PaymentService=extend
The publish by the 2nd agent returns a HIGH destructive_vs_additive finding before writing any code. Agents keep their own worktrees and the shared state is one SQLite file in gits common direectory. No hooks, no merge drivers, nothing rewrites your history.

It ships as one Rust binary with a CLI and MCP server with 18 tools and `foremerge setup all` wires it into Claude Code, Codex and Cursor. Because the protocol has nothing provider specific, a Claude agent and a Codex agent coordinate through the same store. Before any work is accepted, Foremerge runs a named check that you configured against the exact git state of the change. An agent that says tests pass is recorded but it dosnt satisfy the acceptance gate without running the check itself.

Detection is deterministic, no judge model reading your code. HIGH conflicts are only asserted for declared operations, ie. matches inferred from prose cap out below high. Claims are advisory leases, not locks so two agents can still hold the same scope without deadlock. The open source version is single matching and so not a distributed consensus.

We have tested this up to 98 parallel agents all working on the same repo with zero conflicts (was supposed to be 100 but 2 agents failed to run due to resource limitations)

I replayed 76 intents on my own agents from a build last week in the order they happened. The sample had exactly 1 conflict (which was flagged) and the review found a blind spot where one agent claimed scope by class name and the other claimed it by an internal method. We are working on fixing that for the next release.

Setup is a 30s install by pasting the quickstart instructions from the readme.md into your agent or manually: `curl -fsSL https://foremerge.com/install.sh | sh` or `cargo install --locked foremerge`, then `foremerge init && foremerge setup all` in a repo. Apache-2.0.

The feedback I want most is which conflicts between your agents plans would you actually want flagged and which would you tollerate as noise?

Repo here: https://github.com/naw103/foremerge Website: https://foremerge.com

More information on the problems this solves: https://foremerge.com/blog/