ace-assign 0.41.5 → 0.41.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.ace-defaults/assign/catalog/steps/mark-task-done.step.yml +5 -5
- data/.ace-defaults/assign/config.yml +0 -11
- data/.ace-defaults/assign/presets/work-on-task.yml +1 -6
- data/CHANGELOG.md +29 -0
- data/README.md +2 -0
- data/lib/ace/assign/models/queue_state.rb +1 -0
- data/lib/ace/assign/molecules/skill_assign_source_resolver.rb +2 -9
- data/lib/ace/assign/organisms/assignment_executor.rb +1 -4
- data/lib/ace/assign/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '06674279e2b0b541d4da053a4bb8e385ea6e76b8d8cb58e6fc4b5032dac2e15e'
|
|
4
|
+
data.tar.gz: aa8e3423d01ebe3b86e355474b1a77e506cc1efcdf68f953e449f9bc671fbd72
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 51a4be473d02363c49c5439b4f4814c4c22dddfa30d2c7674aeae68f2c29a98f9dfe44440cd26aa4d5fc1633f5918d045cc24a190ab68a38e41d797a95e3e00f
|
|
7
|
+
data.tar.gz: f97ce64ca4fecb86f9bdad9312f6864e70f5cbe098c8f00a4db408d77e91b4d0691f36868b6728238231e2ce923effd3e73c1f242d2c94cdb16e18f3a89526d9
|
|
@@ -20,7 +20,7 @@ instructions: |
|
|
|
20
20
|
|
|
21
21
|
1. Run the status update command:
|
|
22
22
|
```bash
|
|
23
|
-
ace-task update {{taskref}} --set status=done --move-to archive
|
|
23
|
+
ace-task update {{taskref}} --set status=done --move-to archive --git-commit
|
|
24
24
|
```
|
|
25
25
|
|
|
26
26
|
2. **VERIFY the status change** (do not skip):
|
|
@@ -38,16 +38,16 @@ instructions: |
|
|
|
38
38
|
```
|
|
39
39
|
If all subtasks show `✓` (done), mark the parent done too:
|
|
40
40
|
```bash
|
|
41
|
-
ace-task update {{parent_taskref}} --set status=done --move-to archive
|
|
41
|
+
ace-task update {{parent_taskref}} --set status=done --move-to archive --git-commit
|
|
42
42
|
ace-task show {{parent_taskref}}
|
|
43
43
|
```
|
|
44
44
|
Repeat upward if the parent itself has a parent.
|
|
45
45
|
|
|
46
|
-
4. **
|
|
46
|
+
4. **Optional validation**: verify the moved task is now archived and complete:
|
|
47
47
|
```bash
|
|
48
|
-
ace-
|
|
48
|
+
ace-task show {{taskref}}
|
|
49
|
+
ace-task show {{parent_taskref}}
|
|
49
50
|
```
|
|
50
|
-
The `--move-to archive` flag relocates task files. This commit captures those moves.
|
|
51
51
|
|
|
52
52
|
when_to_skip:
|
|
53
53
|
- "Task was already marked done (verified via ace-task show)"
|
|
@@ -162,12 +162,7 @@ steps:
|
|
|
162
162
|
- `TASKREFS="{{taskrefs}}"`
|
|
163
163
|
- `IFS=',' read -ra refs <<< "${TASKREFS// /}"`
|
|
164
164
|
- For each `ref`:
|
|
165
|
-
- `ace-task update "$ref" --set status=done --move-to archive`
|
|
166
|
-
- |
|
|
167
|
-
After all tasks are archived, commit the file moves:
|
|
168
|
-
```bash
|
|
169
|
-
ace-git-commit .ace-tasks/ -i "archive completed tasks"
|
|
170
|
-
```
|
|
165
|
+
- `ace-task update "$ref" --set status=done --move-to archive --gc`
|
|
171
166
|
|
|
172
167
|
- name: create-retro
|
|
173
168
|
number: "160"
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,35 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.41.10] - 2026-03-31
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- Role-based assignment execution defaults.
|
|
14
|
+
|
|
15
|
+
## [0.41.9] - 2026-03-31
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
- Updated task archival commands to persist task-state transitions during workflow execution using `--gc`/`--git-commit` modes in terminal task completion steps.
|
|
19
|
+
|
|
20
|
+
## [0.41.8] - 2026-03-30
|
|
21
|
+
|
|
22
|
+
### Fixed
|
|
23
|
+
- Clarified the shipped `wfi://release/publish` workflow release contract so root changelog updates consistently include package versions and RubyGems propagation proof guidance.
|
|
24
|
+
|
|
25
|
+
## [0.41.7] - 2026-03-30
|
|
26
|
+
|
|
27
|
+
### Fixed
|
|
28
|
+
- Made the shipped `wfi://release/publish` workflow verify modified packages with package-scoped `ace-test` execution derived from the resolved release set.
|
|
29
|
+
|
|
30
|
+
## [0.41.6] - 2026-03-29
|
|
31
|
+
|
|
32
|
+
### Added
|
|
33
|
+
- Added a shipped generic `wfi://release/publish` workflow under `ace-assign` so `work-on-task` release steps have a default resolvable path in plain projects.
|
|
34
|
+
|
|
35
|
+
### Fixed
|
|
36
|
+
- Aligned `assign.source` `wfi://` resolution with registered/default nav workflow sources by removing implicit workspace workflow-directory fallback behavior.
|
|
37
|
+
- Added resolver coverage for project-level `wfi://` workflow overrides and for unregistered-workflow failure behavior.
|
|
38
|
+
|
|
10
39
|
## [0.41.5] - 2026-03-29
|
|
11
40
|
|
|
12
41
|
### Technical
|
data/README.md
CHANGED
|
@@ -78,6 +78,8 @@ The easiest way to start is through [ace-overseer](../ace-overseer) -- define a
|
|
|
78
78
|
|
|
79
79
|
**Define assignments from presets** - pick a [preset](.ace-defaults/assign/presets/) like [`work-on-task`](.ace-defaults/assign/presets/work-on-task.yml) or `release-only`, pass parameters (task refs, packages), and run `ace-assign create --task ...` or [`ace-assign create --yaml ...`](docs/usage.md) to expand them into a concrete step queue. Steps are defined in the [catalog](.ace-defaults/assign/catalog/steps/) (e.g., [`work-on-task.step.yml`](.ace-defaults/assign/catalog/steps/work-on-task.step.yml)) and ordered by [composition rules](.ace-defaults/assign/catalog/composition-rules.yml). Compose custom assignments with `/as-assign-compose`.
|
|
80
80
|
|
|
81
|
+
`work-on-task` release steps resolve `wfi://release/publish` from shipped workflow sources by default, and project-level `wfi://` source overrides registered under `.ace/nav/protocols/wfi-sources/` are honored by both `ace-bundle` and `ace-assign`.
|
|
82
|
+
|
|
81
83
|
**Run with orchestrator and fork agents** - use `/as-assign-drive` to walk through steps, forking long-running work (implementation, review, release) to isolated agent subprocesses with configurable [execution defaults](.ace-defaults/assign/config.yml) or per-step `fork.provider` overrides. Forks can run sequentially or as parallel batches, each producing inspectable traces and session reports under `.ace-local/assign/`.
|
|
82
84
|
|
|
83
85
|
**Recover from failure without losing history** - keep failed-step lineage intact, inject targeted retries or fix steps, and continue execution with auditable failure evidence.
|
|
@@ -25,12 +25,9 @@ module Ace
|
|
|
25
25
|
canonical_paths = discover_canonical_skill_source_paths
|
|
26
26
|
canonical_workflow_paths = discover_canonical_workflow_source_paths
|
|
27
27
|
override_paths = normalize_paths(configured_skill_paths || [])
|
|
28
|
-
|
|
29
|
-
configured_workflow_paths = discover_workspace_workflow_paths
|
|
30
|
-
end
|
|
31
|
-
configured_workflow_paths = canonical_workflow_paths if configured_workflow_paths.nil? || configured_workflow_paths.empty?
|
|
28
|
+
configured_workflow_paths = normalize_paths(configured_workflow_paths || [])
|
|
32
29
|
@skill_paths = (canonical_paths + override_paths).uniq
|
|
33
|
-
@workflow_paths = (canonical_workflow_paths +
|
|
30
|
+
@workflow_paths = (canonical_workflow_paths + configured_workflow_paths).uniq
|
|
34
31
|
@skill_index = nil
|
|
35
32
|
end
|
|
36
33
|
|
|
@@ -344,10 +341,6 @@ module Ace
|
|
|
344
341
|
end
|
|
345
342
|
end
|
|
346
343
|
|
|
347
|
-
def discover_workspace_workflow_paths
|
|
348
|
-
Dir.glob(File.join(project_root, "*", "handbook", "workflow-instructions")).sort
|
|
349
|
-
end
|
|
350
|
-
|
|
351
344
|
def resolve_source_uri(uri, skill_name)
|
|
352
345
|
if uri.start_with?("wfi://")
|
|
353
346
|
resolve_wfi_uri(uri, skill_name)
|
|
@@ -381,9 +381,6 @@ module Ace
|
|
|
381
381
|
raise Error, "Child insertion requires an after step reference."
|
|
382
382
|
end
|
|
383
383
|
|
|
384
|
-
source_label = source_file.to_s.strip.empty? ? "batch" : File.basename(source_file.to_s)
|
|
385
|
-
batch_added_by = "batch_from:#{source_label}"
|
|
386
|
-
|
|
387
384
|
prevalidate_batch_trees!(steps)
|
|
388
385
|
|
|
389
386
|
added_steps = []
|
|
@@ -395,7 +392,7 @@ module Ace
|
|
|
395
392
|
step_config,
|
|
396
393
|
after: as_child ? after : sibling_cursor,
|
|
397
394
|
as_child: as_child,
|
|
398
|
-
added_by:
|
|
395
|
+
added_by: nil,
|
|
399
396
|
location: "steps[#{index}]"
|
|
400
397
|
)
|
|
401
398
|
added_steps.concat(inserted[:added])
|
data/lib/ace/assign/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ace-assign
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.41.
|
|
4
|
+
version: 0.41.10
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michal Czyz
|
|
8
8
|
bindir: exe
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date: 2026-
|
|
10
|
+
date: 2026-04-01 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
12
|
- !ruby/object:Gem::Dependency
|
|
13
13
|
name: ace-support-cli
|