frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Salt of the Earth: Underground Salt Caverns Just Might Power Our Future

https://eos.org/features/salt-of-the-earth-vast-underground-salt-caverns-are-preserving-our-histo...
1•jofer•1m ago•0 comments

Show HN: Open-sourced an email QA lib 8 checks across 12 clients in 1 audit call

https://github.com/emailens/engine
1•tikkatenders•1m ago•0 comments

Low-Dose Lithium for Mild Cognitive Impairment: Pilot Randomized Clinical Trial

https://jamanetwork.com/journals/jamaneurology/fullarticle/2845746
1•bookofjoe•2m ago•0 comments

Show HN: AfterLive – AI digital legacy that lets loved ones hear from you

https://afterlive.ai
1•crawde•3m ago•0 comments

I Used Claude to File My Taxes for Free

https://kachess.dev/taxes/ai/personal-finance/2026/02/27/breaking-up-with-turbotax.html
1•gdudeman•3m ago•0 comments

Israel bombs council choosing Iran's next supreme leader, official says

https://www.axios.com/2026/03/03/iran-supreme-leader-council-israel-strike
1•spzx•4m ago•0 comments

Software development now costs less than than the wage of a minimum wage worker

https://ghuntley.com/real/
1•herbertl•5m ago•0 comments

A [Firefox, Chromium] extension that converts Microsoft to Microslop

https://addons.mozilla.org/en-US/android/addon/microslop/
2•gaius_baltar•5m ago•0 comments

British Rail settlement plan barcode specs

https://magicalcodewit.ch/rsp-specs/
1•fanf2•5m ago•0 comments

Completing the formal proof of higher-dimensional sphere packing

https://www.math.inc/sphere-packing
1•carnevalem•6m ago•0 comments

Show HN: Verifiable Interaction Records for Agents

https://github.com/peacprotocol/peac
1•jithinraj•8m ago•0 comments

Ohio EPA weighs allowing data centers to dump wastewater into rivers

https://www.nbc4i.com/news/local-news/columbus/ohio-epa-weighs-allowing-data-centers-to-release-w...
1•randycupertino•9m ago•1 comments

What if LLM uptime was a macroeconomic indicator?

https://lab.sideband.pub/status/
1•shawnyeager•9m ago•0 comments

Watch Out Bluetooth Analysis of the Coros Pace 3 (2025)

https://blog.syss.com/posts/bluetooth-analysis-coros-pace-3/
1•lqueenan•9m ago•0 comments

Risk, in Perspective

https://faingezicht.com/articles/2026/03/02/risk-in-perspective/
1•avyfain•10m ago•0 comments

No mentor? Learn from a 16th century French nobleman

https://www.magicreader.com/montaigne
1•mzelling•10m ago•0 comments

Show HN: I built a way to prove your software kept its promises

https://github.com/nobulexdev/nobulex
1•arian_•11m ago•0 comments

How do I market myself as a freelance Backend/Infrastructure engineer?

1•__0x01•11m ago•0 comments

The Limits of Today's AI Systems

2•Yinfan•11m ago•0 comments

Accept-Language Redirects Could Be Blocking Search Engines and AI Crawlers

https://merj.com/blog/your-accept-language-redirects-could-be-blocking-search-engines-and-ai-craw...
1•giacomoz•11m ago•0 comments

Is Unbound AI Video the most uncensored AI model in 2026?

https://unbound.video
1•gabrieln•11m ago•1 comments

Drizzle Joins PlanetScale

https://planetscale.com/blog/drizzle-joins-planetscale
3•alexblokh•12m ago•1 comments

Political market entropy in Rome. An analysis of different electoral cycles

https://www.frontiersin.org/journals/political-science/articles/10.3389/fpos.2026.1744381/full
1•PaulHoule•12m ago•0 comments

Show HN: Readme badge to quickly find related open source repos

https://relatedrepos.com/badge
1•plurch•12m ago•0 comments

Apollo sued for allegedly concealing Epstein business ties from shareholders

https://www.reuters.com/sustainability/boards-policy-regulation/apollo-leon-black-sued-allegedly-...
1•petethomas•13m ago•0 comments

Free Software Needs Free Tools: Making Your Project Open

https://cfp.cfgmgmtcamp.org/ghent2026/talk/LHWU8T/
2•Tomte•14m ago•1 comments

Show HN: A Write Barrier That Blocks Structural Collapse in LLM Reasoning

1•persistentVlad•14m ago•1 comments

Show HN: Exodus – we tracked 240 moves across companies to map the AI talent war

https://7min.ai/exodus/
1•fabioperez•15m ago•0 comments

Designing Search Experiences

1•CShorten•15m ago•0 comments

Deploy from GitHub Actions without Storing Secrets (Using OIDC)

https://www.even.li/posts/2026-03-03-deploy-github-actions-without-storing-secrets-using-oidc/
1•n_e•17m ago•0 comments
Open in hackernews

Show HN: Axe – A CLI for running single-purpose LLM agents

https://github.com/jrswab/axe
1•jrswab•1h ago

Comments

jrswab•57m ago
Hi everyone, I built Axe because I got tired of the "everything is a chatbot" pattern in AI tooling.

Axe treats LLM agents like Unix programs. Each agent is a TOML config with a focused job such as a code reviewer, a log analyzer, or a commit message writer. You run them from the CLI, pipe data in, get results out. Chain them together. Trigger them from cron, git hooks, CI.

Whatever you already use.

Some things that make it different:

- No framework lock-in: it's a single binary with two dependencies

- Stdin piping: `git diff | axe run reviewer` just works

- Sub-agent delegation: agents can call other agents via tool use

- Persistent memory: agents remember across runs without you managing state (if you need)

- Path-sandboxed tools: file ops are locked to the agent's working directory

Written in Go because I wanted fast cold starts and easy distribution. No daemon or GUI.

This is early stage to solve a need I have. I would love feedback on the agent config format and the skill system.

What's missing? What would make you actually use this?