frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Sher – Ephemeral preview URLs from your terminal

https://sher.sh
1•andout_•4m ago•0 comments

Latency numbers every programmer should know

https://cheat.sh/latency
1•ksec•9m ago•0 comments

Death girls' primary school in southern Iran's Hormozgan province rises to 40

https://economictimes.indiatimes.com/news/defence/iran-war-death-toll-in-strike-on-girls-school-r...
2•lr0•15m ago•0 comments

A Day in the Life of an Enshittificator [video]

https://www.youtube.com/watch?v=T4Upf_B9RLQ
1•giaco_hendel•18m ago•0 comments

U.S. has begun "major combat operations in Iran"

https://apnews.com/article/iran-us-trump-address-f662a4f3378535d81197be699fb35a3e
2•tunapizza•19m ago•0 comments

Show HN: LexPrep – reproducible lexical preprocessing for research experiments

https://github.com/sajjad-mazaheri/lexprep
1•Sajjad_m•20m ago•0 comments

No Bookmarks

https://nik.art/no-bookmarks/
1•herbertl•21m ago•0 comments

Adapting the Principles of Engineering to Make Watches

https://www.nytimes.com/2026/02/28/fashion/watches-apiar-3d-printing.html
1•pretext•21m ago•0 comments

Show HN: Telos – A structured context framework for humans and AI agents

https://github.com/noahatfin/telos
1•wrencanfly•21m ago•0 comments

Show HN: Gitcredits – movie-style end credits for any Git repo in your terminal

https://github.com/Higangssh/gitcredits
2•swq115•22m ago•0 comments

Claude Code Chooses – a followup deepdive on email providers

https://akshaychugh.xyz/writings/png/how-claude-code-chooses
2•akshay2603•24m ago•0 comments

Ghostty.style – web gallery of Ghostty themes

https://ghostty-style.vercel.app/
1•mrled•24m ago•0 comments

TanStack Form components that play well with Playwright

https://jxd.dev/writing/playwright-tanstack-form/
1•jamie_davenport•24m ago•0 comments

All LLM

https://llmmodels.org/
1•allllm•25m ago•1 comments

Io: Possibly the simplest practical programming notation. (1989) [pdf]

https://shachaf.net/papers/Io%3A%20a%20new%20programming%20notation.pdf
1•fanf2•25m ago•0 comments

Why Objective-C

https://inessential.com/2026/02/27/why-objective-c.html
1•ingve•26m ago•0 comments

Show HN: Expose – OSS localhost tunneling CLI with a self‑hosted server

https://github.com/kernelshard/expose
1•samiulsk•27m ago•0 comments

Claude Code is changing my life

https://www.oliur.com/claude-code-is-changing-my-life
2•ingve•28m ago•0 comments

Don't trust AI agents

https://nanoclaw.dev/blog/nanoclaw-security-model
9•gronky_•28m ago•5 comments

The Birth of Parallel Imaging

https://magazine.hms.harvard.edu/articles/birth-parallel-imaging
1•saikatsg•29m ago•0 comments

Show HN: Grantex – Delegated authorization protocol for AI agents

https://github.com/mishrasanjeev/grantex
2•mishrasanjeev•29m ago•0 comments

30 months to 3MWh – some more home battery stats

https://shkspr.mobi/blog/2026/02/30-months-to-3mwh-some-more-home-battery-stats/
2•edward•31m ago•0 comments

Learning to Rewrite Tool Descriptions for Reliable LLM-Agent Tool Use

https://arxiv.org/abs/2602.20426
1•Anon84•32m ago•0 comments

Department of Defense Directive 3000.09: Autonomy in Weapon Systems (2023) [pdf]

https://www.esd.whs.mil/portals/54/documents/dd/issuances/dodd/300009p.pdf
1•throw0101c•32m ago•0 comments

Claude just jumped to #2 on the iOS App Store

https://xcancel.com/search?f=tweets&q=2027614403693318348
2•doener•33m ago•0 comments

Nao: Open-Source Analytics Agent

https://github.com/getnao/nao
1•georgehill•35m ago•0 comments

AI companies want you to stop chatting with bots and start managing them

https://arstechnica.com/information-technology/2026/02/ai-companies-want-you-to-stop-chatting-wit...
1•joozio•36m ago•0 comments

The Download: how AI is shaking up Go, and a cybersecurity mystery

https://www.technologyreview.com/2026/02/27/1133754/the-download-how-ai-is-shaking-up-go-and-a-cy...
1•joozio•36m ago•0 comments

We will learn a lot about Silicon Valley in the upcoming days

https://garymarcus.substack.com/p/did-trump-just-overplay-his-hand
1•only_in_america•37m ago•0 comments

Depict 0.2.0 – (tool 4 perf analysis)

https://github.com/kaleidawave/depict/releases/tag/v0.2.0
1•kaleidawave•39m ago•0 comments
Open in hackernews

Show HN: Jarvish – The J.A.R.V.I.S. AI inside your shell investigates errors

https://github.com/tominaga-h/jarvis-shell
1•tominaga-h•1h ago
Hi HN, I'm the creator of Jarvish.

https://github.com/tominaga-h/jarvis-shell

I spend most of my day in the terminal, and I got incredibly frustrated with the standard error-resolution loop: command fails -> copy the stderr -> open a browser -> paste into ChatGPT/Google -> copy the fix -> paste back into the terminal. It completely breaks the flow state.

I wanted a seamless experience where the shell already knows the context of what just happened.

So I built Jarvish. It’s a fully functional interactive shell written in Rust, but with an AI agent seamlessly integrated into the REPL loop. You don't need any special prefixes—if you type `ls -la`, it runs it. If you type `Jarvis, why did that build fail?`, it routes to the AI.

Here is how it works under the hood:

- The "Black Box" (I/O Capture): It uses `os_pipe` and multithreading to tee the `stdout`/`stderr` of child processes in real-time. This captures the output to memory for the AI while simultaneously rendering it to the terminal without breaking interactive TUI tools.

- Context Memory: The captured I/O is compressed with `zstd`, hashed (like Git blobs), and the metadata is stored in a local SQLite database (`rusqlite`). When you ask the AI a question, it automatically retrieves this recent I/O history as context.

- Agentic Capabilities: Using `async-openai` with function calling, the AI can autonomously read files, execute shell commands, and investigate issues before giving you an answer.

- REPL: Built on top of `reedline` for a Fish-like experience (syntax highlighting, autosuggestions).

I’ve been using it as my daily driver (currently v1.1.0). I would absolutely love to hear your thoughts on the architecture, the Rust implementation, or any feature requests!