Skip to content

feat: replace platforms/codex/ with real Codex plugin#129

Merged
tzachbon merged 23 commits intomainfrom
worktree-gleaming-whistling-pebble
Apr 7, 2026
Merged

feat: replace platforms/codex/ with real Codex plugin#129
tzachbon merged 23 commits intomainfrom
worktree-gleaming-whistling-pebble

Conversation

@tzachbon
Copy link
Copy Markdown
Owner

@tzachbon tzachbon commented Apr 7, 2026

Summary

  • Built a proper Codex plugin at plugins/ralph-specum-codex/ using the official OpenAI Codex plugin API (.codex-plugin/plugin.json manifest, marketplace entry, Stop hook)
  • Migrated all 15 skills from platforms/codex/ with content synced to Claude plugin v4.9.1
  • Added 9 agent-config TOML templates, stop-watcher hook (Codex {"decision":"block"} format), README with installation and migration guides
  • Removed platforms/codex/ in a separate commit for safe rollback
  • 14 new BATS tests, updated existing tests and CI workflows, version-sync helper

What changed

Before After
15 loose skills at platforms/codex/ (v4.8.4) 1 plugin at plugins/ralph-specum-codex/ (v4.9.1)
No plugin manifest .codex-plugin/plugin.json
No marketplace entry .agents/plugins/marketplace.json
No hooks Stop hook for auto-execution loop
No agent configs 9 .toml.template bootstrap files
Missing epic.md template All 10 templates synced
4 references (280 lines) 4 references updated with verification layers, failure recovery, execution paths (354 lines)

Test plan

  • bats tests/codex-plugin.bats passes (14 structure tests)
  • bats tests/codex-platform.bats passes (updated paths)
  • bats tests/codex-platform-scripts.bats passes (updated paths)
  • bash tests/helpers/version-sync.sh reports versions in sync
  • CI workflows trigger on plugins/ralph-specum-codex/** changes

@coderabbitai
Copy link
Copy Markdown

coderabbitai bot commented Apr 7, 2026

Warning

Rate limit exceeded

@tzachbon has exceeded the limit for the number of commits that can be reviewed per hour. Please wait 12 minutes and 56 seconds before requesting another review.

Your organization is not enrolled in usage-based pricing. Contact your admin to enable usage-based pricing to continue reviews beyond the rate limit, or try again in 12 minutes and 56 seconds.

⌛ How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

🚦 How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout.

Please see our FAQ for further information.

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 2a00266c-50db-4814-ba1a-0839c4794fd1

📥 Commits

Reviewing files that changed from the base of the PR and between 91fa514 and 7c785b8.

📒 Files selected for processing (83)
  • .agents/plugins/marketplace.json
  • .github/workflows/bats-tests.yml
  • .github/workflows/codex-version-check.yml
  • .github/workflows/plugin-version-check.yml
  • README.md
  • platforms/codex/README.md
  • platforms/codex/manifest.json
  • platforms/codex/skills/ralph-specum/assets/templates/settings-template.md
  • platforms/codex/skills/ralph-specum/assets/templates/tasks.md
  • plugins/ralph-specum-codex/.codex-plugin/plugin.json
  • plugins/ralph-specum-codex/README.md
  • plugins/ralph-specum-codex/agent-configs/README.md
  • plugins/ralph-specum-codex/agent-configs/architect-reviewer.toml.template
  • plugins/ralph-specum-codex/agent-configs/product-manager.toml.template
  • plugins/ralph-specum-codex/agent-configs/qa-engineer.toml.template
  • plugins/ralph-specum-codex/agent-configs/refactor-specialist.toml.template
  • plugins/ralph-specum-codex/agent-configs/research-analyst.toml.template
  • plugins/ralph-specum-codex/agent-configs/spec-executor.toml.template
  • plugins/ralph-specum-codex/agent-configs/spec-reviewer.toml.template
  • plugins/ralph-specum-codex/agent-configs/task-planner.toml.template
  • plugins/ralph-specum-codex/agent-configs/triage-analyst.toml.template
  • plugins/ralph-specum-codex/assets/bootstrap/AGENTS.md
  • plugins/ralph-specum-codex/assets/bootstrap/ralph-specum.local.md
  • plugins/ralph-specum-codex/hooks/stop-watcher.sh
  • plugins/ralph-specum-codex/references/parity-matrix.md
  • plugins/ralph-specum-codex/references/path-resolution.md
  • plugins/ralph-specum-codex/references/state-contract.md
  • plugins/ralph-specum-codex/references/workflow.md
  • plugins/ralph-specum-codex/schemas/spec.schema.json
  • plugins/ralph-specum-codex/scripts/count_tasks.py
  • plugins/ralph-specum-codex/scripts/merge_state.py
  • plugins/ralph-specum-codex/scripts/resolve_spec_paths.py
  • plugins/ralph-specum-codex/skills/ralph-specum-cancel/SKILL.md
  • plugins/ralph-specum-codex/skills/ralph-specum-cancel/agents/openai.yaml
  • plugins/ralph-specum-codex/skills/ralph-specum-design/SKILL.md
  • plugins/ralph-specum-codex/skills/ralph-specum-design/agents/openai.yaml
  • plugins/ralph-specum-codex/skills/ralph-specum-feedback/SKILL.md
  • plugins/ralph-specum-codex/skills/ralph-specum-feedback/agents/openai.yaml
  • plugins/ralph-specum-codex/skills/ralph-specum-help/SKILL.md
  • plugins/ralph-specum-codex/skills/ralph-specum-help/agents/openai.yaml
  • plugins/ralph-specum-codex/skills/ralph-specum-implement/SKILL.md
  • plugins/ralph-specum-codex/skills/ralph-specum-implement/agents/openai.yaml
  • plugins/ralph-specum-codex/skills/ralph-specum-index/SKILL.md
  • plugins/ralph-specum-codex/skills/ralph-specum-index/agents/openai.yaml
  • plugins/ralph-specum-codex/skills/ralph-specum-refactor/SKILL.md
  • plugins/ralph-specum-codex/skills/ralph-specum-refactor/agents/openai.yaml
  • plugins/ralph-specum-codex/skills/ralph-specum-requirements/SKILL.md
  • plugins/ralph-specum-codex/skills/ralph-specum-requirements/agents/openai.yaml
  • plugins/ralph-specum-codex/skills/ralph-specum-research/SKILL.md
  • plugins/ralph-specum-codex/skills/ralph-specum-research/agents/openai.yaml
  • plugins/ralph-specum-codex/skills/ralph-specum-start/SKILL.md
  • plugins/ralph-specum-codex/skills/ralph-specum-start/agents/openai.yaml
  • plugins/ralph-specum-codex/skills/ralph-specum-status/SKILL.md
  • plugins/ralph-specum-codex/skills/ralph-specum-status/agents/openai.yaml
  • plugins/ralph-specum-codex/skills/ralph-specum-switch/SKILL.md
  • plugins/ralph-specum-codex/skills/ralph-specum-switch/agents/openai.yaml
  • plugins/ralph-specum-codex/skills/ralph-specum-tasks/SKILL.md
  • plugins/ralph-specum-codex/skills/ralph-specum-tasks/agents/openai.yaml
  • plugins/ralph-specum-codex/skills/ralph-specum-triage/SKILL.md
  • plugins/ralph-specum-codex/skills/ralph-specum-triage/agents/openai.yaml
  • plugins/ralph-specum-codex/skills/ralph-specum/SKILL.md
  • plugins/ralph-specum-codex/skills/ralph-specum/agents/openai.yaml
  • plugins/ralph-specum-codex/templates/component-spec.md
  • plugins/ralph-specum-codex/templates/design.md
  • plugins/ralph-specum-codex/templates/epic.md
  • plugins/ralph-specum-codex/templates/external-spec.md
  • plugins/ralph-specum-codex/templates/index-summary.md
  • plugins/ralph-specum-codex/templates/progress.md
  • plugins/ralph-specum-codex/templates/requirements.md
  • plugins/ralph-specum-codex/templates/research.md
  • plugins/ralph-specum-codex/templates/settings-template.md
  • plugins/ralph-specum-codex/templates/tasks.md
  • specs/.index/index-state.json
  • specs/.index/index.md
  • specs/codex-plugin-sync/.progress.md
  • specs/codex-plugin-sync/design.md
  • specs/codex-plugin-sync/requirements.md
  • specs/codex-plugin-sync/research.md
  • specs/codex-plugin-sync/tasks.md
  • tests/codex-platform-scripts.bats
  • tests/codex-platform.bats
  • tests/codex-plugin.bats
  • tests/helpers/version-sync.sh
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch worktree-gleaming-whistling-pebble

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@tzachbon tzachbon merged commit 92d7c29 into main Apr 7, 2026
5 checks passed
@tzachbon tzachbon deleted the worktree-gleaming-whistling-pebble branch April 7, 2026 12:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant