aia 0.9.20 → 0.9.21
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/.version +1 -1
- data/CHANGELOG.md +7 -0
- data/lib/aia/directives/configuration.rb +3 -2
- 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: 2d974eb8f23ef8b3af71447951101047c7bdf04a203d4690655b8bfbe940fb2f
|
4
|
+
data.tar.gz: d63ff74f8837d642a454e116e2efb29f5a57d2d3e37a0e1181378d93d15f4660
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1c20c13f8d2c80abcc1dafc0401d6bfb3c1c1045ff4dc0821b3de256ba59241938a076f0cb74583758e1bbadd2e31cd933a2137440eee1a78e4adea794e66ea6
|
7
|
+
data.tar.gz: f7b6d1301362e22ccb3ef07956f5a9fe3766504ec23a2df82b420ab330b2e628406a1ce98b43dced48ab4142d49ccc5f7737f6fef0e9c9bded5d4ecda8626c8a
|
data/.version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.9.
|
1
|
+
0.9.21
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
## [Unreleased]
|
3
3
|
|
4
|
+
## [0.9.21] 2025-10-08
|
5
|
+
### Bug Fixes
|
6
|
+
- **Checkpoint Directive Output**: Fixed `//checkpoint` directive to return empty string instead of status message (lib/aia/directives/configuration.rb:155)
|
7
|
+
- Prevents checkpoint creation messages from entering AI context
|
8
|
+
- Outputs confirmation to STDOUT instead for user feedback
|
9
|
+
- Prevents potential AI manipulation of checkpoint system
|
10
|
+
|
4
11
|
## [0.9.20] 2025-10-06
|
5
12
|
### Added
|
6
13
|
- **Enhanced Multi-Model Role System (ADR-005)**: Implemented per-model role assignment with inline syntax
|
@@ -152,8 +152,9 @@ module AIA
|
|
152
152
|
|
153
153
|
name = args.empty? ? nil : args.join(' ').strip
|
154
154
|
checkpoint_name = context_manager.create_checkpoint(name: name)
|
155
|
-
"Checkpoint '#{checkpoint_name}' created."
|
156
|
-
|
155
|
+
puts "Checkpoint '#{checkpoint_name}' created."
|
156
|
+
""
|
157
|
+
end
|
157
158
|
|
158
159
|
def self.restore(args, context_manager = nil)
|
159
160
|
if context_manager.nil?
|