Skill: codex-claudeception-migration
When to use
- The repository already contains
.claude/skillsor Claude-specific instructions and must be migrated to Codex. - The team wants to preserve post-task review -> skill extraction, without depending on Claude hooks.
- You need an MVP first (directories + docs + manual flow) before adding automation.
Inputs
- Existing Claudeception assets (README, SKILL files, templates, scripts)
- Target Codex constraints (writable paths, AGENTS rules, available tools)
- Migration scope (MVP only or full migration)
Steps
- Identify non-portable parts: Claude hooks, Claude-specific tool names, Claude command entrypoints.
- Map structure:
.claude/skills/*->skills/*; templates ->docs/orscripts/. - Add mandatory post-task review and quality gates in
AGENTS.md. - Standardize skill format with frontmatter + when/steps/validation/anti-patterns.
- Create one real migrated skill and validate usability before investing in automation.
Validation
- Checkpoint 1: project includes
AGENTS.md,skills/skill-template.md, and migration checklist docs. - Checkpoint 2: at least one formal skill exists at
skills/<topic>/SKILL.md. - Checkpoint 3: that skill has explicit triggers, executable steps, and observable verification points.
- Checkpoint 4: later tasks can retrieve and reuse the skill by scenario match.
Anti-patterns
- Copying Claude hook config without Codex-executable replacement.
- Overly generic descriptions that cannot be matched by keyword/semantics.
- Extracting one-off experience as a skill with no reuse value.
- Implementing complex automation before validating examples.
Example
- Scenario: migrate Claudeception into Codex by building
codexceptionfirst. - Output: directory scaffold, AGENTS review rules, migration checklist, and one formal migration skill.
- Outcome: team can start manual consolidation now and automate later.