# Aichat

> 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.

- Skill: `javimosch/aichat` (Agent Skill)
- Install (CLI): `npx skillmds@latest add javimosch/aichat`
- Raw SKILL.md: https://api.skillmd.com/api/skills/javimosch/aichat/raw
- Safety review: PASS (external: skill-scanner PASS, skillspector CAUTION)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: javimosch (https://skillmd.com/u/javimosch)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/javimosch/aichat

---


# 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
```

