Use this skill when the user wants to chat with LLMs from the terminal — OpenAI, Claude, Gemini, local models, RAG, and multi-turn conversations without leaving the shell.
Scanned 9/6/2026
Install to Claude Code
npx -y skills add javimosch/supercli --skill quickstart --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Quickstart?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/javimosch-quickstart-d3943420)More formats (shields.io, HTML) on the badges page.
---
name: aichat
description: Use this skill when the user wants to chat with LLMs from the terminal — OpenAI, Claude, Gemini, local models, RAG, and multi-turn conversations without leaving the shell.
---
# aichat Plugin
All-in-one LLM CLI. Chat with multiple providers, run one-shot prompts, manage sessions, and pipe shell output into AI workflows.
## Installation
```bash
cargo install aichat
# or download from https://github.com/sigoden/aichat/releases
```
Configure API keys in `~/.config/aichat/config.yaml` or via environment variables (`OPENAI_API_KEY`, `ANTHROPIC_API_KEY`, etc.).
## Basic Usage
```bash
# Interactive chat session
aichat
# One-shot prompt
aichat "Explain this error: connection refused on port 5432"
# Specify model and role
aichat --model gpt-4o "Summarize this README"
# Pipe command output into a prompt
git diff | aichat "Review these changes for bugs"
```
## Common Patterns
```bash
# Use a system role / preset
aichat --role coder "Refactor this function for clarity"
# RAG over local files
aichat --rag ./docs "How do I configure authentication?"
# Execute generated shell commands (use with care)
aichat --execute "List large files in /tmp"
# Session history
aichat --session project-alpha
```
## Usage Examples
- "Ask Claude to explain this stack trace"
- "Chat interactively with GPT-4 in the terminal"
- "Summarize the output of this git log"
## SuperCLI
```bash
sc aichat _ _ "What does this regex match?"
sc aichat _ _ --model claude-3-5-sonnet "Draft a commit message"
sc plugins learn aichat
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!