Add workflow decomposition support#10
Open
dearrudam wants to merge 2 commits into
Open
Conversation
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.
This pull request introduces the concept of workflow decomposition to the SLDD skill, enabling large ideas to be split into multiple coordinated feature workflows through a new "workflow-set" mechanism. It updates documentation, schema, and navigation logic to support workflow-sets, adds new parent workflow steps, and ensures backward compatibility with existing feature workflows.
Major features and changes:
Workflow-set support and process changes
workflow-setworkflow kind, allowing large ideas to be decomposed into coordinated child feature workflows. Added parent steps (01-workflow-set-plan,02-scaffold-children,03-verify-workflow-set) and clarified their flow, approval, and state management in bothREADME.mdandSKILL.md. [1] [2] [3] [4] [5]kindare treated as normal feature workflows for compatibility. [1] [2]Schema and journal updates
_spec-journal.schema.jsonto supportkind: "workflow-set", new parent workflow steps, child workflow metadata, relationships, and scaffold state tracking. Added validation for new fields and states. [1] [2] [3]Documentation and guardrails
README.md,SKILL.md, and step files. Clarified that workflow-set parents do not persist child execution progress or auto-select children. [1] [2] [3] [4] [5]AGENTS.mdto prevent premature design, binding requirements, or treating workflow-set context as satisfying feature workflow gates. [1] [2]Step logic enhancements
These changes enable SLDD to safely manage large, multi-part features by coordinating multiple child workflows under an approved parent plan, while maintaining strict gating, explicit user approval, and backward compatibility.