lex-autofix 0.1.4 → 0.1.5
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f46f6aa06b02c6485e2961a8e6c0b7af4f29a23ed37b9892cdc2b9c6cf866753
|
|
4
|
+
data.tar.gz: 146efbb61abce2ec7e173fd868ebe638ecfad4a00c25882bfc5431bbf91a35eb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: baab241f9021c2436e4eaf90bf3e66001c5fa6dcf056e914a2519a00a314772dd8e8f6b190749bd80c7eae17e8092ebc9d17866f9b499c25fb82fe8faf4d87e7
|
|
7
|
+
data.tar.gz: 6fc0e1c7f2b3d864e6ca3f5e0f571bf70e2388353829683ab56c43c8c3cda23c648a4211f2f0af3b6ca933a4e09e00cf9cfa87405e2995b14e30eb9bc97cabcc
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
### Fixed
|
|
6
|
+
- Fix actor discovery: rename `module Actors` to `module Actor` (singular) to match framework convention
|
|
7
|
+
- Add explicit `runner_class` override to LogConsumer pointing to `Runners::Pipeline` where `handle_log_event` lives
|
|
8
|
+
|
|
9
|
+
## [0.1.4] - 2026-03-24
|
|
10
|
+
|
|
5
11
|
### Changed
|
|
6
12
|
- Add `caller:` identity parameter to `Legion::LLM.structured` call in `runners/triage.rb` (extension: lex-autofix, operation: triage)
|
|
7
13
|
- Add `caller:` identity and `intent: { capability: :reasoning }` parameters to `Legion::LLM.structured` call in `runners/fix.rb` (extension: lex-autofix, operation: fix)
|
|
@@ -3,8 +3,9 @@
|
|
|
3
3
|
module Legion
|
|
4
4
|
module Extensions
|
|
5
5
|
module Autofix
|
|
6
|
-
module
|
|
6
|
+
module Actor
|
|
7
7
|
class LogConsumer < Legion::Extensions::Actors::Subscription
|
|
8
|
+
def runner_class = Legion::Extensions::Autofix::Runners::Pipeline
|
|
8
9
|
def runner_function = 'handle_log_event'
|
|
9
10
|
def check_subtask? = false
|
|
10
11
|
def generate_task? = false
|