cli-anything-ollama
Command-line interface for Ollama - Local LLM inference and model management via Ollama REST API. Designed for AI agents and power users who need to manage models, generate text, chat, and create embeddings without a GUI.
What this skill does
# cli-anything-ollama Local LLM inference and model management via the Ollama REST API. Designed for AI agents and power users who need to manage models, generate text, chat, and create embeddings without a GUI. ## Installation This CLI is installed as part of the cli-anything-ollama package: ```bash pip install cli-anything-ollama ``` **Prerequisites:** - Python 3.10+ - Ollama must be installed and running (`ollama serve`) ## Usage ### Basic Commands ```bash # Show help cli-anything-ollama --help # Start interactive REPL mode cli-anything-ollama # List available models cli-anything-ollama model list # Run with JSON output (for agent consumption) cli-anything-ollama --json model list ``` ### REPL Mode When invoked without a subcommand, the CLI enters an interactive REPL session: ```bash cli-anything-ollama # Enter commands interactively with tab-completion and history ``` ## Command Groups ### Model Model management commands. | Command | Description | |---------|-------------| | `list` | List locally available models | | `show` | Show model details (parameters, template, license) | | `pull` | Download a model from the Ollama library | | `rm` | Delete a model from local storage | | `copy` | Copy a model to a new name | | `ps` | List models currently loaded in memory | ### Generate Text generation and chat commands. | Command | Description | |---------|-------------| | `text` | Generate text from a prompt | | `chat` | Send a chat completion request | ### Embed Embedding generation commands. | Command | Description | |---------|-------------| | `text` | Generate embeddings for text | ### Server Server status and info commands. | Command | Description | |---------|-------------| | `status` | Check if Ollama server is running | | `version` | Show Ollama server version | ### Session Session state commands. | Command | Description | |---------|-------------| | `status` | Show current session state | | `history` | Show chat history for current session | ## Examples ### List and Pull Models ```bash # List available models cli-anything-ollama model list # Pull a model cli-anything-ollama model pull llama3.2 # Show model details cli-anything-ollama model show llama3.2 ``` ### Generate Text ```bash # Stream text (default) cli-anything-ollama generate text --model llama3.2 --prompt "Explain quantum computing in one sentence" # Non-streaming with JSON output (for agents) cli-anything-ollama --json generate text --model llama3.2 --prompt "Hello" --no-stream ``` ### Chat ```bash # Single-turn chat cli-anything-ollama generate chat --model llama3.2 --message "user:What is Python?" # Multi-turn chat cli-anything-ollama generate chat --model llama3.2 \ --message "user:What is Python?" \ --message "user:How does it compare to JavaScript?" # Chat from JSON file cli-anything-ollama generate chat --model llama3.2 --file messages.json ``` ### Embeddings ```bash cli-anything-ollama embed text --model nomic-embed-text --input "Hello world" cli-anything-ollama embed text --model nomic-embed-text --input "Hello" --input "World" ``` ### Interactive REPL Session Start an interactive session for exploratory use. ```bash cli-anything-ollama # Enter commands interactively # Use 'help' to see available commands ``` ### Connect to Remote Host ```bash cli-anything-ollama --host http://192.168.1.100:11434 model list ``` ## State Management The CLI maintains lightweight session state: - **Current host URL**: Configurable via `--host` - **Chat history**: Tracked for multi-turn conversations in REPL - **Last used model**: Shown in REPL prompt ## Output Formats All commands support dual output modes: - **Human-readable** (default): Tables, colors, formatted text - **Machine-readable** (`--json` flag): Structured JSON for agent consumption ```bash # Human output cli-anything-ollama model list # JSON output for agents cli-anything-ollama --json model list ``` ## For AI Agents When using this CLI programmatically: 1. **Always use `--json` flag** for parseable output 2. **Check return codes** - 0 for success, non-zero for errors 3. **Parse stderr** for error messages on failure 4. **Use `--no-stream`** for generate/chat to get complete responses 5. **Verify Ollama is running** with `server status` before other commands ## More Information - Full documentation: See README.md in the package - Test coverage: See TEST.md in the package - Methodology: See HARNESS.md in the cli-anything-plugin ## Version 1.0.1
Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.