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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 24f8a994c526c8cd4cbd1c90e0fa6d1d9139584ed71b160693d3d62c6d990d8a
4
- data.tar.gz: acf5c080b79e7c9d87770bfefe126cf455ea5d2e334766caa95348ced43e1420
3
+ metadata.gz: 2d974eb8f23ef8b3af71447951101047c7bdf04a203d4690655b8bfbe940fb2f
4
+ data.tar.gz: d63ff74f8837d642a454e116e2efb29f5a57d2d3e37a0e1181378d93d15f4660
5
5
  SHA512:
6
- metadata.gz: c454d06e3f5bda976e7efdfe7967931045afaced2b4b68fdd9cd8c1d0c7ab02e702a8c49e62391f16e96624bea154b404a48afcafdae6aaadbae02af56a852ed
7
- data.tar.gz: 4c0b17155f9b088611a8b24cd6fdaa5873916ba3392d61b2a0c7eca62d18644b5e0349d9a721d3d7b9470d37eb09117ed5a92c546083c5e93eb4358431296a83
6
+ metadata.gz: 1c20c13f8d2c80abcc1dafc0401d6bfb3c1c1045ff4dc0821b3de256ba59241938a076f0cb74583758e1bbadd2e31cd933a2137440eee1a78e4adea794e66ea6
7
+ data.tar.gz: f7b6d1301362e22ccb3ef07956f5a9fe3766504ec23a2df82b420ab330b2e628406a1ce98b43dced48ab4142d49ccc5f7737f6fef0e9c9bded5d4ecda8626c8a
data/.version CHANGED
@@ -1 +1 @@
1
- 0.9.20
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
- end
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?
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aia
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.20
4
+ version: 0.9.21
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dewayne VanHoozer