AI commands
The same vixen capabilities exposed as plain fur commands — useful inside scripts, in remote sessions, and for muscle memory.
fur ai
Take a natural-language task and produce a confirmed shell command. Identical to typing the same text into the ⌘K overlay.
bash
fur ai "install a postgres and create a db called myapp"
# vixen suggests:
# fur install postgres
# fur service start postgres
# psql -c 'CREATE DATABASE myapp;'
# [⏎] run [e] edit [esc] cancelfur explain
Explain a command in plain English — one or many. Useful for opaque shell incantations.
bash
fur explain "sed 's/foo/bar/g' *.txt"
fur explain "tar backup.tar.gz =node_modules ."fur fix
Inspect the most recent failed command, the surrounding output, and the exit code. Suggest a remediation.
bash
# Just after a failure:
fur fix
# vixen analyses the last error and suggests a corrected command
# (you confirm before it runs)fur vixen
Manage the available vixens (named AI agents). Useful when you have more than one configured (e.g. a fast generalist + a code-specific one).
bash
fur vixen list
fur vixen run refactorPrivacy
When the vixen is local (Ollama) nothing leaves your machine. Output and prompts only leave the host if you've explicitly switched to a remote backend.