Agent skill
c-ai
Query LLMs from the CLI — pipe text for summarization, chat interactively, use local or cloud models with llm or aichat.
Install this agent skill to your Project
npx add-skill https://github.com/daxaur/openpaw/tree/main/skills/c-ai
SKILL.md
AI / LLM Tools
llm (Simon Willison)
# Quick prompt
llm "What is the capital of France?"
# Pipe text for processing
cat article.txt | llm "Summarize this in 3 bullet points"
git diff | llm "Write a commit message for these changes"
pbpaste | llm "Fix the grammar in this text"
# Interactive chat
llm chat
# Use specific model
llm -m claude-3.5-sonnet "Explain quantum computing"
llm -m gpt-4o "Review this code"
# List available models
llm models
# Install model plugins
llm install llm-claude-3
llm install llm-ollama # local models
# View prompt/response history
llm logs list
llm logs last
aichat
# Quick prompt
aichat "Explain Docker in simple terms"
# Pipe input
cat code.py | aichat "Find bugs in this code"
# Interactive REPL
aichat
# Shell assistant (generates and runs commands)
aichat -e "find all files larger than 100MB"
# Specific model
aichat -m claude-3.5-sonnet "Hello"
# List models
aichat --list-models
Guidelines
- Use
llmfor piping text through LLMs (summarize, translate, analyze) - Use
aichat -efor generating shell commands from natural language - Both tools store API keys locally — set up once with auth commands
llmhas the richest plugin ecosystem (100+ model providers)aichatis faster (Rust) and has built-in RAG support- These tools use separate API keys from Claude Code — user pays per token
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
c-slack
Send messages and upload files to Slack channels using the `slack` CLI. Supports direct messages, channel posts, file uploads, and thread replies.
c-timer
Timers, alarms, and pomodoro — set countdowns with native notifications.
c-telegram
Bidirectional Telegram bridge — talk to Claude from your phone. Built into OpenPaw.
c-system
macOS Swiss Army Knife — control volume, wifi, battery, dock, display, trash, firewall, screensaver, shutdown, and more via m-cli.
c-tracking
Track packages across UPS, FedEx, USPS, and DHL using the `ordercli` CLI. Look up tracking numbers, get current status, estimated delivery dates, and shipment history without visiting carrier websites.
c-network
DNS lookups with doggo and readable HTTP requests with httpie — modern networking tools for the terminal.
Didn't find tool you were looking for?