frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

What We Forget About Covid Will Shape the Next Pandemic

https://www.bloomberg.com/news/features/2026-03-06/covid-19-s-forgotten-lessons-will-shape-the-ne...
1•alephnerd•17s ago•0 comments

Surfers in Munich (Yes, Munich) Just Want Their Wave Back

https://www.nytimes.com/2026/03/07/world/europe/munich-surfing-wave.html
1•jeffwass•2m ago•0 comments

Markiplier discovering the value of On Premise Servers [video]

https://www.youtube.com/shorts/EM8NWE7_xFQ
1•Decabytes•4m ago•0 comments

Let's build a tool-using agent

https://educatedguesswork.org/posts/tool-calling/
1•ekr____•5m ago•0 comments

Unified Dasher Onboarding: A modular platform to scale globally

https://careersatdoordash.com/blog/doordash-unified-dasher-onboarding-a-modular-platform-to-scale...
1•evilsaloon•7m ago•0 comments

Coming Online

https://computerfuture.me/posts/coming-online
1•cmptrfuture•7m ago•0 comments

HyperCard Changed Everything [video]

https://www.youtube.com/watch?v=hxHkNToXga8
1•vinhnx•7m ago•0 comments

PC processors entered the Gigahertz era today in the year 2000 with AMD's Athlon

https://www.tomshardware.com/pc-components/cpus/pc-processors-entered-the-gigahertz-era-today-in-...
2•LorenDB•8m ago•0 comments

Show HN: AnyOneWillDo – instantly choose someone from a list

https://anyonewilldo.com
1•mkumm•9m ago•0 comments

Show HN: Diorooma – 3D room moodboard using screenshots from any furniture store

https://diorooma.com/
1•bakerr•10m ago•0 comments

Show HN: Zodex – AI Coding Environment

https://zodex.dev
1•furkankoseoglu•10m ago•0 comments

Tinnitus Is Connected to Sleep

https://www.sciencealert.com/tinnitus-is-somehow-connected-to-a-crucial-bodily-function
1•bookofjoe•12m ago•0 comments

Mitchell Hashimoto's new way of writing code [video]

https://www.youtube.com/watch?v=WjckELpzLOU
1•tosh•12m ago•0 comments

Show HN: ManyLens – Examine personal dilemmas through multiple perspectives

https://manylens.app
1•GoodRoots•13m ago•0 comments

AI Tooling for Software Engineers in 2026

https://newsletter.pragmaticengineer.com/p/ai-tooling-2026
1•vinhnx•14m ago•0 comments

Video Helper – open-source tool to extract mind maps and summaries from videos

https://github.com/LDJ-creat/video-helper
1•LDJ-create•14m ago•1 comments

I'm 17 and built an AI that generates GitHub READMEs from any repo URL

https://www.wabio.xyz/
2•youelfedr•14m ago•1 comments

OWASP's Top Ways to Attack LLMs: AI Vulnerabilities Exposed

https://www.youtube.com/watch?v=gUNXZMcd2jU
1•Brysonbw•14m ago•0 comments

Mojo: GPU Puzzles

https://puzzles.modular.com/
1•tosh•15m ago•0 comments

Show HN: Brf.it – Extracting code interfaces for LLM context

1•jeff-lee•16m ago•1 comments

Show HN: A tool that converts Excel files into dashboards instantly

https://www.datanestanalytics.com/
1•skandersab•17m ago•1 comments

Stop Making Models Smarter

1•noemit•19m ago•0 comments

Clanker cloud – fix all your DevOps issues with AI agents

https://clankercloud.ai/
2•tekbog•19m ago•0 comments

Show HN: NovaSCM – open-source SCCM alternative (WPF and Python and SQLite)

https://github.com/ClaudioBecchis/NovaSCM
1•Claudio82•20m ago•0 comments

Show HN: Somnia – a dream journal that locks 2 minutes after your alarm fires

https://www.somniavault.me/
1•SushanKKsdfsdf•23m ago•0 comments

Sneezy Does It

https://www.psychologytoday.com/sg/blog/in-excess/201604/sneezy-does-it
1•rzk•23m ago•0 comments

Ask HN: How do you enforce guardrails on Claude agents taking real actions?

1•uchibeke•30m ago•0 comments

Show HN: Bulk Image Generator – Create AI variations and remove bg in batch

https://bulkimagegenerator.app/
3•fairyFayra•31m ago•0 comments

Alt+Shift+Y to Strip Away Distractions

https://github.com/uscne/Yumi-Reader
1•uscneuscne•32m ago•1 comments

500 days of rdigest – a "feeds digest" CLI tool

https://notes.druchan.com/500-days-of-rdigest
1•druchan89•34m ago•0 comments
Open in hackernews

Better-CLI: A Skill that teaches agents best practices for improving CLIs

https://github.com/yogin16/better-cli
2•yogin16•1h ago

Comments

yogin16•1h ago
Today I launched and pushed the first version of [Better CLI](https://github.com/yogin16/better-cli).

It’s a simple skill that helps build command-line tools that are easier for people to use and easier for AI agents to run.

I made it for a very practical reason: a lot of CLI tools work, but still feel confusing. Errors are vague, help text is thin, and automation breaks on small surprises.

Make CLIs such that it helps AI Agent navigate, instead of fighting with it. Inspiration came, when I was writing CLI for [lore](https://github.com/lorelang/lore), and couldn't find any skill for CLI writing that I was looking for.

So this project is my attempt to keep things straightforward: - clearer commands - clearer errors - output that is easier to reuse - fewer “guess what I meant” moments

To test this skill, I ran it on recently launched Google's [gws cli](https://github.com/googleworkspace/cli):

```bash npx skills add yogin16/better-cli ```

Then on Claude just one prompt: ```bash use better-cli skill and improve the cli as needed with best practices, no regression, ultrathink. ```

The gws cli is already nicely written for AI Agents, still it came up with [these changes](https://github.com/googleworkspace/cli/pull/297/changes) to improve error messages so that AI Agents using the cli knows what do with it.

If you build CLIs (or suffer through them every day), I’d love your feedback. CLI is what the new software is becoming, at least for now. (API -> MCP -> CLIs) Hope this helps you better the CLIs for your software for agents.

andac•1h ago
Nice features, I will try.