docs: 添加语义化 CLI 调用说明

- 用户语义指定 CLI 工具,系统自动调用
- 支持协同、并行、迭代、流水线等编排模式
- 示例:'使用 Gemini 和 Codex 协同分析'
This commit is contained in:
catlog22
2026-01-17 11:01:29 +08:00
parent 35c6605681
commit d6a2e0de59
2 changed files with 94 additions and 0 deletions

View File

@@ -138,6 +138,53 @@ qwen --version
---
## 🎭 Semantic CLI Invocation
Users can **semantically specify CLI tools** in prompts - the system automatically invokes the corresponding CLI for analysis.
### Basic Invocation
| User Prompt | System Action |
|-------------|---------------|
| "Use Gemini to analyze the auth module" | Auto-invoke `gemini` CLI for analysis |
| "Let Codex review this code" | Auto-invoke `codex` CLI for review |
| "Ask Qwen about performance optimization" | Auto-invoke `qwen` CLI for consultation |
### Multi-CLI Orchestration
Users can semantically orchestrate multiple CLIs in a single prompt:
| Pattern | User Prompt Example |
|---------|---------------------|
| 🔄 **Collaborative** | "Use Gemini and Codex to collaboratively analyze security vulnerabilities" |
| ⚡ **Parallel** | "Have Gemini, Codex, and Qwen analyze the architecture in parallel" |
| 🔁 **Iterative** | "Use Gemini to diagnose, then Codex to fix, iterate until resolved" |
| 🔗 **Pipeline** | "Gemini designs the solution, Codex implements, Claude reviews" |
### Examples
```text
# Single CLI invocation
User: "Use Gemini to analyze the database query performance"
→ System auto-calls: gemini CLI with analysis task
# Collaborative analysis
User: "Use Gemini and Codex to collaboratively review the authentication flow"
→ System auto-calls: gemini + codex CLIs, synthesizes results
# Parallel multi-perspective
User: "Have all available CLIs analyze this architecture design in parallel"
→ System auto-calls: gemini, codex, qwen in parallel → merged report
# Sequential pipeline
User: "Use Gemini to plan the refactoring, then Codex to implement it"
→ System auto-calls: gemini (plan) → codex (implement) sequentially
```
> 💡 **Key**: Just describe which CLI to use and what to do - CCW handles the invocation automatically.
---
## 🔍 ACE Tool Configuration
ACE (Augment Context Engine) provides powerful semantic code search.

View File

@@ -138,6 +138,53 @@ qwen --version
---
## 🎭 语义化 CLI 调用
用户可以在提示词中 **语义指定 CLI 工具** - 系统自动调用对应的 CLI 进行分析。
### 基础调用
| 用户提示词 | 系统动作 |
|------------|----------|
| "使用 Gemini 分析 auth 模块" | 自动调用 `gemini` CLI 进行分析 |
| "让 Codex 审查这段代码" | 自动调用 `codex` CLI 进行审查 |
| "问问 Qwen 性能优化建议" | 自动调用 `qwen` CLI 进行咨询 |
### 多 CLI 编排
用户可以在单个提示词中语义编排多个 CLI
| 模式 | 用户提示词示例 |
|------|----------------|
| 🔄 **协同分析** | "使用 Gemini 和 Codex 协同分析安全漏洞" |
| ⚡ **并行执行** | "让 Gemini、Codex、Qwen 并行分析架构设计" |
| 🔁 **迭代优化** | "用 Gemini 诊断问题,然后 Codex 修复,迭代直到解决" |
| 🔗 **流水线** | "Gemini 设计方案Codex 实现Claude 审查" |
### 示例
```text
# 单 CLI 调用
用户: "使用 Gemini 分析数据库查询性能"
→ 系统自动调用: gemini CLI 执行分析任务
# 协同分析
用户: "使用 Gemini 和 Codex 协同审查认证流程"
→ 系统自动调用: gemini + codex CLI综合分析结果
# 并行多视角
用户: "让所有可用的 CLI 并行分析这个架构设计"
→ 系统自动调用: gemini, codex, qwen 并行执行 → 合并报告
# 顺序流水线
用户: "用 Gemini 规划重构方案,然后 Codex 实现"
→ 系统自动调用: gemini规划→ codex实现顺序执行
```
> 💡 **核心**:只需描述使用哪个 CLI 做什么 - CCW 自动处理调用。
---
## ACE Tool 配置
ACE (Augment Context Engine) 提供强大的语义代码搜索能力。