x_aeon_agents 1.1.0 → 1.1.1
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 +6 -0
- data/lib/x_aeon_agents/agents/developer_agent.rb +3 -3
- data/lib/x_aeon_agents/helpers.rb +1 -1
- data/lib/x_aeon_agents/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0a4335e47de00b04d09dfb6086ba9a8ac31821ab4e53b2c0293c6abd62940431
|
|
4
|
+
data.tar.gz: 54f710beff803354735b044009aa0a901aed9b083f1a22776ce78abedbbf4a40
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 35fa42d65d0d75abcfa7df6f3e0a1e49a84d477aec3aaf95e22e35fd4165bb607be9085291143a2770fb41f16f69e94f5d9b3e69e43bfad19cc6873f517c1545
|
|
7
|
+
data.tar.gz: 5c7d8635f6c0a734a777749924e5ffa436447cf9f601d7cbd150c3f1ec8c9b0b25edea560f5f9ddcd849f6c26ac26f48c73714c3e8122117b3ca56bb9d869d0d
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
# [v1.1.1](https://github.com/Muriel-Salvan/x_aeon_agents/compare/v1.1.0...v1.1.1) (2026-09-11 17:27:09)
|
|
2
|
+
|
|
3
|
+
### Patches
|
|
4
|
+
|
|
5
|
+
* [refactor: update git status calls to use status_info](https://github.com/Muriel-Salvan/x_aeon_agents/commit/d3c7017c01efc34bd619bbd2ef55d9e63e63bcb3)
|
|
6
|
+
|
|
1
7
|
# [v1.1.0](https://github.com/Muriel-Salvan/x_aeon_agents/compare/v1.0.34...v1.1.0) (2026-09-11 15:35:31)
|
|
2
8
|
|
|
3
9
|
## Global changes
|
|
@@ -48,7 +48,7 @@ module XAeonAgents
|
|
|
48
48
|
intent: 'Implement the requirements following the implementation plan',
|
|
49
49
|
user_instructions: "Follow all the steps of the implementation plan described in the artifact named `#{coder_agent.artifact_ref(:plan)}`."
|
|
50
50
|
)
|
|
51
|
-
logger.info "Coder changes: #{Helpers.git.
|
|
51
|
+
logger.info "Coder changes: #{Helpers.git.status_info.changed.keys.join(', ')}"
|
|
52
52
|
|
|
53
53
|
task(new_agent(CommitterAgent, user_review: false, stage: :all, authors: [coder_agent]), intent: 'Commit coder changes') if @commit
|
|
54
54
|
|
|
@@ -110,7 +110,7 @@ module XAeonAgents
|
|
|
110
110
|
]
|
|
111
111
|
}
|
|
112
112
|
)
|
|
113
|
-
logger.info "Tester changes: #{Helpers.git.
|
|
113
|
+
logger.info "Tester changes: #{Helpers.git.status_info.changed.keys.join(', ')}"
|
|
114
114
|
# Integrate potential implementation plan modifications
|
|
115
115
|
unless @artifacts[:plan_modifications].strip.empty?
|
|
116
116
|
plan_modifications = @artifacts.delete(:plan_modifications)
|
|
@@ -206,7 +206,7 @@ module XAeonAgents
|
|
|
206
206
|
]
|
|
207
207
|
}
|
|
208
208
|
)
|
|
209
|
-
logger.info "Documenter changes: #{Helpers.git.
|
|
209
|
+
logger.info "Documenter changes: #{Helpers.git.status_info.changed.keys.join(', ')}"
|
|
210
210
|
|
|
211
211
|
if @commit || @pull_request
|
|
212
212
|
task(
|