frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

StillHere – A dead man's switch with legally binding delivery contracts

https://stillhere.life
1•alonsovaldivia•27s ago•0 comments

Tests as Institutional Memory

https://trippw.com/blog/tests-as-institutional-memory
1•devTripp•48s ago•0 comments

Claude down.Global coding output just dropped

https://downdetector.tr/durum/claude-ai/
1•bakigul•1m ago•0 comments

UK Car Bingo

https://chrispattle.com/uk-car-bingo
1•pattle•1m ago•0 comments

Fyrox Game Engine 1.0.0

https://fyrox.rs/blog/post/fyrox-game-engine-1-0-0/
1•MarceColl•2m ago•0 comments

2k Most Common Words – App for Family Learning

https://2000-words-app.vercel.app/login
1•vinnetou•2m ago•1 comments

Chronotypes: Definition, Types, & Effect on Sleep

https://www.sleepfoundation.org/how-sleep-works/chronotypes
1•Anon84•3m ago•0 comments

Apple begins age checks in the UK with latest iOS update

https://arstechnica.com/tech-policy/2026/03/apple-begins-age-checks-in-the-uk-with-latest-ios-upd...
3•azalemeth•4m ago•0 comments

What Is an AI Product Engineer?

https://dwyer.co.za/static/what-is-an-ai-product-engineer.html
1•ritzaco•5m ago•0 comments

VR Is Not Dead

https://yadin.com/notes/vr-abides/
2•dryadin•5m ago•0 comments

Show HN: Anitag2vec – Tag set embedding for ranking recommendations

https://github.com/michael-0acf4/anitag2vec
1•michael-0acf4•5m ago•0 comments

Blitzy Scores a Record 66.5% on SWE-Bench Pro

https://blitzy.com/blog/blitzy-scores-a-record-66-5-on-swe-bench-pro
3•stared•6m ago•0 comments

Home Loan Demand Drops 10.5% as Rates Climb

https://www.realtor.com/news/trends/mortgage-applications-apply-for-loan-march-25-2026/
2•geox•6m ago•0 comments

Loop – Bun CLI That Runs Codex and Claude Code in a Loop

https://github.com/axeldelafosse/loop
1•AnhTho_FR•6m ago•0 comments

Claude Is Down Again

3•Venkymatam•6m ago•0 comments

Claude Is Having an Outage

https://status.claude.com/incidents/9rt6y2y4gkh1
4•forks•7m ago•0 comments

'A new world is being born': author Rebecca Solnit on the 'slow revolution' the

https://www.theguardian.com/books/2026/mar/25/rebecca-solnit-slow-revolution-far-right-cannot-tol...
1•hkhn•8m ago•0 comments

Agentic AI Tools Mapped Across 11 Categories

https://www.stackone.com/blog/ai-agent-tools-landscape-2026/
1•Anon84•8m ago•0 comments

Apple Just Lost Me

https://andregarzia.com/2026/03/apple-just-lost-me.html
2•syx•10m ago•0 comments

Show HN: Vectree – Learn complex concepts through AI-generated interactive SVGs

https://vectree.io
1•functional_dev•11m ago•0 comments

Custom themes for any website with one sentence

https://github.com/StyleSwift/StyleSwift
1•zane12580•12m ago•0 comments

Show HN: Cognium – Tree-sitter+taint Tracking SAST for Java,Python,JS,Rust

https://cognium.dev/
1•openmason•13m ago•0 comments

BSD kqueue is a mountain of technical debt

https://ariadne.space/2021/06/05/actually-bsd-kqueue-is-a.html
1•PaulHoule•14m ago•0 comments

Approva. Human approval infrastructure for AI actions. Open Core

https://github.com/lookmanrays/approva
1•guardienaveugle•15m ago•0 comments

ECB ready to hike rates even if expected inflation surge is short-lived

https://www.cnbc.com/2026/03/25/ecb-rate-hikes-inflation-forecasts-christine-lagarde-iran-war.html
2•inaros•18m ago•0 comments

Fiber optic cables reveal a serious problem at the heart of modern farming

https://grist.org/drought/fiber-optic-cables-reveal-a-serious-problem-at-the-heart-of-modern-farm...
3•Brajeshwar•18m ago•0 comments

Apple launches age verification for UK iPhone users

https://www.politico.eu/article/apple-launches-age-verification-for-uk-iphone-users/
3•miohtama•20m ago•0 comments

I ran 3,360 safety tests on GPT-4o, Claude, Grok, DeepSeek, Gemini

https://github.com/aestrad7/llm-break-bench
3•aestrad7•20m ago•3 comments

FCC imposes ban on foreign-made routers, affecting all new models

https://arstechnica.com/tech-policy/2026/03/trump-fcc-prohibits-import-and-sale-of-new-wi-fi-rout...
2•Velocifyer•22m ago•0 comments

Cova – Audit your monitoring stack for blind spots

https://getcova.ai
1•Paulo75•23m ago•1 comments
Open in hackernews

Show HN: FlowScript – Agent memory where contradictions are features

https://github.com/phillipclapham/flowscript
2•phillipclapham•1h ago
There is a shortfall to our current approach to agent memory. Right now, we are just collecting flat facts across a flat memory surface and creating vectorized chains of ambiguity, then wondering why when we ask an agent why it did something the best answer we can get is a probabilistic half-hallucinated half-answer that does not address the actual details of the issue, because it is simply pattern matching to find untyped similarities.

So I built FlowScript.

FlowScript is a typed reasoning graph that your agent builds through tool calls during your everyday work. It is NOT a graph database. What it is is a small set of unique opinionated primitives: things like thoughts, questions, decisions, blockers, and each of those have typed relationships between them. Your agent calls the tools as it works and it builds this typed graph, and then afterwards you can query that structure to get actual deterministic answers using five queries: tensions, blocked, why, whatIf, alternatives.

What does this look like in practice? Here's an agent that has been reasoning about database choices for a few sessions:

  > mem.query.why("node_postgres_decision")

  PostgreSQL chosen
      ← "Need ACID for payment processing"
      ← "Original requirement: handle refunds atomically"
      ← "Stripe webhook failures in staging revealed race condition"

  > mem.query.tensions()

  ><[performance vs cost]
      "Redis: sub-ms reads critical for UX" vs "Redis cluster: $200/mo for 3 nodes"
The why chain traces back to the original constraint and the tension preserves the actual tradeoff being made. These are things no vector store can do, because they are NOT just flat facts, but are relationships and reasoning chains that are being captured in a deterministic way. Meaning you can actually go back and audit the actual reasoning of your agent, how it evolved over time, and see the actual tensions that were being balanced. No more opaque reasoning that is lost as soon as the polished answer is generated. Try that in any other memory system, I'll wait.

Other memory systems, when they come across a tension or a contradiction, for the most part they are just simply deleting that. And that is wrong because that tension is new knowledge. Knowledge that we need to actually keep for auditing and because it tells us about the evolution of the system and its cognition over time. So instead of deleting contradictions, we relate and create named relationships for them. Relationships you can query.

Every decision, every tension, every piece of reasoning is being deterministically captured into an audit trail and hash-encoded. Now, not only do you have a deterministic reasoning chain, but that reasoning chain is auditable. You can go back to any point within the time that you have audit logs for and deterministically review and understand the actual reasoning chain that your model was using. Something that no other system can offer. The EU AI Act is going to require exactly this kind of transparency by August 2026, and as far as I can tell, FlowScript is the first open source agent memory system that is designed to meet that bar.

Try it NOW: Our MCP server in Claude Code or Cursor. Install and check our Get Started guide so you can add one JSON block to your editor config and drop a snippet into your project CLAUDE.md file, then restart. Your AI assistant gets a full set of reasoning tools that actually trace causality.

  pip install flowscript-agents openai
See flowscript.org for full setup instructions: <https://flowscript.org/get-started>

Or grab the TypeScript SDK for programmatic use:

  npm install flowscript-core
There are drop-in adapters for LangGraph, CrewAI, Google ADK, and more Python agent frameworks. MIT licensed. Open source.

Repo: <https://github.com/phillipclapham/flowscript> Docs: <https://flowscript.org> Python SDK: <https://github.com/phillipclapham/flowscript-agents>