frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Docket – Per-commit evidence records for agent-written code

https://github.com/Dillonsmart/docket
2•dillonsmartdev•3m ago•0 comments

How Modern Fascism Works – End Times Fascism – Naomi Klein and Astra Taylor

https://www.youtube.com/watch?v=aK2nLNiFEAQ
1•abathologist•4m ago•0 comments

The Case for Open-Weight Models and Why We Can't Trust Frontier Labs

https://www.provos.org/p/case-for-open-weight-models/
2•wslh•4m ago•0 comments

SecretGate – Hardened, self-hosted NGL alternative

https://github.com/sasiru-mindaka/Secret-Gate
1•sasiru-mindaka•7m ago•0 comments

Misleading Metaphors and Real Risks

https://aiguide.substack.com/p/misleading-metaphors-and-real-risks
2•lacunary•8m ago•0 comments

What's the smallest agent harness that is still architecturally complete?

https://github.com/earthwalker17/MiniDSH
1•earthwalker17•11m ago•0 comments

AI Tools Accelerates Coding, but Not Overall Software Delivery – GitLab Research

https://www.infoq.com/news/2026/06/ai-coding-outpaces-governance/
1•bucket2015•17m ago•0 comments

Dupster – A fast TUI for finding and removing duplicate files

https://github.com/karimz1/dupster
2•karimz1•17m ago•0 comments

Built a walkable 3D library of 200 public domain books

https://libraryafterdark.space/
2•theaijournalope•19m ago•1 comments

Show HN: MorphMove – a game where pieces change after moving

https://morphmove.com/
2•eropatori•21m ago•0 comments

Install iOS 27 today – there's no reason to wait

https://www.cultofmac.com/news/install-ios-27-today-how-to
3•bookofjoe•21m ago•0 comments

Research Paper: Sex, Politics, and Religion

https://nouswise.com/c/add2545d-a281-46a4-8d5c-3f186b85559b
2•kaven1234•21m ago•0 comments

Blockr – See what your Mac is talking to

https://twoplus11.com/blockr/
2•eustoria•22m ago•0 comments

If You Always Enjoy It, You're Not Pushing It Hard Enough–Benn Stancil

https://www.ssp.sh/blog/benn-stancil-on-deadlines-and-storytelling/
2•theanonymousone•23m ago•0 comments

Unwinding the Great Tech Power Grab

https://rebeccawilliams.info/unwinding-the-great-tech-power-grab/
1•eustoria•23m ago•0 comments

The Human Alliance

https://the-human-alliance.org
3•tcorcos•23m ago•1 comments

Ask HN: What if the step to control AI is to control the internet?

3•sourdecor•23m ago•0 comments

The EU wanted to kill the cookie banner, but then Google called

https://tuta.com/blog/why-eu-member-states-and-google-want-to-keep-cookie-banner
3•eustoria•24m ago•0 comments

Rate Your Agent's Memory

1•luvmakin•24m ago•0 comments

Show HN: USSR Unified Shell Script REPL

https://github.com/notlibrary/USSR
1•notlibrary•25m ago•0 comments

The next-generation framework for embedded applications

https://embassy.dev
1•Bluestein•26m ago•0 comments

Making Startups Powerful

https://www.paulgraham.com/powerful.html
1•aaraujo002•29m ago•0 comments

Show HN: Simpleboot and Easyboot

https://gitlab.com/bztsrc/easyboot
1•skrellm•32m ago•0 comments

Public DNS to evade Cloudflare blocking in Spain

https://github.com/Oihalitz/xdp-dns-evadeproxy
1•akyuu•33m ago•0 comments

Garry Tan wants US open-weight AI labs to 'distill' frontier models, too

https://techcrunch.com/2026/09/11/y-combinators-garry-tan-wants-u-s-open-weight-ai-labs-to-distil...
9•TheJCDenton•36m ago•1 comments

Practical Agentic RAG patterns implemented with LangGraph

https://github.com/ChandulaSenevirathna/Agentic_RAG
4•lokizzz•37m ago•0 comments

Hollywood fears an AI future. China is living it

https://www.latimes.com/business/story/2026-09-10/hollywood-fears-ai-future-china-is-already-livi...
2•ViktorRay•39m ago•0 comments

Crowdsourcing a list of resources on the purpose, value, and nature of math

https://terrytao.wordpress.com/2026/09/12/crowdsourcing-a-list-of-general-resources-on-the-purpos...
1•ColinWright•42m ago•0 comments

How the Netherlands Bent Bureaucracy into Something Beautiful

https://reasonstobecheerful.world/breakthrough-method-netherlands/
1•andsoitis•44m ago•0 comments

Show HN: OSS Modal Alternative

https://github.com/beam-cloud/beta9/
2•llom2600•46m ago•0 comments
Open in hackernews

Universal Intelligence v1.0 is out AI made simple

https://github.com/blueraai/universal-intelligence
1•bluera•1y ago

Comments

bluera•1y ago
Hey HackerNews, for the past few years I've been exploring machine learning, from modeling all sorts of things, to language and vision models, all the way up to the other "consumer" end of the spectrum: using and crafting agentic apps. The learning curve has been steep, and the field moves fast. It's a lot for anyone to absorb.

I thought, having gone through this, can I use what I learned to make it easier for the person that comes next? That's where I am today.

With that in mind, I've started with open sourcing a project aimed at *simplifying and standardizing the usage of models, tools and agents*, so anyone can start coding and deploying cross-platform AI apps on day 1, without any prior AI experience, without learning engines or frameworks, and *on any hardware* (model, quantization, engine, backend all dynamically set by default, optimized for your device). The interface is later customizable, so it grows with you as you learn, up to production readiness.

This is all you need to get started:

=====================================================

from universal_intelligence import Model

model = Model()

result, logs = model.process("Hello, how are you?")

=====================================================

- Both local and cloud-based models are available, with the same simple interface. Can be instantly swapped.

- Similar APIs are made available for tools and agents —all of which are composable, interoperable, and capable of sharing hardware resources to scale at virtually no cost.

- Available in Python or JS/Typescript, usable anywhere (desktop, mobile, web, cloud).

- Can work with your favorite agent framework and MCP tools if you'd like.

Also, no more managing tokens or fetching “['choices'][0]['message']['content']”.

I'd love to hear about your experience and challenges, to think about where to take this next.