﻿---
title: "Interrupt 打断清理钩子"
filename: "~/.codex/config.toml"
canonical: /templates/interrupt-hook/
---

# Interrupt 打断清理钩子

Esc 打断顶层轮才跑。默认 1 秒、上限 3 秒。不要抄 600 秒超时。

```
[[hooks.Interrupt]]

[[hooks.Interrupt.hooks]]
type = "command"
command = '/usr/bin/python3 "$(git rev-parse --show-toplevel)/.codex/hooks/on_interrupt.py"'
timeout = 2
statusMessage = "Saving interrupted turn"

```
