﻿---
title: "0.152 起 update_plan 默认关；规划工具要自己打开"
summary: "升级后如果模型不再主动写计划，不一定是坏了。打开 tools.update_plan.enabled，并新开会话。这和 /plan 模式不是同一件事。"
category: config
level: starter
surfaces: [cli, app]
tags: ["update_plan", "/plan", "0.152"]
canonical: /tips/update-plan-opt-in/
---

# 0.152 起 update_plan 默认关；规划工具要自己打开

升级后如果模型不再主动写计划，不一定是坏了。打开 tools.update_plan.enabled，并新开会话。这和 /plan 模式不是同一件事。

0.152 把规划工具改成默认关。升级后对话变「直接动手、不先列步骤」，先查这个键，不要先换模型：

```toml
[tools.update_plan]
enabled = true
```

顶层也可以写成 `tools.update_plan.enabled = true`。改完必须新开会话。`codex --version` 低于 0.152 没有这个默认变化。

这不是 TUI 的 `/plan`，也不是 `plan_mode_reasoning_effort`。`/plan` 是先规划再实现的会话模式；`update_plan` 是模型能不能调用规划工具去改任务清单。只想偶尔先规划，用 `/plan` 即可，不必开这个工具。

依赖模型中途更新计划的工作流，才写进用户或项目 config。对照本机 `/help` 和 changelog，不要从旧博客抄回「规划工具默认开」。

## 来源

- [openai/codex rust-v0.152.0](https://github.com/openai/codex/releases/tag/rust-v0.152.0)
- [X · @coinweight](https://x.com/coinweight/status/2094863172343894172)
