Jelajahi Sumber

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.
Jesse Vincent 2 bulan lalu
induk
melakukan
1f0c76e0b0
2 mengubah file dengan 0 tambahan dan 17 penghapusan
  1. 0 1
      .codex-plugin/plugin.json
  2. 0 16
      hooks/hooks-codex.json

+ 0 - 1
.codex-plugin/plugin.json

@@ -21,7 +21,6 @@
     "workflow"
     "workflow"
   ],
   ],
   "skills": "./skills/",
   "skills": "./skills/",
-  "hooks": "./hooks/hooks-codex.json",
   "interface": {
   "interface": {
     "displayName": "Superpowers",
     "displayName": "Superpowers",
     "shortDescription": "Planning, TDD, debugging, and delivery workflows for coding agents",
     "shortDescription": "Planning, TDD, debugging, and delivery workflows for coding agents",

+ 0 - 16
hooks/hooks-codex.json

@@ -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
-          }
-        ]
-      }
-    ]
-  }
-}