plztell.me

_

Terminal Native AI Chat Bot

You're SSH'd into a server. Something breaks. Normally you'd copy the error, switch to a browser, paste it into a chatbot, and copy the answer back. But not anymore!

Pipe your logs or config files right in the terminal, ask your question — plz tell me what is using all my disk space — and get the answer, all without leaving the command line.

No packages to install. No API keys to manage. Just ask. And don't worry — 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.

Linux / macOS
curl Click to copy Copied
eval "$(curl -sL plztell.me/setup)"
wget Click to copy Copied
eval "$(wget -qO- plztell.me/setup)"

Optional: To make it permanent, add the command above to your ~/.bashrc or ~/.zshrc.

Windows
PowerShell Click to copy Copied
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

What's the magic word? plz!

Prefix your question with plz — type naturally, the function handles the rest.

Terminal Click to copy Copied
plz how do i find files larger than 1GB
Pipe in context

Send logs, configs, error messages, or command output for analysis.

Terminal Click to copy Copied
cat /etc/nginx/nginx.conf | plz "why is this returning 502?"
Follow up

Continue the conversation. Context is preserved within your session.

Terminal Click to copy Copied
plz explain that in more detail

Note: Use quotes if your question contains shell special characters like ? ! & | ; ' " $ * < > etc. — for example: plz "what is nginx's default port?"

Reset

Start fresh. Clear the conversation history and begin a new session.

Terminal Click to copy Copied
plz reset

Premium Commands

Upgrade to use advanced features like a smarter AI model and 10x more piped input. See Pricing for details.

Login

Authenticate your terminal to access premium features.

Terminal Click to copy Copied
plz login
Logout

Sign out and clear your credentials from the terminal.

Terminal Click to copy Copied
plz logout
Check Credit

View your current credit balance.

Terminal Click to copy Copied
plz credit

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:

Direct Query

Works anywhere, but without natural typing, piped input, or conversation history.

curl Click to copy Copied
curl -L plztell.me/q/how+do+i+extract+a+tar.gz+file
wget Click to copy Copied
wget -qO- plztell.me/q/how+do+i+extract+a+tar.gz+file

Learn More