From c9604be5e1089c38d10047f65ab531a25ea14fc5 Mon Sep 17 00:00:00 2001 From: Huynh Duc Dung Date: Thu, 22 Jan 2026 17:04:36 +0800 Subject: [PATCH] docs: add Ollama to Built-in Providers table and usage examples Update README.md to include: - Ollama and Ollama Cloud in the Built-in Providers table - Ollama integration note with setup instructions - ccs ollama in Basic Commands section - Ollama example in Parallel Workflows Ref: https://github.com/kaitranntt/ccs/pull/354 Co-Authored-By: Claude --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a0382846..31d4cc0b 100644 --- a/README.md +++ b/README.md @@ -95,6 +95,8 @@ The dashboard provides visual management for all account types: | **Kiro** | OAuth | `ccs kiro` | AWS CodeWhisperer (Claude-powered) | | **Antigravity** | OAuth | `ccs agy` | Alternative routing | | **OpenRouter** | API Key | `ccs openrouter` | 300+ models, unified API | +| **Ollama** | Local | `ccs ollama` | Local open-source models, privacy | +| **Ollama Cloud** | API Key | `ccs ollama-cloud` | Cloud-hosted open-source models | | **GLM** | API Key | `ccs glm` | Cost-optimized execution | | **Kimi** | API Key | `ccs kimi` | Long-context, thinking mode | | **Azure Foundry** | API Key | `ccs foundry` | Claude via Microsoft Azure | @@ -104,6 +106,8 @@ The dashboard provides visual management for all account types: **OpenRouter Integration** (v7.0.0): CCS v7.0.0 adds OpenRouter with interactive model picker, dynamic discovery, and tier mapping (opus/sonnet/haiku). Create via `ccs api create --preset openrouter` or dashboard. +**Ollama Integration**: Run local open-source models (qwen3-coder, gpt-oss:20b) with full privacy. Use `ccs api create --preset ollama` - requires [Ollama v0.14.0+](https://ollama.com) installed. For cloud models, use `ccs api create --preset ollama-cloud`. + **Azure Foundry**: Use `ccs api create --preset foundry` to set up Claude via Microsoft Azure AI Foundry. Requires Azure resource and API key from [ai.azure.com](https://ai.azure.com). ![OpenRouter API Profiles](assets/screenshots/api-profiles-openrouter.webp) @@ -131,6 +135,7 @@ ccs codex # OpenAI Codex (OAuth) ccs kiro # Kiro/AWS CodeWhisperer (OAuth) ccs ghcp # GitHub Copilot (OAuth device flow) ccs agy # Antigravity (OAuth) +ccs ollama # Local Ollama (no API key needed) ccs glm # GLM (API key) ``` @@ -145,7 +150,10 @@ ccs work "design the authentication system" # Terminal 2: Execution (GLM - cost optimized) ccs glm "implement the user service from the plan" -# Terminal 3: Review (Gemini) +# Terminal 3: Local testing (Ollama - offline, privacy) +ccs ollama "run tests and generate coverage report" + +# Terminal 4: Review (Gemini) ccs gemini "review the implementation for security issues" ```