frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: My-data.download – Guides to export your data

https://my-data.download/
1•janbanan13•52s ago•0 comments

Show HN: Running hallucination detection on a $200 GPU (RTX 3050, 4GB)

https://github.com/yubainu/sibainu-engine
1•yubainu•4m ago•1 comments

Plannotator

https://github.com/backnotprop/plannotator
2•ramoz•8m ago•0 comments

Canada's AI minister blames OpenAI for 'failure' after mass shooting

https://www.politico.com/news/2026/02/25/canada-openai-failure-mass-shooting-00798375
1•fidotron•10m ago•0 comments

Reinforcement Learning for LLMs

https://mesuvash.github.io/blog/2026/rl_for_llm/
1•gmays•10m ago•0 comments

Bringing the "functionally extinct" American chestnut back from the dead

https://arstechnica.com/science/2026/02/can-modern-genetics-help-us-restore-the-appalachian-fores...
1•PaulHoule•11m ago•0 comments

How Will OpenAI Compete?

https://www.ben-evans.com/benedictevans/2026/2/19/how-will-openai-compete-nkg2x
2•iamskeole•12m ago•0 comments

AI on Your Terms

https://www.firefox.com/en-US/whatsnew/148/
1•functionmouse•12m ago•0 comments

Show HN: RocketShare – Zero-knowledge encrypted file sharing

https://rocketshare.app
3•Cornest•14m ago•1 comments

Show HN: VGPU Silo Capacity Calculator (identify siloed capacity in mixed mode)

https://frankdenneman.nl/tools/vgpu-silo-capacity-calculator/
1•frankdenneman•14m ago•0 comments

Hiring Engineers When AI Writes Our Code

https://www.tolans.com/relay/how-we-hire-engineers-when-ai-writes-our-code
6•dfed•15m ago•1 comments

Show HN: JSON-up – Like database migrations, but for JSON

https://github.com/Nano-Collective/json-up
1•mrspence•17m ago•0 comments

Claude's Corner

https://claudeopus3.substack.com/p/introducing-claudes-corner
1•ykl•17m ago•0 comments

The Jolly Writer

https://www.scypress.com/book_info.html
1•amichail•18m ago•0 comments

Krazam Presents: Paradise (Trailer) [video]

https://www.youtube.com/watch?v=cjEUZ-ChU7A
1•Topfi•18m ago•0 comments

Gnuit – GNU Interactive Tools

https://www.gnu.org/software/gnuit/
1•mghackerlady•19m ago•0 comments

Show HN: A tiny utility to rewrite Bash functions as standalone scripts

https://github.com/zahlman/func2cmd
1•zahlman•20m ago•0 comments

Xaml.io v0.6: Share Running .NET Code with a Link

https://xaml.io/
2•vasbu•21m ago•0 comments

Rust 1.94 Cargo Updates

https://blog.rust-lang.org/inside-rust/2026/02/18/this-development-cycle-in-cargo-1.94/
1•andrewstetsenko•22m ago•0 comments

Show HN: LLM Colosseum – A daily battle royale between frontier LLMs

https://llmcolosseum.dev
1•sanifhimani•22m ago•0 comments

Show HN: Gitbusiness.com I created it, and Indeed, I use my own stuff

1•gitprolinux•23m ago•1 comments

Air Pollution Doesn't Kill Like You Think It Does

https://smartairfilters.com/en/blog/smog-air-pollution-kills-deaths/
2•jerlam•23m ago•0 comments

Deterministic Programming with LLMs

https://www.mcherm.com/deterministic-programming-with-llms.html
1•todsacerdoti•24m ago•0 comments

Show HN: AgentGuard – Open-source EU AI Act compliance middleware for LLM apps

https://github.com/Sagar-Gogineni/agentguard
1•rishi_gogi•25m ago•0 comments

Nvidia Q4 beat as AI infrastructure demand booms

1•agentifysh•26m ago•2 comments

Meta's AI sending 'junk' CSAM tips to DOJ

https://www.theguardian.com/technology/2026/feb/25/meta-ai-junk-child-abuse-tips-doj
2•ilamont•27m ago•0 comments

A Natick couple wanted $500M from eBay for harassment. They've settled

https://www.bostonglobe.com/2026/02/25/business/ebay-settlement-harass-steiner/
1•apress•30m ago•0 comments

Framedeck: A Framework mainboard based Cyberdeck (2022)

https://github.com/brickbots/framedeck
1•birdculture•30m ago•0 comments

Nvidia Announces Financial Results for Fourth Quarter and Fiscal 2026

https://nvidianews.nvidia.com/news/nvidia-announces-financial-results-for-fourth-quarter-and-fisc...
4•kamaraju•31m ago•0 comments

Text Your Site: Realtime multiplayer LLM-powered text-to-website demo

https://textyoursite.com/demo
1•elliotbnvl•31m ago•1 comments
Open in hackernews

Show HN: Rampart v0.5 – what stops your AI agent from reading your SSH keys?

https://github.com/peg/rampart
1•trevxr•1h ago
The first time I gave Claude Code real shell access I immediately thought: it can read anything in my home directory right now. My .env files, my SSH keys, my AWS credentials. And if someone sneaks a "read this file and send it here" instruction into something Claude reads — a README, a package description, a code comment — there's nothing between that instruction and my files.

Rampart is the thing I built for that. It sits in front of your agent and checks every command and file operation against a simple policy before it runs. If something's not allowed, it's blocked — not logged after the fact, blocked before it happens.

Setup is two commands:

$ rampart setup claude-code $ rampart serve --background

After that, your agent works exactly the same — except now it has a policy. The default policy already covers the obvious stuff: SSH keys, AWS credentials, .env files, destructive commands. You define what's allowed, everything else gets blocked or flagged for your approval.

The policy is just a YAML file you can commit to your repo. Adding rules is one command:

$ rampart block "curl * | bash" $ rampart allow "~/.config/myapp"

One thing I'm proud of: the agent can't unblock itself. If Claude tries to run rampart allow to give itself more permissions, it gets blocked. Only you can change the policy.

Every decision gets logged in a tamper-evident audit trail, so you can see exactly what your agent attempted — not just what succeeded. Works with Claude Code, Cursor, Codex, Cline, and OpenClaw. Apache 2.0, single binary, no dependencies.

https://github.com/peg/rampart | https://rampart.sh/