feat: add Codex Agent node (#518)#519
Merged
breaking-brake merged 1 commit intomainbreaking-brake/cc-wf-studio:mainfrom Jan 31, 2026
feat/518-codex-agent-nodebreaking-brake/cc-wf-studio:feat/518-codex-agent-nodeCopy head branch name to clipboard
Merged
feat: add Codex Agent node (#518)#519breaking-brake merged 1 commit intomainbreaking-brake/cc-wf-studio:mainfrom feat/518-codex-agent-nodebreaking-brake/cc-wf-studio:feat/518-codex-agent-nodeCopy head branch name to clipboard
breaking-brake merged 1 commit intomainbreaking-brake/cc-wf-studio:mainfrom
feat/518-codex-agent-nodebreaking-brake/cc-wf-studio:feat/518-codex-agent-nodeCopy head branch name to clipboard
Conversation
- Add CodexNode component with model/reasoning badges - Add CodexNodeDialog for node configuration - Add PropertyOverlay support for Codex nodes - Add Codex node to SubAgentFlow - Add BetaBadge shared component - Add Codex toggle in AI refinement settings - Unify i18n keys: codex.dialog.* → codex.* Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Merged
|
🎉 This PR is included in version 3.19.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Add Codex Agent node type for OpenAI Codex CLI integration within workflows.
Closes #518
Motivation
Enable users to leverage Codex agents for advanced code generation and analysis tasks directly in their workflow designs.
For example, in a Claude Code orchestrated workflow, Codex CLI can be invoked as a sub-agent to handle complex implementation tasks that benefit from OpenAI's reasoning capabilities - combining the strengths of both AI systems.
Changes
New Files:
src/webview/src/components/nodes/CodexNode.tsx- Node component with model/reasoning badgessrc/webview/src/components/dialogs/CodexNodeDialog.tsx- Configuration dialogsrc/webview/src/components/common/BetaBadge.tsx- Shared Beta badge componentModified Files:
src/shared/types/workflow-definition.ts- Add CodexNodeData type and validation rulesresources/workflow-schema.json- Add codex node schema for AI generationsrc/webview/src/components/WorkflowEditor.tsx- Register codex node typesrc/webview/src/components/NodePalette.tsx- Add Codex Agent button with Beta badgesrc/webview/src/components/PropertyOverlay.tsx- Add CodexProperties editorsrc/webview/src/components/dialogs/SubAgentFlowDialog.tsx- Support Codex in sub-agent flowssrc/webview/src/components/chat/SettingsDropdown.tsx- Add Codex toggle for AI refinementsrc/webview/src/constants/node-type-labels.ts- Add "Codex Agent" labelTesting
🤖 Generated with Claude Code