frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Operationalizing trust in the age of autonomous agents

https://www.kamiwaza.ai/the-inference-firewall-why-enterprise-ai-demands-relationship-based-acces...
1•mooreds•17s ago•0 comments

Rust Project Perspectives on AI

https://nikomatsakis.github.io/rust-project-perspectives-on-ai/feb27-summary.html
1•tcbrah•27s ago•0 comments

Show HN: PIAF – a Rust EDID parser with deep CEA-861 support and no_std support

1•dracowhitefire•41s ago•0 comments

Open-source platform for running and tracking quantum experiments

https://github.com/mareksuchodolski12-hash/kwantowy
1•ProEloElo•50s ago•1 comments

Life is hard, have a token. (2025)

https://getvouchsafe.org/blog/2025-10-08.html
1•mooreds•3m ago•0 comments

Show HN: Bash Theft Auto – a GTA-inspired open-world crime game in pure Bash

1•stuffbymax•4m ago•0 comments

Show HN: Sway, a board game benchmark for quantum computing

https://shukla.io/blog/2026-03/sway.html
1•BinRoo•5m ago•0 comments

Sandboxing AI-Authored Code in GitHub Actions

https://haulos.com/blog/sandboxing-github-actions/
1•s4i•5m ago•0 comments

We saw how 30 AI agent projects handle authorization-93% use unscoped API keys

1•mishrasanjeev•6m ago•0 comments

Native H2 pathways enable biocompatible hydrogenation of alkenes in bacteria

https://www.nature.com/articles/s41557-025-02052-y
2•PaulHoule•6m ago•0 comments

Palantir defends its role in the kill chain: "We are proud of that"

https://www.heise.de/en/news/Palantir-defends-its-role-in-the-kill-chain-We-are-very-very-proud-o...
5•botanical•9m ago•0 comments

'Bit of treachery': US attack on IRIS Dena undermines Indian security ties

https://www.theguardian.com/world/2026/mar/15/us-attack-iris-dena-undermines-indian-security-ties...
3•prmph•9m ago•0 comments

I built a brag doc app to track my impact

https://getexceeds.com/
2•ogeng•9m ago•1 comments

One Hundred Curl Graphs

https://daniel.haxx.se/blog/2026/03/15/one-hundred-curl-graphs/
2•dhruv3006•12m ago•0 comments

Reverse Engineering Apple's GPU Energy Model on the M4 Max

https://www.youtube.com/watch?v=HKxIGgyeISM
4•ricebunny•14m ago•1 comments

K programming: idiom by idiom [pdf]

https://nsl.com/papers/idioms_K3.pdf
2•tosh•14m ago•0 comments

Why are some stars always visible while others come and go with the seasons?

https://theconversation.com/why-are-some-stars-always-visible-while-others-come-and-go-with-the-s...
2•Brajeshwar•16m ago•0 comments

LPT100: A PIC32MZ Emulator for the Iomega ZIP100 Parallel Port Drive

https://www.toughdev.com/content/2026/03/pic32mz-iomega-zip100-parallel-port-emulator-part-2-hard...
2•mdanh2002•16m ago•1 comments

LangGraph human-in-the-loop has a double execution problem

https://blog.raed.dev/posts/langgraph-hitl/
1•Raed667•19m ago•0 comments

I let Claude Code configure my Arch install

https://www.willmorrison.com/blog/03-15-2026-llm-dotfiles
2•willmorrison•19m ago•0 comments

Bulwark – zero-dependency supply chain security gateway

https://github.com/Bluewaves54/Bulwark
1•Bluewaves54•21m ago•1 comments

Nile fisherman earning more from collecting plastic than fish

https://www.theguardian.com/world/2026/mar/15/cairo-fishers-catching-plastic-bottles
2•saikatsg•22m ago•0 comments

Show HN: OpenClaw plugin – hard budget limits for agent tool calls

https://github.com/runcycles/cycles-openclaw-budget-guard
1•amavashev•22m ago•1 comments

EU's Ursula von Der Leyen Calls Europe's Nuclear Exit a "Strategic Mistake" [video]

https://www.youtube.com/watch?v=Q-Pa6_CICjM
4•sorokod•23m ago•1 comments

The Iran War: How America, Israel and Iran Got Here [video]

https://www.youtube.com/watch?v=IKWMrpQOh7Y
2•kklisura•24m ago•0 comments

LLM Architecture Gallery

https://sebastianraschka.com/llm-architecture-gallery/
2•tzury•24m ago•0 comments

Show HN: Webmatik – AI that audits your website across 8 categories in 4min

https://webmatik.ai
2•alexbelov•25m ago•0 comments

A Rural S.C. County Approved a $2B Data Center During the Winter Storm

https://capitalbnews.org/secret-data-center-deal-marion-county-south-carolina/
2•inaros•26m ago•0 comments

Nvidia greenboost: transparently extend GPU VRAM using system RAM/NVMe

https://gitlab.com/IsolatedOctopi/nvidia_greenboost
3•mmastrac•26m ago•0 comments

Ask HN: How is AI-assisted coding going for you professionally?

2•svara•27m ago•0 comments
Open in hackernews

Show HN: Execute local LLM prompts in remote SSH shell sessions

https://github.com/tgalal/promptcmd
2•smudgy3746•1h ago
Hi HN,

This is a tool I've worked on the past few months (not vibe-coded).

Instead of giving LLM tools SSH access or installing them on a server, the following command:

  $ promptctl ssh user@server
makes a set of locally defined prompts "magically" appear within the remote shell as executable command line programs.

For example, I have locally defined prompts for `llm-analyze-config` and `askai`. Then on (any) remote host I can:

  $ promptctl ssh user@host 
  # Now on remote host
  $ llm-analyze-config /etc/nginx.conf
  $ cat docker-compose.yml | askai "add a load balancer"
the prompts behind `llm-analyze-config` and `askai` execute on my local computer (even though they're invoked remotely) via the llm of my choosing.

This way LLM tools are never granted SSH access to the server, and nothing needs to be installed to the server. In fact, the server does not even need outbound internet connections to be enabled.

Eager to get feedback!

Github: https://github.com/tgalal/promptcmd/