ace-retro 0.18.3 → 0.18.4
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/CHANGELOG.md +14 -0
- data/handbook/workflow-instructions/retro/selfimprove.wf.md +1 -0
- data/lib/ace/retro/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: 0e8ceb55f21c1a8fb58a6e60a5c3b8b0bea1978a688bb66525e660fc73600641
|
|
4
|
+
data.tar.gz: 621d1781df746dc0350fab95f6aba5f210d26338571eab929fa274cad4a1f7f2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 86f10cf0938b95e49a066a87db1ebcc608300b5726d19980a4b175835765637c97e3eb34edda7ff57536512fde4e24509867886ab549550497b2767a7ec766ab
|
|
7
|
+
data.tar.gz: b13f3d80af7ae3ed528115e0b5b4c54f75cd169f26288d24312479da8ebe1bfca5fb8de70b4e670a3de8cd4a8ba3a7c14613186d9ddc92c37cab6103f66e0612
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.18.4] - 2026-04-23
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
- Added self-improvement and layer-ownership workflow refinements for retro-driven cycle analysis and root-cause tracing workflows.
|
|
15
|
+
- Extended retro contract checks so workflow-layer attribution is stable across contract verification paths.
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
- Added a self-improvement root-cause category for wrong-layer fixes where the symptom package is patched before the shared primitive owner is identified.
|
|
20
|
+
|
|
21
|
+
### Technical
|
|
22
|
+
- Added workflow contract coverage for the new wrong-layer self-improvement category.
|
|
23
|
+
|
|
10
24
|
## [0.18.3] - 2026-04-20
|
|
11
25
|
|
|
12
26
|
### Fixed
|
|
@@ -73,6 +73,7 @@ Ask: "Why did this happen?" Categorize the root cause:
|
|
|
73
73
|
| **Scope creep** | Agent over-scoped the task | Made changes beyond what was requested |
|
|
74
74
|
| **Missing example** | No example of correct behavior | Workflow lacks example showing full scope discovery |
|
|
75
75
|
| **Redundant computation** | Multiple agents derive same value independently, causing divergence | Orchestrator computes path one way, agent re-derives differently |
|
|
76
|
+
| **Wrong layer / owner not identified** | Agent fixed the symptom package before identifying the package that owns the shared primitive | `ace-assign` exposed a tmux window-name failure, but `ace-tmux` owned window creation, naming, and navigation |
|
|
76
77
|
|
|
77
78
|
### Step 3: Find the Source
|
|
78
79
|
|
data/lib/ace/retro/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ace-retro
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.18.
|
|
4
|
+
version: 0.18.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michal Czyz
|
|
8
8
|
bindir: exe
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date: 2026-04-
|
|
10
|
+
date: 2026-04-26 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
12
|
- !ruby/object:Gem::Dependency
|
|
13
13
|
name: ace-support-core
|