通过自定义斜杠指令,可以让 qwen 和 gemini 一起思考,再也不怕掉链子了

自定义指令如下:
# ~/.claude/commands/ask.md
---
allowed-tools: Bash
description: Send the question to qwen and gemini
---
1. $ARGUMENTS
2. Send the question to qwen and gemini with the following command:
```bash
qwen -p "question" & gemini -p "question"
- Summarize and compare responses
使用方法:
<pre dir="auto" class="codeblock-buttons"><div class="codeblock-button-wrapper"></div></pre>
```bash
/ask <你的问题>
缺点是 -p
指令是一次性会话,qwen 和 gemini 无法获得完整上下文内容。
所以需要让 Claude Code 总结好问题再发出去。