Command suggestions, command-not-found and thefuck replacement written in Rust https://codeberg.org/iff/pay-respects
Find a file
2025-07-07 15:52:16 +02:00
.github deps: revert dependantbot to main 2025-04-29 12:49:23 +02:00
core fix(nix): use nix shell -c and improve nix-index usage 2025-07-07 15:52:16 +02:00
module-request-ai v0.7.7 2025-06-11 14:17:34 +02:00
module-runtime-rules feat: config file 2025-06-11 12:48:24 +02:00
parser v0.7.3 2025-04-09 19:26:24 +02:00
rules fix: git pull has no --merge option 2025-06-28 15:40:42 +02:00
tests rules: use short arguments for Mac compatibility 2025-05-22 11:35:15 +02:00
utils v0.7.3 2025-04-09 19:26:24 +02:00
.editorconfig chore: add editorconfig 2025-04-17 19:43:48 +02:00
.gitignore flake.nix: fix build and make the derivation more maintainable (github #21) 2024-12-18 08:51:48 +01:00
.rustfmt.toml init 2023-07-30 18:40:18 +02:00
Cargo.lock v0.7.8 2025-06-12 00:17:18 +02:00
Cargo.toml chore: specify "core" as default workspace member (github #29) 2025-01-18 15:46:39 +01:00
CHANGELOG.md v0.7.8 2025-06-12 00:17:18 +02:00
config.md feat: shell eval method 2025-06-11 14:13:40 +02:00
Cross.toml CI: disable icnremental build in cross 2024-12-10 20:42:36 +01:00
flake.lock feat: flake 2024-12-11 16:02:24 +01:00
flake.nix chore(deps): remove openssl dependency from flake 2025-04-08 22:04:58 +02:00
init.fish feat: plugin files for zsh and fish (github #58) 2025-06-11 11:02:20 +02:00
install.sh ci: change gnu libraries to musl 2025-02-12 17:56:58 +01:00
LICENSE doc: appending the full license notice 2023-08-09 00:14:54 +02:00
Makefile chore: update makefile 2025-04-22 13:57:07 +02:00
modules.md chore: some quality of life changes 2025-04-06 20:13:18 +02:00
pay-respects.plugin.zsh feat: plugin files for zsh and fish (github #58) 2025-06-11 11:02:20 +02:00
README.md v0.7.7 2025-06-11 14:17:34 +02:00
roadmap.md docs: update 2025-04-22 14:54:02 +02:00
rules.md docs: cleanup 2025-04-22 15:38:24 +02:00

Pay Respects

Typed a wrong command or don't know what to do? Pay Respects will suggest a fix to your console command by simply pressing F!

  • 🚀 Blazing fast suggestion: You won't notice any delay for asking suggestions!
  • 🎯 Accurate results: Suggestions are verified before being prompted to the user, no sudo suggestions when you are using doas!
  • ✏️ Easy to write rules: You don't need to know Rust. The rules are written in a TOML file!
  • 🔩 Modular: TOML not your taste? Add sources using your favorite language with a custom module!
  • 🤖 AI Support: AI module comes in aid when there is no rule for your error!
  • 🪶 Tiny binary size: Not even 1MB for core features!

showcase

How to Pay Respects

Please follow the instruction for your shell:

Bash / Zsh / Fish

Append the following line to your configuration file (--alias no longer required for v0.7+):

eval "$(pay-respects bash --alias)"
eval "$(pay-respects zsh --alias)"
pay-respects fish --alias | source

Arguments:

  • --alias [alias]: Alias to a custom key, defaults to f
  • --nocnf: Disables command_not_found handler

Manual aliasing (REMOVED after v0.7):

alias f="$(pay-respects bash)"
alias f="$(pay-respects zsh)"
alias f="$(pay-respects fish)"
Nushell

Add the following output to your configuration file:

pay-respects nushell --alias [<alias>]

Or save it as a file:

pay-respects nushell --alias [<alias>] | save -f ~/.pay-respects.nu

and source from your config file:

source ~/.pay-respects.nu
PowerShell

Append the following output to your profile:

pay-respects pwsh --alias [<alias>]

Or directly pipe the output to your profile:

pay-respects pwsh --alias [<alias>] >> $PROFILE
Custom initialization for arbitrary shell

pay-respects only requires 2 environment variables to function:

  • _PR_SHELL: The binary name of the current working shell
  • _PR_LAST_COMMAND: The last command

pay-respects echos back, if applicable, a cd command that can be evaluated by the current working shell.

General example:

eval $(_PR_SHELL=sh _PR_LAST_COMMAND="git comit" pay-respects)

Following variables are not required, but can be used to reduce unnecessary operations:

  • _PR_ALIAS: A list of aliases to commands. Separated by newlines with zsh-like formatting, e.g. gc=git commit
  • _PR_ERROR_MSG: Error message from the previous command. pay-respects will rerun previous command to get the error message if absent
  • _PR_EXECUTABLES: A space separated list of commands/executables. pay-respects will search for $PATH if absent
Environment variable configurations
  • _PR_LIB: Directory of modules, analogous to PATH. If not provided, search in PATH or compile-time provided value
  • _PR_PACKAGE_MANAGER: Use defined package manager instead of auto-detecting alphabetically. Empty value disables package search functionality
    • _DEF_PR_PACKAGE_MANAGER: compile-time value

You can specify different modes to run with _PR_MODE:

  • noconfirm: Execute suggestions without confirm
  • echo: Print suggestions to stdout without executing
  • cnf: Used for command not found hook

Example usage with noconfirm:

function ff() {
	(
		export _PR_MODE="noconfirm"
		f
	)
}

You can now Press F to Pay Respects!

Installing

Install from your package manager if available:

Packaging status

Instructions for package managers
OS / Distribution Repository Instructions
Arch Linux AUR paru -S pay-respects (-bin)
Arch Linux (ARM) Arch Linux CN sudo pacman -S pay-respects
MacOS / Any timescam brew install timescam/homebrew-tap/pay-respects
NixOS / Any nixpkgs nix-env -iA nixos.pay-respects

Alternatively, install pre-built binaries from GitHub releases. An install script is available:

curl -sSfL https://raw.githubusercontent.com/iffse/pay-respects/main/install.sh | sh
Cargo / Compile from source (any OS/architecture supported by Rust)

This installation requires you to have Cargo (the Rust package manager) installed.

Install from crates.io, modules are optional

cargo install pay-respects
cargo install pay-respects-module-runtime-rules
cargo install pay-respects-module-request-ai

Clone from git and install, suitable for adding custom compile-time rules:

git clone --depth 1 https://github.com/iffse/pay-respects
cd pay-respects
cargo install --path core
cargo install --path module-runtime-rules
cargo install --path module-request-ai

Configuration

See configuration.

Rules & Modules

See the following pages:

AI Integration

Disclaimer: You are using AI generated content on your own risk. Please double-check its suggestions before accepting.

AI suggestions should work out of the box with request-ai module installed.

An API key is included with the source (your distribution might have stripped them out). It should always work unless I can no longer afford this public service or rate limits are reached. If it's useful to you, consider making a donation:

Donate using Liberapay Donate using Ko-fi
Donate using Stripe Donate using PayPal

AI usages and API configurations

Contributing

Current option to write rules should cover most of the cases. We need more rules, contributions are welcomed!

There's also a roadmap for contribution opportunities.

This project is hosted at various sites, you can choose the one that you feel most comfortable with:

Licenses

  • Binaries: AGPL-3.0
    • Core and modules
  • Libraries: MPL-2.0
    • Parser and utils