Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

scaffold-codex-hooksscaffold Codex hooks 搜索

Agent Skill

scaffold-codex-hooks 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

396

周安装

17

GitHub Stars

13

下载量

139
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:scaffold-codex-hooks(scaffold Codex hooks 搜索)
来源仓库:https://github.com/jpcaparas/skills
仓库路径:skills/scaffold-codex-hooks
安装命令:
npx skills add https://github.com/jpcaparas/skills --skill scaffold-codex-hooks
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/jpcaparas/skills --skill scaffold-codex-hooks

简介

scaffold-codex-hooks 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于关键词搜索、任务场景匹配或来源线索筛选等研究检索场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前需确认权限范围、维护状态,注意是否触发联网或文件操作。
  • 建议结合原始 README 和仓库内容进一步验证具体用法和功能边界。

SKILL.md

scaffold-codex-hooks

Audit the target project first, then scaffold Codex hooks with a deterministic managed layout around the current official hook model.

Decision Tree

What is the user asking for?

  • New project-local Codex hooks in a repo with no hook setup yet: Verify the live official docs and schemas, audit the repo, inspect the effective feature flag, enable it if needed, then scaffold.
  • Existing .codex/hooks.json, .codex/config.toml, or .codex/hooks/ files: Audit what exists first, choose additive or overhaul, then refresh only the managed hook layer.
  • Hooks that exist on disk but never seem to affect Codex: Inspect the effective codex_hooks feature first. If it is still off, enable it deliberately. If it is on, remember that repo-local .codex/config.toml only loads in trusted projects, then debug hooks.json.
  • Explanation only, not implementation: Read references/hook-events.md, references/feature-flag.md, and references/scaffold-layout.md, then answer without scaffolding.

Quick Reference

TaskAction
Verify the current official Codex hook modelRead https://developers.openai.com/codex/hooks, https://developers.openai.com/codex/config-basic, and the generated schemas listed in assets/hook-events.json
Audit a target repoRun scripts/audit_project.sh /path/to/project
Inspect the effective codex_hooks featureRun python3 scripts/check_hooks_feature.py --project /path/to/project --json
Enable hooks in project configRun python3 scripts/check_hooks_feature.py --project /path/to/project --enable --scope project
Enable hooks in user configRun python3 scripts/check_hooks_feature.py --project /path/to/project --enable --scope user
Understand the current event catalogRead references/hook-events.md
Decide additive vs overhaulRead references/merge-strategy.md
Generate or refresh the managed hook scaffoldRun `scripts/scaffold_hooks.sh --project /path/to/project --plan /path/to/plan.json --mode additive
Merge generated handlers into .codex/hooks.jsonLet scripts/scaffold_hooks.sh call scripts/merge_hooks_json.sh, or run the merge script directly
Regenerate the hooks README in a target projectRun scripts/render_hooks_readme.sh --project /path/to/project --plan /path/to/plan.json

Non-Negotiable Workflow

  1. Verify the live official Codex hook docs before planning any scaffold.
  2. Compare the live docs, current schemas, and assets/hook-events.json before assuming the event set or output contract is unchanged.
  3. Audit the target project in detail before deciding which events to enable or which commands to run.
  4. Inspect the effective codex_hooks feature in the target project before treating any repo-local hooks.json as active.
  5. If the feature is off, enable it deliberately in the right scope:

- default to project scope for shared repo scaffolds - use user scope for personal/global hooks or when the repo should not commit .codex/config.toml

  1. Inspect any existing .codex/config.toml, .codex/hooks.json, .codex/hooks/, AGENTS.md, README*, and other automation files before choosing a merge mode.
  2. Produce or update a concrete hook plan JSON. Keep the scaffold deterministic by putting project-specific judgment into the plan, not into the scaffold script.
  3. Scaffold every current official event as a commented bash stub under the managed hook root, even if that event stays disabled in hooks.json.
  4. Wire only the enabled events into .codex/hooks.json so inactive stubs stay cheap.
  5. Regenerate .codex/hooks/README.md so the target project always has a readable event map.
  6. If hooks still appear inactive after a real scaffold, re-check the effective feature state and remember that project config files only load in trusted projects.

Feature First Heuristic

Check codex_hooks early whenever any of these signals appear:

  • the user asks to scaffold Codex hooks into a repo
  • .codex/hooks.json exists, but nothing seems to happen
  • the user is unsure whether the feature flag is on
  • a repo-local .codex/config.toml exists, but the effective feature still looks off

Use this flow:

  1. Canonicalize the target project path first.
  2. Run python3 scripts/check_hooks_feature.py --project /path/to/project --json.
  3. If the effective status is off, enable the feature deliberately:

- --scope project for shared repo-local setups - --scope user for personal/global setups

  1. Re-run the inspection after enabling.
  2. Only then spend time debugging hooks.json, matcher choices, or hook script logic.

Live Docs First

The official Codex docs are the source of truth:

  • https://developers.openai.com/codex/hooks
  • https://developers.openai.com/codex/config-basic
  • https://developers.openai.com/codex/config-reference

For exact wire formats and current parser behavior, also verify:

  • https://github.com/openai/codex/tree/main/codex-rs/hooks/schema/generated
  • https://raw.githubusercontent.com/openai/codex/main/codex-rs/hooks/src/engine/discovery.rs
  • https://raw.githubusercontent.com/openai/codex/main/codex-rs/hooks/src/engine/config.rs
  • https://raw.githubusercontent.com/openai/codex/main/codex-rs/hooks/src/events/common.rs

Use the article at https://reading.sh/codex-hooks-just-gave-you-back-complete-control-over-your-code-57d044bcae1b as secondary material for practical patterns, not as the source of truth. Early hook writeups drifted as the feature evolved.

Project Analysis Rules

Before choosing any hook structure, inspect:

  • repo root and workspace shape
  • whether the project already has .codex/config.toml, .codex/hooks.json, or .codex/hooks/
  • languages and package managers
  • build, test, lint, format, and validation entry points
  • monorepo tools like Turborepo, Nx, pnpm workspaces, Bun workspaces, Cargo workspaces, or custom task runners
  • existing AI instructions such as AGENTS.md, project rules, or repo automation docs
  • existing Git hooks, Husky, Lefthook, or CI gates
  • sensitive paths like .env, secrets, lockfiles, generated code, migrations, and infra directories
  • whether the hook setup should be shareable in repo config or kept user-local

Run scripts/audit_project.sh first, then read references/project-analysis.md when you need the full checklist.

Deterministic vs Project-Specific Work

Keep these parts deterministic:

  • managed hook root path
  • event stub filenames
  • generated hooks.generated.json shape
  • merge behavior for previously managed hooks
  • hooks README generation
  • event manifest coverage for every current official Codex hook event
  • feature-flag inspection and reporting

Allow these parts to stay project-specific:

  • which events are enabled
  • matcher regexes for supported events
  • timeouts and status messages
  • whether feature enablement belongs in project or user config
  • the actual logic inside enabled event scripts
  • whether the refresh is additive or overhaul

Repeat-Run Rules

When the skill is invoked again against a project:

  • Re-verify the live docs and schemas before assuming the event set is unchanged.
  • Re-audit the project before assuming the current hook plan still fits.
  • Re-check the effective feature state before assuming repo-local hooks are active.
  • Preserve non-managed hooks by default.
  • Treat previously generated hooks under the managed root as replaceable in overhaul mode.
  • Treat previously generated hooks as append-only in additive mode unless the managed layer or README is stale.
  • If the official event set or parser rules changed, update the scaffold inputs first.

Scaffold Rules

  • Generate bash scripts, not Python, for the managed runtime hook stubs.
  • Comment the generated bash stubs with the event-specific input and output contract.
  • Default to a managed root of .codex/hooks/generated.
  • Default to a hooks file target of .codex/hooks.json.
  • Default to enabling codex_hooks in .codex/config.toml for shared repo scaffolds.
  • Use ~/.codex/config.toml only when the hook setup should stay personal or machine-local.
  • Keep one managed script per official event so the event map stays obvious.
  • Keep the merged hooks.json deterministic: remove only previously managed handlers, never unrelated custom hooks.
  • Never assume async, prompt, or agent hooks work today. The current runtime skips them.
  • Never pretend PreToolUse or PostToolUse can currently see Write, MCP, WebSearch, or every shell invocation. Today the useful matcher value is Bash.
  • Treat Stop carefully. For that event, decision: "block" means "continue Codex with this new prompt", not "reject the turn".

Reading Guide

NeedRead
Full audit checklist and planning questionsreferences/project-analysis.md
How to inspect and enable codex_hooks safelyreferences/feature-flag.md
Current official event list, matcher support, and output semanticsreferences/hook-events.md
Managed folder layout and plan file shapereferences/scaffold-layout.md
Additive versus overhaul behaviorreferences/merge-strategy.md
Runtime limits, docs drift, and fail-open trapsreferences/gotchas.md

Operational Scripts

  • scripts/audit_project.sh builds a project profile from real repo signals.
  • scripts/check_hooks_feature.py inspects or enables codex_hooks in user or project config.
  • scripts/scaffold_hooks.sh renders the managed hook tree, manifest, fragment, README, and feature setup.
  • scripts/merge_hooks_json.sh preserves non-managed handlers while replacing previously managed ones.
  • scripts/render_hooks_readme.sh rebuilds .codex/hooks/README.md from the manifest and current plan.
  • scripts/validate.py checks structure, frontmatter, manifest integrity, and cross-references.
  • scripts/test_skill.py runs lightweight validation plus temp-project integration checks.

Gotchas

  1. PreToolUse and PostToolUse are Bash-only today. A regex like Edit|Write is valid, but it will not match anything useful in current Codex.
  2. matcher is ignored for UserPromptSubmit and Stop. Do not design logic that depends on those matchers.
  3. async, prompt, and agent parse in config shapes, but the current runtime skips them with warnings.
  4. Multiple matching command hooks for the same event run concurrently. One hook cannot stop another matching hook from starting.
  5. PostToolUse cannot undo command side effects. At best it can replace the feedback Codex sees next.
  6. Stop with decision: "block" continues Codex with a new prompt. It does not reject the turn.
  7. Repo-local .codex/config.toml only loads in trusted projects. If you enable the feature in project scope but the project is not trusted, the effective feature can still look off.
  8. Early blog posts described smaller event sets. Re-check the official docs and schemas every time you scaffold for real.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.71%
按下载量换算50

Claude

29.11%
按下载量换算40

Cursor

19.22%
按下载量换算27

Gemini CLI

8.71%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills