From 1f0c76e0b04e26039fc3bb6f309cc213482cadb2 Mon Sep 17 00:00:00 2001 From: Jesse Vincent Date: Wed, 24 Jun 2026 19:23:09 -0700 Subject: [PATCH] Remove Codex hooks Codex reliably triggers skills on its own, and the SessionStart hook made the UX worse rather than better. Drop the Codex hook config and its registration in the plugin manifest. --- .codex-plugin/plugin.json | 1 - hooks/hooks-codex.json | 16 ---------------- 2 files changed, 17 deletions(-) delete mode 100644 hooks/hooks-codex.json diff --git a/.codex-plugin/plugin.json b/.codex-plugin/plugin.json index 7f8ae7b6..c98b525f 100644 --- a/.codex-plugin/plugin.json +++ b/.codex-plugin/plugin.json @@ -21,7 +21,6 @@ "workflow" ], "skills": "./skills/", - "hooks": "./hooks/hooks-codex.json", "interface": { "displayName": "Superpowers", "shortDescription": "Planning, TDD, debugging, and delivery workflows for coding agents", diff --git a/hooks/hooks-codex.json b/hooks/hooks-codex.json deleted file mode 100644 index 0719e534..00000000 --- a/hooks/hooks-codex.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "hooks": { - "SessionStart": [ - { - "matcher": "startup|clear|compact", - "hooks": [ - { - "type": "command", - "command": "\"${PLUGIN_ROOT}/hooks/run-hook.cmd\" session-start-codex", - "async": false - } - ] - } - ] - } -}