aia 0.11.0 → 0.11.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/.version +1 -1
- data/lib/aia/config/validator.rb +2 -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: dac8dfbee13b2a4c8276f7052653f4b664bd1cfb5ce036aab66e233cb4f2bcd3
|
|
4
|
+
data.tar.gz: 9d35cdfdad9dc3f8a673428bc78747f2a63323153e5eb2b7049c819594a8c1da
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6591e945b857bc8ea91afdc0efbb1ab118e1f91a829a6fe3a1de753bf2b93effee9ce6f48dc176caa8213376bf483fe7f039ee8c64916c4031d2a1cf81695951
|
|
7
|
+
data.tar.gz: 3976784e41ce2673dfab51da5dbbc927e636ab376c87c443571b26a94242739d46bcab6fed4d9d268662aed786d9a325d512701c353d164a0c34363767ebd73a
|
data/.version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.11.
|
|
1
|
+
0.11.1
|
data/lib/aia/config/validator.rb
CHANGED
|
@@ -29,11 +29,11 @@ module AIA
|
|
|
29
29
|
handle_dump_config(config)
|
|
30
30
|
handle_mcp_list(config)
|
|
31
31
|
handle_list_tools(config)
|
|
32
|
+
handle_completion_script(config)
|
|
32
33
|
validate_required_prompt_id(config)
|
|
33
34
|
process_role_configuration(config)
|
|
34
35
|
handle_fuzzy_search_prompt_id(config)
|
|
35
36
|
normalize_boolean_flags(config)
|
|
36
|
-
handle_completion_script(config)
|
|
37
37
|
validate_final_prompt_requirements(config)
|
|
38
38
|
configure_prompt_manager(config)
|
|
39
39
|
prepare_pipeline(config)
|
|
@@ -457,7 +457,7 @@ module AIA
|
|
|
457
457
|
end
|
|
458
458
|
|
|
459
459
|
def generate_completion_script(shell)
|
|
460
|
-
script_path = File.join(File.dirname(__FILE__), "
|
|
460
|
+
script_path = File.join(File.dirname(__FILE__), "../aia_completion.#{shell}")
|
|
461
461
|
|
|
462
462
|
if File.exist?(script_path)
|
|
463
463
|
puts File.read(script_path)
|