frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

I open-sourced a small library for drawing SVGs progressively

https://www.npmjs.com/package/@penwell/draw-on
1•Pratiksingh067•2m ago•0 comments

I run a production AI app for €60 a month. Here is the actual bill.

https://tailstory-app.com/en/blog/what-production-ai-actually-costs
1•Mohsentr•3m ago•0 comments

Show HN: WebMCP Registry of Websites That Agents Can Use

https://www.wmcp.ai/
1•jusquan•4m ago•0 comments

Show HN: Groupicorn directory of IOP group therapy programs

2•cs1996•4m ago•0 comments

Ancient DNA reveals pervasive directional selection across West Eurasia

https://www.nature.com/articles/s41586-026-10358-1
1•gmays•5m ago•0 comments

Code similarity detection using Tree-sitter

https://github.com/dsummersl/treepeat
1•91awebsi•6m ago•1 comments

ES Archive – a new memory system for AI, running natively on Mac

https://github.com/apocryphx/ES-Archive
1•ApocryphX•6m ago•0 comments

Claude Opus 5.5: Intelligence, Performance and Price Analysis

https://artificialanalysis.ai/models/claude-opus-5-5
1•theanonymousone•8m ago•0 comments

Barbara Mazzolai Wants to Build a New Field of Robotics

https://spectrum.ieee.org/sustainability-robotics-barbara-mazzolai
1•SamuraiLion•8m ago•0 comments

Siri AI Settlement Website Now Live

https://www.macrumors.com/2026/09/20/siri-ai-settlement-website-now-live/
1•JumpCrisscross•8m ago•0 comments

Xeno-Interpretability: Investigating the Alien Minds of LLMs

https://arxiv.org/abs/2609.20408
1•potent_latent•9m ago•0 comments

Aging may be a program, not a breakdown

https://www.quantamagazine.org/why-aging-may-be-a-program-not-a-breakdown-20260814/
7•elo2000•11m ago•0 comments

We Rebuilt Jev's API on an Open Model and Used It to Play Doom

https://blocks.ai/blog/jev-open-model-doom
2•stephenblum•11m ago•1 comments

How do you best protect against copycats?

1•thereisnotry•12m ago•0 comments

Tables and Strings in COBOL - Big Data like it's 1985

https://www.datagubbe.se/cobtab/
1•rbanffy•12m ago•0 comments

Show HN: graf (1000x faster graphify in Rust)

https://github.com/ctxrs/graf
1•ripped_britches•13m ago•0 comments

GameStop shares up 30% since earnings; CEO, other board members disclose buys

https://finance.yahoo.com/markets/article/gamestop-stock-jumps-as-ceo-ryan-cohen-buys-26-million-...
1•frmersdog•13m ago•0 comments

Armenia on track to become one of leading hubs for US AI infrastructure

https://armenpress.am/en/article/1261009
1•melicerte•14m ago•1 comments

Apple Developing New Fitness Tracker Aimed at Rivaling Whoop

https://www.bloomberg.com/news/articles/2026-09-22/apple-is-developing-new-fitness-tracker-aimed-...
2•elo2000•14m ago•0 comments

A framework for frontier AI and the dawning of a new age

https://institute.deepmind.com/essays/a-framework-for-frontier-ai-and-the-dawning-of-a-new-age/
2•LyalinDotCom•15m ago•0 comments

Ask HN: Did your side projects ever become something big enough to sustain you?

2•learner_yearner•16m ago•1 comments

18-year-old thought she'd take a gap year. Instead, she joined the S.F. Symphony

https://www.sfchronicle.com/entertainment/classical/article/sf-symphony-starla-breshears-22362042...
1•TMWNN•16m ago•0 comments

OpenRouter Batch API: half-price inference by bundling requests

https://openrouter.ai/blog/announcements/batch-api/
1•porridgeraisin•17m ago•0 comments

'Coding Kids' by Natasha Singer: An Education for the Future That Hasn't Worked

https://www.wsj.com/arts-culture/books/coding-kids-review-an-education-for-the-future-af7fa2a6
1•theanonymousone•18m ago•0 comments

The most difficult daily word game

https://un-scrabbled.com
1•jakespider•18m ago•0 comments

ProudSend – cold outreach drafts that cite the line they came from

https://proudsend.com
1•heypetar•18m ago•0 comments

Show HN: I gave Jev my forum database so he could find the most relevant

https://forumbacklinks.org/demo/setup
1•bigmuzzy•18m ago•0 comments

Go-System-One: Jev-Like Results in Pure Go and SIMD/PTX

https://github.com/rcarmo/go-system-one
1•rcarmo•19m ago•1 comments

Benchmarks are more broken than we could have imagined

https://www.horizonanalyticslabs.com/research/public-benchmark-dataset-audit
3•chillacy•20m ago•1 comments

AI Is Not the End of the World

https://www.everythingisbullshit.blog/p/ai-is-not-the-end-of-the-world
1•swolpers•20m ago•0 comments
Open in hackernews

Show HN: AI·rete·RAG – a Rete rule engine decides, RAG explains why

https://ai-rete-rag.com/
6•ZaharaHussain•44m ago
Hi HN, I built ai·rete·rag because I kept seeing teams put an LLM in charge of decisions that need to be auditable (lending, fraud, clinical triage), then bolt on "guardrails" after the fact.

It runs the two in series instead:

1. A pure-Python Rete engine evaluates YAML rules against your facts. The verdict comes only from here. Same facts, same verdict, every time, with salience-based conflict resolution. 2. RAG retrieves passages from your own policy documents, and an LLM writes a plain-English explanation of the decision that was already made, citing those passages. It can't change the verdict.

A few things that went further than I expected: - Rules are a graph, not flat lists: nested all/any/not, and rules can assert facts that other rules consume (forward chaining). The decision trace shows the causal chain. - Audit mode records every rule evaluated, including the ones that didn't fire, condition by condition, with a snapshot of the rule set for replay. - Rules can steer retrieval (a fired rule narrows which documents get searched), and retrieved text can be turned into facts for the engine. - Non-technical authors can build rules in a visual editor, or paste a policy document and get LLM-drafted rules with citations. Drafts are never saved without review. YAML is still there for engineers.

The landing page has a live demo with no signup (8 demo domains: loan, fraud, clinical, insurance, legal, ops, e-commerce, blockchain). There's also an MCP server, so Claude and other agents can call /decide as a tool: `uvx ai-rete-rag-mcp`.

To be upfront: it's a hosted product with a free tier. The MCP client is open source (MIT, github.com/zaharajabeen13-create/ai-rete-rag-mcp); the engine and platform are not open source right now.

I'd especially like to hear from anyone who has had to explain an automated decision to a regulator or an auditor: what did they actually ask for?