frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Open in hackernews

Show HN: Zev – Remember (or discover) terminal commands

https://github.com/dtnewman/zev
87•dtnewman•1y ago

Comments

0x696C6961•1y ago
I really like how it gives you multiple options to choose from. I've been using https://github.com/simonw/llm-cmd
dtnewman•1y ago
Thanks! My main issue is that i'm lazy and although i often know approximately what i want i don't want to type a lot of words to describe it exactly. For example writing `zev 'show disk usage'` is somewhat ambiguous. Am i talking about my current folder or the harddrive? My idea was that rather than typing out what I want explicitly, i want to type the minimum amount and then just select the best of available options.
submeta•1y ago
Nice! I use a combination of an endless bash (zsh) history with timestamps that I navigate via fzf and ctr+r and comments I occasionally add to commands via # at the end followed by my annotation so that I can rediscover the command.

I do this ever since I switched to a Mac in 2015 and my history has over 60,000 lines. So that’s basically my knowledge base :)

But your project looks nice. Will check out.

afefers•1y ago
Can you explain how you achieve this?
import•1y ago
Not op but you need fzf and you need to increase the history size of your bash/ssh whatever

https://github.com/junegunn/fzf

WalterGR•1y ago
Shells that use readline (such as bash) may have a history search feature built-in and on by default. Try pressing Ctrl-r or Cmd-r and see if a prompt pops up.

You can build your own workflow by hand by doing something like:

1. Turn on your shell’s feature to record command history.

2. Look into its feature set to control things such as how many entries it remembers, whether it remembers duplicate entries, and whether it timestamps each entry. (Don’t forget to restart each instance of your shell, if needed, for changes to take effect.)

3. Install a tool such as fzf that allows interactive filtering of arbitrary text. (Via Homebrew it’s `brew install fzf`. It’s likely something similar for other package managers.) These tools usually: read lines of input, prompt the user to optionally filter but eventually select a line, then just print that line.

4. Write the necessary shell script(s) / functions / aliases to do things like:

+ invoke the fuzzy-finder on the shell’s history file or a modified version of that file (for example, a modified version that excludes bash’s timestamp lines, or that joins them - perhaps in a human-readable format - with the command it timestamps.)

+ process the output of the fuzzy-finder tool (for example, to copy the command to the clipboard, paste it into the shell, or execute it immediately - which will necessitate things like removing any timestamps or additional notation added in the previous step.)

Step 4 can be easy as something approximating (I’m on mobile right now):

   fzf “$HOME/.bash_history” | copy-to-clipboard
chrisco23•1y ago
I'm trying to get this to work with ollama. I'm on Arch Linux, fish shell, new to ollama, and only very rarely used pipx. I get:

raise ValueError("OPENAI_BASE_URL and OPENAI_API_KEY must be set. Try running `zev --setup`.") ValueError: OPENAI_BASE_URL and OPENAI_API_KEY must be set. Try running `zev --setup`

even when I run (for example) set -x ZEV_USE_OLLAMA 1; zev 'show all files and all permissions'

dtnewman•1y ago
creator here. It pulls env variables from a file in your appstorage directory. I need to change this in a future release to make it cleaner, since I don't think i like it intermingling with env variables.

That said, did you run `zev --setup`?

dtnewman•1y ago
btw, feel free to open an issue on github :)
lionkor•1y ago
Why are you using env variables when you don't pull them primarily from the process env?
dtnewman•1y ago
I’m debating changing it. I do pull in env vars to use as default values (e.g. you already have an API key set). But I might transition way from env variables.
regnull•1y ago
Somewhat related, here's a little project I've done with LLM: https://github.com/regnull/how.sh

It uses locally hosted (or remote) LLMs to create and execute shell commands that you describe. You can go as far as writing "shell scripts" in natural language.

arjie•1y ago
I don't like most of these commands because they just execute. This one is nice because it will be in your history. The current trick I use is to use copilot.vim at the command line. It naturally fits into my flow.

Recently some of my friends reported that it just wants to do comments and I've noticed that it actually biases towards that nowadays, so I start it with something to get it kicked off.

I've been managing to try to figure out what in the prompt makes it like that, but for the moment that little workaround gives me both the comment and the command in my history so it's easier to r-i-search for it.

https://x.com/arjie/status/1575201117595926530

You just set up copilot for neovim normally and set it as your EDITOR. https://wiki.roshangeorge.dev/index.php/AI_Completion_In_The...

wapxmas•1y ago
how do I install it with pip? It requires to be in virtual environment. (
trallnag•1y ago
Use something like pipx or uv
dtnewman•1y ago
it should run outside of a virtual env and is intended to be installed locally. That said, it currently has too many dependencies (IMO) and i'm working on cutting them down to avoid conflicts.
AvieDeckard•1y ago
Your gif in your README features a prompt asking to "show all files in this directory" but the 'ls -lh' returned and selected in the demo gif does not show all files, just the ones that aren't hidden. I'd have chosen a more accurate interaction for the demo.
rco8786•1y ago
Kind of a good example of how AI gets it "almost" right.
imzadi•1y ago
Hi Zev!
latchkey•1y ago
Why not https://docs.atuin.sh/?
dtnewman•1y ago
different use case. atuin is for past commands, whereas this uses an LLM to give you options for commands.
latchkey•1y ago
Feels like this should be an extension to atuin instead of a separate tool.
anamexis•1y ago
Why? Besides both involving terminal commands, they serve very different purposes.
latchkey•1y ago
atuin is a collection of the past, which can be training data for a collection in the future. If I'm asking AI to essentially generate commands, my previous inputs ideally would be part of the basis.
arp242•1y ago
Named after Zev from the film Remember? A few years back I wrote a Vim plugin to remember things with the same name :-)
dtnewman•1y ago
ha, no, just a coincidence. Named after someone i know named Zev. But chose it because it's short and not taken on Pypi
CGamesPlay•1y ago
You may be interested in copying some of the usage patterns from my similar project: https://github.com/CGamesPlay/llm-cmd-comp

Instead of being a separate command, I released a set of key bindings you can push that start the LLM prompt with your current command line, and if you successfully accept the suggestion, replace your command line with the result, bypassing the manual clipboard step, and making it so that the result goes into your shell history as a normal command.

tzury•1y ago
Newman!
badmonster•1y ago
Since it's generating terminal commands dynamically, what safeguards (if any) are in place to avoid generating destructive or insecure commands (like rm -rf /, etc.)?
sathishvj•1y ago
Yes, this is a concern. When I built something similar (gencmd.com), I avoided the auto-run option even though it was easy to implement. imho, it's better to have a human in the loop for these.
dtnewman•1y ago
1) When you are selecting a command you get a little description at the bottom telling you what it does.

2) this doesn’t run anything. It goes to your clipboard and you have to run it yourself

3) this a good callout… what do u think? I’m thinking maybe ask the models to return a Boolean is_dangerous plus a small explanation and then I can display dangerous commands in red and show the warning when you select one.

badmonster•1y ago
sounds like a solid plan
dtnewman•1y ago
Just fyi, this is now implemented
sathishvj•1y ago
Nice! Little plug for what I did too, in a similar vein - it has a web version https://gencmd.com/ and also a cmd line version.
Bishonen88•1y ago
https://docs.aws.amazon.com/codewhisperer/latest/userguide/c...

Looks like cw from aws

porridgeraisin
•
1y ago
Fzf installs hooks automatically for ctrl+r and a bunch of other stuff

Search for `fzf --bash`. Note that the version in the ubuntu repos is too old to have this feature (I think)

reddit_clone•1y ago
Exactly my setup including the #tag's. It is my second brain.

What I love about this is the fzf's fuzzy narrow down. You don't have to start at the beginning of command, you don't have to worry about exact spelling. Just a few snippets you remember, it will narrow it down really fast.

I use the same fuzzy search narrow downs in Emacs.

I miss it everywhere else.

aldanor•1y ago
Fish has built in fuzzy search on ctrl-r as well, with no extra config needed

A misalignment of AI in mathematics

https://mathandai.org/
624•meredydd•7h ago•673 comments

I spent $220 on Google app ads and 60% of the installs were robots

https://dayzlegame.com/blog/google-ads-bot-farm/
279•nickabe•6h ago•158 comments

OpenAI agents carried out an undisclosed attack on RubyGems

https://www.rubyhack.ai/
279•chao-•2h ago•169 comments

A Design Space Exploration of Async/Await

https://cel.cs.brown.edu/blog/design-space-async-await/
138•wcrichton•2d ago•27 comments

GrapheneOS' rewritten Messages app is released

https://github.com/GrapheneOS/Messaging/releases/tag/13
194•microtonal•6h ago•112 comments

Project Blinkenlights

https://blinkenlights.de/en/
46•doener•3h ago•18 comments

How to Build an AI Software Factory: Agents That Open, Review, and Merge PRs

https://www.firecrawl.dev/blog/ai-software-factory
20•makaimc•1h ago•5 comments

Show HN: ResolveHQ – A Helpdesk Built on Cloudflare Workers, D1, R2 and Queues

https://github.com/mirza-rizvi/ResolveHQ
27•mirza_rizvi•3h ago•9 comments

Litelm: LiteLLM Without the Bloat

https://github.com/kennethwolters/litelm
95•kennethwolters•7h ago•36 comments

AI researchers debate how close we are to recursive self-improvement

https://www.dwarkesh.com/p/john-beren-charlie
26•artninja1988•3h ago•2 comments

Λ Snap – An inviting programming language for kids and adults for CS study

https://snap.berkeley.edu/
111•dr_kiszonka•7h ago•53 comments

AlphaGenome maps 9B DNA variants

https://spectrum.ieee.org/alphagenome-atlas
69•ltononro•2d ago•6 comments

Show HN: Graphify C# – Compiler-accurate Find Usages for coding agents

https://github.com/zachsaw/graphify-csharp
7•zachsaw•1h ago•2 comments

Mind-altering drugs played key role in rise of Andean civilization

https://www.science.org/content/article/mind-altering-drugs-played-key-role-rise-andean-civilization
99•geneticdrifts•7h ago•70 comments

Rune is now open source

https://rune.build/blog/rune-is-now-open-source
145•ernestrc•9h ago•55 comments

Hepburn Romanization: How to Read Japanese in the Latin Alphabet

https://www.fink-translate.com/blog/hepburn-romanization.html
18•miuraboy•1d ago•12 comments

QueryBrew: System-Agnostic SQL-to-SQL Query Optimization [pdf]

https://www.vldb.org/pvldb/vol19/p4494-schmidt.pdf
17•matt_d•3h ago•8 comments

I've operated petabyte-scale ClickHouse clusters for 5 years

https://www.tinybird.co/blog/what-i-learned-operating-clickhouse
174•adastral•4d ago•65 comments

The EPA is planning to scrap public review rules for data center pollution

https://capitalbnews.org/data-centers-permit-rules-epa/
342•doener•7h ago•228 comments

Starlink Signal Leakage Threatens Radio Astronomy's Most Critical Frequencies

https://www.gadgetreview.com/starlinks-signal-leakage-is-threatening-radio-astronomys-most-critic...
10•upofadown•44m ago•0 comments

Logo Programming Language

https://el.media.mit.edu/logo-foundation/what_is_logo/logo_programming.html
240•azhenley•2d ago•95 comments

How do you rotate in four dimensions? From Zero to Geo 3.10 [video]

https://www.youtube.com/watch?v=LYCcejLdFR4
5•surprisetalk•3d ago•0 comments

Zep AI (YC W24) Is Hiring a Head of Forward Deployed Engineering

https://www.getzep.com/careers/
1•roseway4•8h ago

How we rebuilt complex permissions without migrating to Zanzibar

https://infisical.com/blog/folder-based-rbac
23•FinnLobsien•2d ago•6 comments

CIA Releases President's Daily Briefs in Commemoration of 9/11

https://www.cia.gov/stories/story/cia-releases-presidents-daily-briefs-in-commemoration-of-the-25...
114•stmw•6h ago•58 comments

Claude is only available to people over 18 years

https://support.claude.com/en/articles/15171100-age-assurance-on-claude
576•Muhammad523•14h ago•598 comments

Show HN: Bodily Oddities

https://vester.si/bodily-oddities/
161•vesterde•1d ago•137 comments

Testing Race Conditions

https://projectzero.google/2026/09/maccconc-race-condition.html
13•alpaylan•2d ago•0 comments

Show HN: Godot and Rust based multiplexer (terminal panes and more)

https://github.com/godot-pty/gpty
81•1nv1n•9h ago•42 comments

RTK reports token savings, but our cost benchmarks disagree

https://quesma.com/blog/does-rtk-make-ai-coding-cheaper/
146•michalwarda•14h ago•74 comments