v0.6.0
What's New
Codex Compatibility Layer
Nexus Architect now works with both Claude Code and OpenAI Codex. A new AGENTS.md file serves as the Codex entry point, providing all the mapping rules Codex needs to use the same skill library.
- Command mapping:
/architect:<name>and/scalardb:<name>resolve toskills/<name>/SKILL.md - Tool substitutions: Claude Code tools (
Read,Write,Edit,Bash,Task,AskUserQuestion,WebFetch, etc.) are mapped to their Codex equivalents - Runtime path fallbacks:
.claude/docs/*→skills/common/references/*,.claude/rules/*→rules/* - Pipeline orchestrator note: explains that
pipeline/SKILL.mdfollowsskill-dependencies.yamland thatdisable-model-invocationis a Claude Code-only hint - Model recommendations: skill-to-model mapping table so Codex users know which skills benefit from a more capable model
- Mandatory hook enforcement: after editing any report Markdown or Mermaid diagram,
hooks/validate-frontmatter.shandhooks/validate-mermaid.shmust be run
Bug Fixes
- Migration skill path bug (affects Claude Code and Codex): subagent template paths in
migrate-mysql,migrate-oracle, andmigrate-postgresqlwere wrong.${CLAUDE_PLUGIN_ROOT}/subagents/<db>/is corrected to${CLAUDE_PLUGIN_ROOT}/skills/common/subagents/<db>/ - Migration skill fallback plugin name: Step 0 fallback searched for
*/scalardb-migration/*but the plugin is namedarchitect. Fixed to*/architect/* - Hook exit code:
validate-frontmatter.shandvalidate-mermaid.shnow correctly propagate a non-zero exit through the Claude CodePostToolUsehook path, enabling proper self-correction blocking
Documentation
docs/codex-usage.md/docs/codex-usage_ja.md: Codex setup and usage guidedocs/codex-compatibility-audit_ja.md: full behavioral diff between Claude Code and Codexdocs/codex-gap-analysis_ja.md: prioritized residual gap list with fix recommendationsdocs/codex-compatibility-worklog_ja.md: implementation work log- Updated
README.md,docs/getting-started.md, anddocs/getting-started_ja.mdwith Codex setup instructions