A lightweight Bash CLI framework designed to run applications inside the terminal. It works out of the box simply clone and execute, with zero build steps, no package managers, and no runtime dependencies.
- Linux, WSL, or Termux
- bash 4+
- curl
- git
git clone https://github.com/Loki-Xer/reo.git
cd reochmod +x install.sh
./install.shsource ~/.bashrcreo
reo helpreo # home screen
reo help # interactive plugin browser (↑ ↓ + ENTER)
reo <name> # run plugin directlyCreate a .sh file in the apps/ folder with these header comments:
# name: hello
# description: Says hello
ROOT_DIR="$(cd "$(dirname "$0")/.." && pwd)"
source "$ROOT_DIR/core/index."
echo -e " ${CYAN}${BOLD}Hello, world!${RESET}"No reinstall needed — reo help picks it up instantly.
# remove PATH entry from ~/.bashrc
sed -i '/# REO CLI/d' ~/.bashrc
sed -i '/rep/d' ~/.bashrc
# delete the repo
cd ..
rm -rf repMIT