--- description: 查看各模型的思考模式现状(当前默认档位与可选档位) --- 用 Bash(Windows 用 git-bash)运行: ```bash THINK_SCRIPT="${ZCODE_THINKING_SCRIPT:-$(find ~/.zcode/plugins -maxdepth 4 -name thinking.mjs -path '*thinking-mode*' 2>/dev/null | head -1)}" [ -n "$THINK_SCRIPT" ] || THINK_SCRIPT="$(find ~/.zcode -maxdepth 8 -type f -path '*thinking-mode/scripts/thinking.mjs' 2>/dev/null | head -1)" [ -n "$THINK_SCRIPT" ] || { echo "找不到 thinking.mjs:插件未安装或不在默认位置,可用 ZCODE_THINKING_SCRIPT 指定路径"; exit 1; } node "$THINK_SCRIPT" status $ARGUMENTS ``` **把脚本输出原样展示给用户**。 用户附加要求:$ARGUMENTS