Skill

codex-setup

Install
1
Install the plugin
$
npx claudepluginhub sd0xdev/sd0x-dev-flow --plugin sd0x-dev-flow

Want just this skill?

Add to a custom plugin, then install with one command.

Description

Initialize sd0x-dev-flow infrastructure for Codex CLI and other non-Claude agents. Generates AGENTS.md, installs git hooks, copies runner scripts. Use when setting up a new project or after updating skills.

Tool Access

This skill is limited to using the following tools:

ReadGrepGlobEditWriteBash(node:*)Bash(git:*)Bash(ls:*)Bash(mkdir:*)Bash(cp:*)Bash(chmod:*)Bash(bash:*)Bash(cat:*)Bash(wc:*)
Supporting Assets
View in Repository
references/agents-kernel.md
Skill Content

Codex Setup

Trigger

  • Keywords: codex setup, codex init, agents.md, setup codex, initialize codex, codex doctor, codex sync
  • After: npx skills add sd0xdev/sd0x-dev-flow

Subcommands

CommandPurpose
initFirst-time setup: generate AGENTS.md + install hooks + copy scripts
doctorVerify installation integrity (files exist + hash match)
syncRe-generate AGENTS.md + update hooks/scripts after skill update

Default (no subcommand): init

init

Phase 1: Detect Host Context

  1. Find repo root: git rev-parse --show-toplevel
  2. Read package.json if present → extract name, scripts.test
  3. Read .claude/CLAUDE.md or CLAUDE.md → extract test command pattern
  4. Detect plugin root: find scripts/build-codex-artifacts.js relative to this skill

Phase 2: Generate AGENTS.md Kernel

node <plugin-root>/scripts/build-codex-artifacts.js \
  --project-dir <repo-root> \
  --output <repo-root>/AGENTS.md

If the file already exists, warn and ask before overwriting.

Verify output:

  • File exists and is non-empty
  • Size ≤ 24 KiB (wc -c < AGENTS.md ≤ 24576)
  • No unresolved placeholders ({PROJECT_NAME}, {VERSION}, {TEST_COMMAND})

Phase 3: Multi-Mode Hook Install

Install commit-msg and pre-push git hooks using priority-ordered detection:

PriorityConditionAction
1.husky/ directory existsAppend sourcing to Husky hooks
2git config core.hooksPath is setInstall to that path
3.git/hooks/ is writableDirect write
4FallbackWrite to .githooks/ + print git config core.hooksPath .githooks

Source scripts from plugin:

  • commit-msg-guard.shcommit-msg hook
  • pre-push-gate.shpre-push hook

Phase 4: Copy Runner Scripts

Copy these scripts to the host project:

SourceTarget
scripts/precommit-runner.js.sd0x/scripts/precommit-runner.js
scripts/verify-runner.js.sd0x/scripts/verify-runner.js
scripts/lib/utils.js.sd0x/scripts/lib/utils.js

Ensure target directories exist (mkdir -p).

Phase 5: Write State File

Write .sd0x/install-state.json to repo root:

{
  "sd0x_version": "<from plugin.json>",
  "agents_md_hash": "<git hash-object AGENTS.md>",
  "agents_md_size": <bytes>,
  "hooks_installed": {
    "commit-msg": { "hash": "<sha1>", "mode": "<husky|hooksPath|direct|fallback>" },
    "pre-push": { "hash": "<sha1>", "mode": "<mode>" }
  },
  "scripts_installed": {
    "precommit-runner.js": "<sha1>",
    "verify-runner.js": "<sha1>"
  },
  "generated_at": "<ISO8601>"
}

Sandbox Adaptation

Codex sandboxBehavior
workspace-write / danger-full-accessExecute all phases automatically
read-onlyOutput command list for manual execution

Detect sandbox: if mkdir -p or file write fails, switch to read-only output mode.

doctor

Checks

CheckMethodPassFail
AGENTS.md existstest -f AGENTS.mdFile foundMissing
AGENTS.md hash matchCompare git hash-object vs state fileMatchDrift detected
AGENTS.md size ≤ 24 KiBwc -c≤ 24576Oversized
Hooks installedCheck hook files exist in detected modePresentMissing
Scripts installedCheck .sd0x/scripts/ files existPresentMissing
Version matchCompare state sd0x_version vs current pluginMatchUpdate available

Output a summary table with pass/fail status for each check.

sync

  1. Re-run build-codex-artifacts.js → overwrite AGENTS.md
  2. Re-copy hook scripts (overwrite if changed)
  3. Re-copy runner scripts (overwrite if changed)
  4. Update .sd0x/install-state.json with new hashes

References

  • references/agents-kernel.md — AGENTS.md kernel template
Stats
Stars90
Forks12
Last CommitMar 9, 2026
Actions

Similar Skills