The real power of toast isn't asking questions—it's piping. Here are patterns we use every day.
1. Explain any file
cat ~/.zshrc | toast "explain this config"
2. Roast your code
cat app.py | toast "review this code, be harsh"
3. Git diff → commit message
git diff --cached | toast "write a commit message"
4. Logs → diagnosis
tail -100 /var/log/nginx/error.log | toast "what's wrong"
5. JSON → human
curl api.example.com/data | toast "summarize this response"
6. Command output → explanation
ps aux | toast "what's eating my memory"
7. Error → fix
npm run build 2>&1 | toast "how do I fix this"
8. Man page → quick reference
man rsync | toast "give me the 5 most useful flags"
9. CSV → insights
cat sales.csv | toast "summarize trends"
10. Chain transforms
curl site.com | toast "extract main points" | toast "translate to Spanish"