Access and interact with Large Language Models from the command line using Simon Willison's llm CLI tool. Supports OpenAI, Anthropic, Gemini, Llama, and dozens of other models via plugins. Features include chat sessions, embeddings, structured data extraction with schemas, prompt templates, conversation logging, and tool use. This skill is triggered when the user says things like "run a prompt with llm", "use the llm command", "call an LLM from the command line", "set up llm API keys", "install…
Access and interact with Large Language Models from the command line using Simon Willison's llm CLI tool.
Supports OpenAI, Anthropic, Gemini, Llama, and dozens of other models via plugins.
Features include chat sessions, embeddings, structured data extraction with schemas, prompt templates, conversation logging, and tool use.
This skill is triggered when the user says things like "run a prompt with llm", "use the llm command", "call an LLM from the command line", "set up llm API keys", "install llm plugins", "create embeddings", or "extract structured data from text".
Also in this package
Other skills from smithery/neversight · top by installs.
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Claude CodeDeclared
CursorNot declared
CodexNot declared
GitHub CopilotNot declared
WindsurfNot declared
Gemini CLIDeclared
ClineNot declared
OpenCodeNot declared
Skill metadata
Parsed from SKILL.md frontmatter.
Declared agentsclaude-codegemini
Package contents
Files included with this skill beyond the listing page.
skill mdSKILL.md5,065 B
docsSUMMARY.md585 B
History
First recorded snapshot · 0 installs
SKILL.md
LLM CLI Tool Skill
A CLI tool and Python library for interacting with Large Language Models including OpenAI, Anthropic's Claude, Google's Gemini, Meta's Llama, and dozens of others via remote APIs or locally installed models.
When to Use This Skill
Use this skill when:
Running prompts against LLMs from the command line
Managing conversations and chat sessions
Working with embeddings for semantic search
Extracting structured data using schemas
Installing and configuring LLM plugins
Managing API keys for various providers
Using templates for reusable prompts
Logging and analyzing LLM interactions
Quick Reference
Basic Commands
# Run a prompt
llm "Your prompt here"
# Use a specific model
llm -m claude-4-opus "Your prompt"
# Chat mode
llm chat -m gpt-4.1
# With attachments (images, audio, video)
llm "describe this" -a image.jpg
# Pipe content
cat file.py | llm -s "Explain this code"
Key Management
llm keys set openai
llm keys set anthropic
llm keys set gemini