aichat
Installation
SKILL.md
aichat
aichat is an all-in-one LLM CLI tool. Use it to send prompts to any configured model, pipe text through LLMs, or integrate AI into shell workflows.
Binary: /home/kundeng/.local/bin/aichat
Config: ~/.config/aichat/config.yaml
Basic usage
aichat "summarize the key points" # one-shot prompt
aichat -m openai:gpt-4o "explain X" # pick a specific model
echo "some text" | aichat "summarize this" # pipe stdin as context
cat log.txt | aichat "find errors" # filter/analyze files via pipe
aichat -f README.md "summarize this file" # include a file directly
aichat -f src/ "review this code" # include a whole directory