frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: NUA an agent that tests for product correctness

https://trynua.dev/
5•Paster335•37m ago•2 comments

Show HN: DepsGuard – One command to harden NPM/pnpm/yarn/bun/uv configs

https://github.com/arnica/depsguard
11•eranation•8h ago•0 comments

Show HN: Textile – A desktop app for weaving together bits of text

https://www.gettextile.app
25•stack_framer•6h ago•12 comments

Show HN: A CSS 3D Engine (no WebGL)

https://github.com/LayoutitStudio/polycss
57•rofko•11h ago•23 comments

Show HN: A free Linux adaptation of NETworkManager by BornToBeRoot

https://github.com/thongor77/nmlinux
19•magetriste•2d ago•3 comments

Show HN: NoSleepAgent – keep your MacBook awake until your agents finish

https://github.com/gergomiklos/nosleepagent
3•garymiklos•2h ago•0 comments

Show HN: Mqtt Broker for 10 Years

https://github.com/skittleson/mqtt_broker_esp
6•skittleson•5h ago•0 comments

Show HN: Going from 1+1=2 to Quantum Mechanics

https://quantum.schols.io/intro
5•chaidhat•3h ago•0 comments

Show HN: Dataroom – a Pi and self-hosted research harness on low-budget GPU

https://github.com/hanxiao/dataroom
4•artex_xh•4h ago•0 comments

Show HN: Knotch – a hub-and-spoke voice agent

https://github.com/akshatvasisht/knotch
3•akshatvasisht•4h ago•1 comments

Show HN: Streambed – Stream Postgres to Iceberg on S3, Supports Postgres Wire

https://github.com/viggy28/streambed
117•vira28•1d ago•32 comments

Show HN: Breathe CLI – Paced resonance breathing in the macOS terminal

https://github.com/marekkowalczyk/breathe-cli
127•marekkowalczyk•2d ago•50 comments

Show HN: 500 years of Joseon court omens as an observability dashboard

https://ajin.im/is/building/omen.ops/
152•poppypetalmask•2d ago•26 comments

Show HN: Atomic Editor – Obsidian-style live preview for CodeMirror 6

https://kenforthewin.github.io/atomic-editor/
67•kenforthewin•1d ago•17 comments

Show HN: A desktop app for manual QA testing and evidence gathering

https://github.com/adriandomc/qastor
6•adriandomc•9h ago•2 comments

Show HN: Valdr - Valkey/Redis in safe Rust, passes >99% of Valkey test suite

https://github.com/ianm199/valdr
5•ianm218•9h ago•4 comments

Show HN: Helios – what plug-in solar could generate for any address in Britain

https://helios.southlondonscientific.com/
124•ruaraidh•2d ago•44 comments

Show HN: Tiny-vLLM – high performance LLM inference engine in C++ and CUDA

https://github.com/jmaczan/tiny-vllm
200•yu3zhou4•3d ago•18 comments

Show HN: Open-source private home security camera system (end-to-end encryption)

https://github.com/secluso/core
131•arrdalan•3d ago•28 comments

Show HN: Open Envelope – an open schema for defining AI agent teams

https://openenvelope.org/docs/schema/
51•ashconway•4d ago•10 comments

Show HN: TV Explorer. Adding advanced UI to free online TV

https://tvexplorer.live
194•dtagames•3d ago•62 comments

Show HN: Zot – Yet another coding agent harness

https://www.zot.sh
106•patriceckhart•3d ago•79 comments

Show HN: Komi-learn – continuous memory and self-improvement for coding agents

https://github.com/kurikomi-labs/komi-learn
24•rainxchzed•1d ago•3 comments

Show HN: Ktx – Open-source executable context layer for data agents

https://github.com/Kaelio/ktx
89•lucamrtl•4d ago•28 comments

Show HN: Continue? Y/N: A 60-second game about AI agent permission fatigue

https://llmgame.scalex.dev
385•Wirbelwind•4d ago•160 comments

Show HN: Ouijit, an open-source task and terminal manager for coding agents

https://ouijit.com/
12•pbjerkeseth•1d ago•2 comments

Show HN: xxUTF – SIMD Unicode Normalization

https://github.com/dzfrias/xxUTF
13•dzfrias•1d ago•1 comments

Show HN: FuguUX – science-backed, AI user testing to identify key web UX issues

https://www.fuguux.com
9•sdas7•1d ago•0 comments

Show HN: Having fun making mini static site apps

https://joeheyming.github.io/
7•joeheyming•20h ago•0 comments

Show HN: Postbase – 100% open source Alternative to Firebase and Supabase [video]

https://www.youtube.com/watch?v=St_kJZXZ_nE
11•harshalone•15h ago•4 comments
Open in hackernews

Show HN: DepsGuard – One command to harden NPM/pnpm/yarn/bun/uv configs

https://github.com/arnica/depsguard
11•eranation•8h ago
I kept seeing every npm/pnpm/yarn/bun/uv supply chain post end with the same advice (set a minimum release age, turn off install scripts), and while I know cooldowns are "controversial", they do work. But even if you convince people that they should set cooldowns, it seems many don't end up following through, not sure why, maybe because it means hand-editing five config files in five formats with five different time units, or perhaps the "it won't happen to me" syndrome (or "I'll do it later, it seems complicated" where it's actually very simple). So I created a tool that checks what you have set and fixes it for you. I looked for an existing one first and couldn't find it. It started as a small weekend project and turned into a small research project on the nuances of cooldowns across package managers. Not a proof of P vs NP, but a small convenience that can save you and your loved ones from the next supply chain attack. I've raised this in a couple of HN threads since (https://news.ycombinator.com/item?id=47878158 and https://news.ycombinator.com/item?id=48156360) but never actually did a Show HN for the tool itself.

If you know how to edit your ~/.npmrc, which settings apply to npm vs pnpm, and which one wants minutes vs days vs seconds, you probably don't need this. But if you vibe code and just want a one click fix (or you have a PhD in CS from Stanford, ex-FAANG, started 3 YC companies, now work at Anthropic, and still just want a one click fix), read on.

DepsGuard is a single Rust binary, no runtime deps, MIT. Run depsguard and it scans your user-level and repo-level configs, shows a table of what is and isn't set, you pick what to change, hit d for the diff, and apply. It writes a timestamped backup first and depsguard restore rolls it back. depsguard scan is read-only if you just want the report.

The settings are the simple ones that work: min-release-age / minimumReleaseAge (npm, pnpm, yarn, bun, and uv all name it differently and use days vs minutes vs seconds, which is half of why doing this by hand is annoying), ignore-scripts, and on newer pnpm block-exotic-subdeps, trust-policy: no-downgrade, and strict-dep-builds. It also handles Renovate and Dependabot cooldowns.

The whole thing is a bet on timing. The malicious @bitwarden/cli 2026.4.0 was up ~19 hours and got 334 installs. axios was pulled in ~3h, ua-parser-js in hours, node-ipc in days. A 7-day gate means your installer never resolves any of those, they're gone before the window even opens. It does nothing for the slow ones (event-stream sat 2+ months), and it's not SCA, it won't scan your existing lockfile for known CVEs, that's a different layer.

Disclosure: I'm a co-founder and CTO at Arnica (a commercial appsec startup) and built this because putting the same recommendations on each blog post felt like yelling at the clouds. It's free and MIT, no account, no telemetry. I'm also not the only one who had the idea (didn't know at the time), cooldowns.dev does the cooldown part across more ecosystems with a shell helper and is worth a look. DepsGuard covers fewer ecosystems but adds the other settings and the diff/backup/restore flow.

If you want to try it: cargo install depsguard, or brew/apt/winget/scoop, all in the README.

https://github.com/arnica/depsguard (full settings table and FAQ at depsguard.com)

Is this an overkill that could have been a shell script? Probably yes (but I wanted windows support, why not).

Did it save someone from a supply chain attack? Also probably yes.

Do I know personally someone that without it wouldn't have bothered changing their settings after repeatedly asking, but eventually did it when I gave them depsguard? Absolutely yes.