fix: clarify connection constraints for parallel execution#568
Merged
breaking-brake merged 1 commit intomainbreaking-brake/cc-wf-studio:mainfrom Feb 16, 2026
fix/clarify-parallel-execution-rulesbreaking-brake/cc-wf-studio:fix/clarify-parallel-execution-rulesCopy head branch name to clipboard
Merged
fix: clarify connection constraints for parallel execution#568breaking-brake merged 1 commit intomainbreaking-brake/cc-wf-studio:mainfrom fix/clarify-parallel-execution-rulesbreaking-brake/cc-wf-studio:fix/clarify-parallel-execution-rulesCopy head branch name to clipboard
breaking-brake merged 1 commit intomainbreaking-brake/cc-wf-studio:mainfrom
fix/clarify-parallel-execution-rulesbreaking-brake/cc-wf-studio:fix/clarify-parallel-execution-rulesCopy head branch name to clipboard
Conversation
- Changed 'One connection per output port' from forbidden to required as 'At least one' - Aligns schema documentation with actual parallel execution capabilities - Updated both START_OUTPUT and NON_END_OUTPUT rules to use 'at least one' instead of 'exactly one' - Applied to both workflow-schema.json and workflow-schema-basic.json Relates to #564 Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
Merged
braking-brake-semantic-release Bot
pushed a commit
that referenced
this pull request
Feb 16, 2026
## [3.22.0](v3.21.0...v3.22.0) (2026-02-16) ### Features * add Gemini CLI provider integration ([#565](#565)) ([8b0fd76](8b0fd76)) ### Bug Fixes * clarify connection constraints for parallel execution support ([#568](#568)) ([8f9d58f](8f9d58f)), closes [#564](#564) ### Improvements * enhance workflow schema for AI editing quality ([#559](#559)) ([1a53ccc](1a53ccc))
|
🎉 This PR is included in version 3.22.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.
Problem
The workflow schema documentation contained contradictory rules that could mislead users (including AI agents) about parallel execution capabilities.
Current Behavior
aiGenerationRulesstated: "Every Start node's 'output' port MUST have exactly one outgoing connection"aiGenerationRulesstated: "Every non-End node's output port(s) MUST have exactly one outgoing connection per port"Expected Behavior
Solution
Updated schema documentation to accurately reflect actual workflow validation behavior and enable parallel execution support.
Changes
Files Modified:
resources/workflow-schema.jsonresources/workflow-schema-basic.jsonresources/workflow-schema.toon(auto-generated)resources/workflow-schema-basic.toon(auto-generated)Schema Updates:
forbiddentorequiredsection as "At least one connection per output port"exportValidationRulesthat only require connectivity, not single connectionsImpact
Testing
npm run format✅npm run lint✅npm run check✅npm run build✅Related Issues
Addresses #564 - Clarify 'completenessRules.aiGenerationRules' for parallel execution
🤖 Generated with Claude Code