Releases: sendbird/cc-plugin-codex
Releases · sendbird/cc-plugin-codex
v1.0.8
- Clarify the routing boundary between
$cc:review,$cc:adversarial-review, and$cc:rescue, including the rule that ordinary code-review requests default toreview, stronger scrutiny plus custom focus text belongs toadversarial-review, and rescue is only for Claude-owned follow-through work. - Add E2E coverage that injects both review skills together and verifies the focus-text distinction is surfaced to the parent turn while the adversarial focus path still reaches Claude end to end.
- Refresh the macOS integration concurrency test so aggressive concurrent polling no longer flakes when some jobs finish slightly later than the initial polling window.
- Update development dependencies with the merged Dependabot patch bumps for
@types/nodeandglobals.
v1.0.7
- Add GitHub CI coverage across Windows, macOS, and Linux, with a portable cross-platform test suite plus Linux-only full integration/E2E coverage.
- Harden background routing by validating
parentThreadId, combining reserved-job and session-routing metadata into one helper, and making background review/rescue explicitly use built-in forwarding subagents rather than direct detached companion processes. - Stop exposing managed job log paths through user/model-facing status and result surfaces while keeping on-disk logs for debugging.
- Make installed skill-path materialization consistent for both staged installs and direct local-checkout installs, and centralize installer path helpers for reuse.
- Switch sandbox temp-dir settings from a hardcoded
/tmppath to the OS temp directory so the runtime configuration stays valid off Linux.
v1.0.6
v1.0.6
- Restore parent-session ownership for built-in background rescue/review runs so resume candidates, plain
$cc:status, and no-argument$cc:resultstay aligned after nested child sessions. - Distinguish the owning Codex session from the actual Claude Code session in job rendering so
claude --resume ...points at the real Claude session instead of the parent owner marker. - Tighten the background review and adversarial-review forwarding contracts around
send_inputnotification behavior and add E2E coverage for built-in notification steering in both flows.
v1.0.5
v1.0.5
- Keep built-in background review jobs attached to the parent Codex session so plain
$cc:statusand$cc:resultstay intuitive after nested rescue/review flows. - Make
$cc:status --allshow the full job history for the current repository workspace instead of staying session-scoped. - Harden large-diff review and hook fingerprinting so oversized
git diffoutput degrades cleanly instead of failing withENOBUFS. - Clarify README guidance around review visibility, large diffs, and the difference between session-scoped status and repository-wide status.
v1.0.4
What's Changed
- Clarify README positioning for Codex + Claude by @sf-jin-ku in #22
- Prepare v1.0.4 release by @sf-jin-ku in #23
Full Changelog: v1.0.3...v1.0.4
v1.0.3
v1.0.2
What's Changed
- Use fallback cc wrappers only when official install is unavailable by @sf-jin-ku in #17
- Rename project to Claude Code plugin for Codex by @sf-jin-ku in #18
- Release v1.0.2 by @sf-jin-ku in #20
Full Changelog: v1.0.1...v1.0.2
v1.0.1
v1.0.1
- Install and uninstall through Codex app-server when available, with safe fallback activation on unsupported builds.
- Remove the global
cc-rescueagent and keep only managed Codex hooks outside the plugin directory. - Switch rescue to the built-in forwarding subagent path and harden hook self-clean behavior.
- Auto-install missing hooks during
$cc:setup. - Clarify background unread-result nudges and the hooks-only global state model in the README.