frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Channel Surfer – Watch YouTube like it’s cable TV

https://channelsurfer.tv
243•kilroy123•2d ago•102 comments

Show HN: Context Gateway – Compress agent context before it hits the LLM

https://github.com/Compresr-ai/Context-Gateway
36•ivzak•3h ago•25 comments

Show HN: ShellSelf – A Developer Portfolio That Feels Like Home

https://www.shellself.com/
5•truetaurus•26m ago•1 comments

Show HN: Anthrology – Time-Traveling Radio

https://anthrology.site/
3•airstrike•47m ago•0 comments

Show HN: Mutate – free inline text replacement for Mac

https://github.com/robert-v/Mutate-public
2•rob3rth•51m ago•1 comments

Show HN: Svglib a SVG parser and renderer for Windows

https://github.com/bibhas2/svglib
8•leopoldj•3d ago•1 comments

Show HN: What was the world listening to? Music charts, 20 countries (1940–2025)

https://88mph.fm/
96•matteocantiello•3d ago•43 comments

Show HN: DJX – Convention over Configuration for Django (Rails-Inspired CLI)

3•RedsonNgwira•1h ago•1 comments

Show HN: Tiny macOS app that adds a facecam bubble to screen recordings

https://github.com/backnotprop/CamBubble
5•ramoz•1h ago•0 comments

Show HN: Mjmx – render mjml using JSX

https://mjmx.dev/
3•skwee357•2h ago•0 comments

Show HN: An addendum to the Agile Manifesto for the AI era

https://github.com/brackishman/Agile-Manifesto-AI-Addendum
2•brackishman•11m ago•0 comments

Show HN: AgentLog – a lightweight event bus for AI agents using JSONL logs

https://github.com/sumant1122/agentlog
4•paperplaneflyr•2h ago•0 comments

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

3•smudgy3746•2h ago•2 comments

Show HN: Axe – A 12MB binary that replaces your AI framework

https://github.com/jrswab/axe
206•jrswab•1d ago•118 comments

Show HN: AI milestone verification for construction using AWS

https://builder.aws.com
2•eugenelotsu•3h ago•0 comments

Show HN: RepoCrunch – CLI to analyze GitHub repos

https://github.com/kimwwk/repocrunch
2•chillkim•3h ago•1 comments

Show HN: OpenClaw docs in Japanese, now open source

https://openclawdoc.org
2•mixfox•4h ago•0 comments

Show HN: OneCLI – Vault for AI Agents in Rust

https://github.com/onecli/onecli
155•guyb3•1d ago•49 comments

Show HN: Rudel – Claude Code Session Analytics

https://github.com/obsessiondb/rudel
139•keks0r•1d ago•83 comments

Show HN: Understudy – Teach a desktop agent by demonstrating a task once

https://github.com/understudy-ai/understudy
110•bayes-song•1d ago•41 comments

Show HN: Mesa – A collaborative canvas IDE built for agent-first development

https://www.getmesa.dev/
14•visekr•5h ago•0 comments

Show HN: s@: decentralized social networking over static sites

http://satproto.org/
408•remywang•1d ago•218 comments

Show HN: OpenClaw-class agents on ESP32 (and the IDE that makes it possible)

https://pycoclaw.com/
27•pycoclaw•23h ago•1 comments

Show HN: Web-based ANSI art viewer

https://sure.is/ansi/
27•lubujackson•3d ago•7 comments

Show HN: Open-source browser for AI agents

https://github.com/theredsix/agent-browser-protocol
151•theredsix•2d ago•52 comments

Show HN: 724claw.icu – Anonymous vent wall for "shrimp workers" grinding 7×24

2•867762462f•3h ago•0 comments

Show HN: Vanilla JavaScript refinery simulator built to explain job to my kids

https://fuelingcuriosity.com/game.html
125•fuelingcurious•2d ago•48 comments

Show HN: I built a tool that watches webpages and exposes changes as RSS

https://sitespy.app
313•vkuprin•2d ago•76 comments

Show HN: Autoresearch@home

https://www.ensue-network.ai/autoresearch
76•austinbaggio•1d ago•19 comments

Show HN: Global Maritime Chokepoints

https://ryanshook.org/chokepoints/
15•RyanShook•16h ago•5 comments
Open in hackernews

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

3•smudgy3746•2h ago
Hi HN,

This is a tool I've worked on the past few months.

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/

Comments

abhi-3•2h ago
How does it handle large outputs? If I pipe a big config file through, does the full content travel back to local for LLM processing, or is there any streaming/chunking?
smudgy3746•1h ago
It does travel back to local entirely. It's streamed, although buffered at local before making the completion. I also imagine on the fly compression at remote and decompression at local should be possible