t.2p4: add dynamic task subtree insertion for ace-assign#268
Open
t.2p4: add dynamic task subtree insertion for ace-assign#268
Conversation
Allow `ace-assign add` to load steps from YAML via `--from`, expand nested `sub_steps`, and insert them through a new batch execution path. Update CLI validation, executor metadata, and tests for sequential insertion, child rebalance, and error handling.
…imes Publish the new `as-assign-add-task` workflow skill across Claude, Codex, Gemini, OpenCode, and Pi integration directories so each assistant can discover and invoke the assignment add-task workflow consistently.
Update the package version to 0.38.0 and add the release changelog entry for the new `add --from` workflow.
Raise the `ace-assign` dependency to `~> 0.38` and record the overseer release version in the changelog.
Update the top-level changelog and lockfile to track `ace-assign` 0.38.0 and `ace-overseer` 0.11.1.
Capture lessons learned and follow-up actions from the t.2p4 subtree insertion release so the workflow can be improved on the next run.
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
Assignment workflows can now insert multiple steps from a YAML file in a single command with
ace-assign add --from <file>. Before this, adding a task subtree into a running assignment required multiple manualaddcalls or pre-building the entire assignment upfront. Now, mid-flight composition is a one-liner that preserves metadata, expands nestedsub_steps, and slots new steps at the right queue position.✏️ Changes
--from <file>flag toace-assign add: reads a YAML step list and batch-inserts all entries with sequential numbering, metadata passthrough, andsub_stepsexpansion (d6b3f9c)--fromand positionalnameare mutually exclusive; missing file and emptysteps:produce explicit errors (d6b3f9c)AssignmentExecutor#add_batch: reuses existing single-add behavior in a loop, preservingadded_by: batch_from:<filename>metadata on every inserted step (d6b3f9c)as-assign-add-taskcanonical skill andwfi://assign/add-taskworkflow for guided subtree insertion (d487839, ee0771d, 9fcdef2)add --fromworkflow (d6b3f9c)📁 File Changes
🧪 Test Evidence
--fromflag handling: mutual exclusivity with name, missing file error, empty steps error, and successful batch insertion outputadd_batchbehavior: sequential insertion, metadata passthrough (added_by,context,skill),sub_stepsexpansion, and child rebalance📦 Releases
--from <file>batch insertion,as-assign-add-taskskill/workflow, docs updatesace-assigndependency to~> 0.38🎮 Demo
Run
Expected Output