plztell.me
_
Introduction
You're SSH'd into a headless server. Something breaks. You need an answer — now. Just ask. Works anywhere you have curl or wget. No browser. No installation. No context switching.
Your queries and AI responses are never logged or stored.
Load It
Load the plz shell function into your terminal. It handles URL encoding, accepts piped input, and maintains conversation context — run it once per session, nothing is installed permanently.
eval "$(curl -sL plztell.me/setup)"
eval "$(wget -qO- plztell.me/setup)"
Optional: To make it permanent, add the command above to your ~/.bashrc or ~/.zshrc.
iex (iwr -useb plztell.me/setup/win).Content
Optional: To make it permanent, add the command to your PowerShell profile ($PROFILE).
Curious what the shell function does? It's short and transparent — inspect the source at plztell.me/setup (or plztell.me/setup/win for PowerShell).
Use It
Prefix your question with plz — type naturally, the function handles the rest.
plz how do i find files larger than 1GB
Send logs, configs, error messages, or command output for analysis.
cat /etc/nginx/nginx.conf | plz why is this returning 502
Continue the conversation. Context is preserved within your session.
plz explain that in more detail
Start fresh. Clear the conversation history and begin a new session.
plz reset
Without the Shell Function
Prefer not to run the shell function, or working on a restricted system? You can query plztell.me directly — just replace spaces with + in the URL:
curl -L plztell.me/q/how+do+i+extract+a+tar.gz+file
wget -qO- plztell.me/q/how+do+i+extract+a+tar.gz+file
Works anywhere, but without natural typing, piped input, or conversation history.