lex-codegen 0.2.12 → 0.2.13
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/.github/workflows/ci.yml +3 -3
- data/.rubocop.yml +6 -58
- data/CHANGELOG.md +5 -0
- data/Gemfile +1 -0
- data/lib/legion/extensions/codegen/actors/gap_subscriber.rb +5 -7
- data/lib/legion/extensions/codegen/helpers/generated_registry.rb +3 -3
- data/lib/legion/extensions/codegen/runners/auto_fix.rb +9 -9
- data/lib/legion/extensions/codegen/runners/from_gap.rb +2 -2
- data/lib/legion/extensions/codegen/runners/generate.rb +1 -1
- data/lib/legion/extensions/codegen/version.rb +1 -1
- data/lib/legion/extensions/codegen.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: 35516ada32ea991788fb9cba4cf9a23723eed44f4d0b8112403c9a08b41ad6be
|
|
4
|
+
data.tar.gz: 649e13df7217470c735d597d2176d344f75ae133ebb737b5c8ac7c84a5bcabdd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 47bf5695431ade0bcc1676780e58c0a414100085366d3ab200337ab184f9b4001ffc778e1c6471cf16474dc1ece863d3426c3d128f4dc34e2b1da9d2d480b686
|
|
7
|
+
data.tar.gz: 10237efd48b3153dc490dd59078c861f0b56398b3361134bfe7f063e2564a01f1241dcc45b762213528250718a670cbc769ad6e5905b6eae94d9295d99b87ea0
|
data/.github/workflows/ci.yml
CHANGED
|
@@ -10,8 +10,8 @@ jobs:
|
|
|
10
10
|
ci:
|
|
11
11
|
uses: LegionIO/.github/.github/workflows/ci.yml@main
|
|
12
12
|
|
|
13
|
-
|
|
14
|
-
uses: LegionIO/.github/.github/workflows/
|
|
13
|
+
excluded-files:
|
|
14
|
+
uses: LegionIO/.github/.github/workflows/excluded-files.yml@main
|
|
15
15
|
|
|
16
16
|
security:
|
|
17
17
|
uses: LegionIO/.github/.github/workflows/security-scan.yml@main
|
|
@@ -27,7 +27,7 @@ jobs:
|
|
|
27
27
|
uses: LegionIO/.github/.github/workflows/stale.yml@main
|
|
28
28
|
|
|
29
29
|
release:
|
|
30
|
-
needs: [ci,
|
|
30
|
+
needs: [ci, excluded-files]
|
|
31
31
|
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
|
|
32
32
|
uses: LegionIO/.github/.github/workflows/release.yml@main
|
|
33
33
|
secrets:
|
data/.rubocop.yml
CHANGED
|
@@ -1,62 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
NewCops: enable
|
|
4
|
-
SuggestExtensions: false
|
|
1
|
+
inherit_gem:
|
|
2
|
+
rubocop-legion: config/lex.yml
|
|
5
3
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
Layout/SpaceAroundEqualsInParameterDefault:
|
|
10
|
-
EnforcedStyle: space
|
|
11
|
-
|
|
12
|
-
Layout/HashAlignment:
|
|
13
|
-
EnforcedHashRocketStyle: table
|
|
14
|
-
EnforcedColonStyle: table
|
|
15
|
-
|
|
16
|
-
Metrics/MethodLength:
|
|
17
|
-
Max: 50
|
|
18
|
-
|
|
19
|
-
Metrics/ClassLength:
|
|
20
|
-
Max: 1500
|
|
21
|
-
|
|
22
|
-
Metrics/ModuleLength:
|
|
23
|
-
Max: 1500
|
|
24
|
-
|
|
25
|
-
Metrics/AbcSize:
|
|
26
|
-
Max: 60
|
|
27
|
-
|
|
28
|
-
Metrics/CyclomaticComplexity:
|
|
29
|
-
Max: 15
|
|
30
|
-
|
|
31
|
-
Metrics/PerceivedComplexity:
|
|
32
|
-
Max: 17
|
|
33
|
-
|
|
34
|
-
Style/Documentation:
|
|
35
|
-
Enabled: false
|
|
36
|
-
|
|
37
|
-
Style/SymbolArray:
|
|
38
|
-
Enabled: true
|
|
39
|
-
|
|
40
|
-
Style/FrozenStringLiteralComment:
|
|
41
|
-
Enabled: true
|
|
42
|
-
EnforcedStyle: always
|
|
43
|
-
|
|
44
|
-
Naming/FileName:
|
|
45
|
-
Enabled: false
|
|
46
|
-
|
|
47
|
-
Naming/PredicateMethod:
|
|
4
|
+
# Systematic false positives: private helper methods return non-Hash values
|
|
5
|
+
Legion/Extension/RunnerReturnHash:
|
|
48
6
|
Enabled: false
|
|
49
7
|
|
|
50
|
-
|
|
8
|
+
# Systematic false positives: defensive guards used throughout for optional Legion::Logging
|
|
9
|
+
Legion/HelperMigration/LoggingGuard:
|
|
51
10
|
Enabled: false
|
|
52
|
-
|
|
53
|
-
Gemspec/DevelopmentDependencies:
|
|
54
|
-
Enabled: false
|
|
55
|
-
|
|
56
|
-
Metrics/ParameterLists:
|
|
57
|
-
Enabled: false
|
|
58
|
-
|
|
59
|
-
Metrics/BlockLength:
|
|
60
|
-
Max: 40
|
|
61
|
-
Exclude:
|
|
62
|
-
- 'spec/**/*'
|
data/CHANGELOG.md
CHANGED
data/Gemfile
CHANGED
|
@@ -47,12 +47,10 @@ module Legion
|
|
|
47
47
|
def ingest_gap_to_apollo(gap)
|
|
48
48
|
return unless defined?(Legion::Apollo) && corroboration_enabled?
|
|
49
49
|
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
source: { provider: node_name, channel: 'gap_detector' }
|
|
55
|
-
)
|
|
50
|
+
ingest_knowledge(content: "capability_gap: #{gap[:intent]} (type: #{gap[:type]})",
|
|
51
|
+
tags: [:capability_gap, gap[:type], :self_generate],
|
|
52
|
+
scope: :global,
|
|
53
|
+
source: { provider: node_name, channel: 'gap_detector' })
|
|
56
54
|
rescue StandardError => e
|
|
57
55
|
log.debug("GapSubscriber: Apollo ingest failed: #{e.message}")
|
|
58
56
|
end
|
|
@@ -67,7 +65,7 @@ module Legion
|
|
|
67
65
|
)
|
|
68
66
|
|
|
69
67
|
results = result[:entries] || result[:results] || []
|
|
70
|
-
results.
|
|
68
|
+
results.filter_map { |r| r.dig(:source, :provider) }.uniq.size
|
|
71
69
|
rescue StandardError => e
|
|
72
70
|
log.debug("GapSubscriber: Apollo query failed: #{e.message}")
|
|
73
71
|
0
|
|
@@ -94,17 +94,17 @@ module Legion
|
|
|
94
94
|
end
|
|
95
95
|
|
|
96
96
|
def reset!
|
|
97
|
-
@store = {}
|
|
97
|
+
@store = {} # rubocop:disable ThreadSafety/ClassInstanceVariable
|
|
98
98
|
end
|
|
99
99
|
|
|
100
100
|
def store
|
|
101
|
-
@store ||= {}
|
|
101
|
+
@store ||= {} # rubocop:disable ThreadSafety/ClassInstanceVariable
|
|
102
102
|
end
|
|
103
103
|
|
|
104
104
|
def log
|
|
105
105
|
return Legion::Logging if defined?(Legion::Logging)
|
|
106
106
|
|
|
107
|
-
@log ||= Object.new.tap do |nl|
|
|
107
|
+
@log ||= Object.new.tap do |nl| # rubocop:disable ThreadSafety/ClassInstanceVariable
|
|
108
108
|
%i[debug info warn error fatal].each { |m| nl.define_singleton_method(m) { |*| nil } }
|
|
109
109
|
end
|
|
110
110
|
end
|
|
@@ -14,7 +14,7 @@ module Legion
|
|
|
14
14
|
|
|
15
15
|
spec = begin
|
|
16
16
|
Gem::Specification.find_by_name(gem_name)
|
|
17
|
-
rescue LoadError
|
|
17
|
+
rescue LoadError => _e
|
|
18
18
|
nil
|
|
19
19
|
end
|
|
20
20
|
return { success: false, reason: :gem_not_found } unless spec
|
|
@@ -24,7 +24,7 @@ module Legion
|
|
|
24
24
|
|
|
25
25
|
source = ::File.read(source_file)
|
|
26
26
|
prompt = build_fix_prompt(source, error_class, backtraces)
|
|
27
|
-
fix_response = Legion::LLM.chat(
|
|
27
|
+
fix_response = Legion::LLM.chat( # rubocop:disable Legion/HelperMigration/DirectLlm
|
|
28
28
|
messages: [{ role: 'user', content: prompt }],
|
|
29
29
|
caller: { extension: 'lex-codegen', operation: 'auto_fix' },
|
|
30
30
|
intent: { capability: :reasoning }
|
|
@@ -58,11 +58,11 @@ module Legion
|
|
|
58
58
|
def list_fixes(status: nil, **)
|
|
59
59
|
return { fixes: [], count: 0 } unless defined?(Legion::Data::Local)
|
|
60
60
|
|
|
61
|
-
ds = Legion::Data::Local.connection[:codegen_fixes]
|
|
61
|
+
ds = Legion::Data::Local.connection[:codegen_fixes] # rubocop:disable Legion/HelperMigration/DirectData
|
|
62
62
|
ds = ds.where(status: status) if status
|
|
63
63
|
fixes = ds.order(Sequel.desc(:created_at)).limit(50).all
|
|
64
64
|
{ fixes: fixes, count: fixes.size }
|
|
65
|
-
rescue StandardError
|
|
65
|
+
rescue StandardError => _e
|
|
66
66
|
{ fixes: [], count: 0 }
|
|
67
67
|
end
|
|
68
68
|
|
|
@@ -137,23 +137,23 @@ module Legion
|
|
|
137
137
|
def save_fix(gem_name:, branch:, patch:, specs_passed:, runner_class: nil, spec_output: nil)
|
|
138
138
|
fix_id = SecureRandom.uuid
|
|
139
139
|
if defined?(Legion::Data::Local)
|
|
140
|
-
|
|
140
|
+
local_data_connection[:codegen_fixes].insert(
|
|
141
141
|
fix_id: fix_id, gem_name: gem_name, runner_class: runner_class,
|
|
142
142
|
branch: branch, patch: patch, status: 'pending',
|
|
143
143
|
specs_passed: specs_passed, spec_output: spec_output&.slice(0, 10_240)
|
|
144
144
|
)
|
|
145
145
|
end
|
|
146
146
|
fix_id
|
|
147
|
-
rescue StandardError
|
|
147
|
+
rescue StandardError => _e
|
|
148
148
|
fix_id
|
|
149
149
|
end
|
|
150
150
|
|
|
151
151
|
def update_fix_status(fix_id, new_status)
|
|
152
152
|
return { success: false, reason: :data_unavailable } unless defined?(Legion::Data::Local)
|
|
153
153
|
|
|
154
|
-
updated =
|
|
155
|
-
|
|
156
|
-
|
|
154
|
+
updated = local_data_connection[:codegen_fixes]
|
|
155
|
+
.where(fix_id: fix_id)
|
|
156
|
+
.update(status: new_status)
|
|
157
157
|
if updated.positive?
|
|
158
158
|
{ success: true, fix_id: fix_id, status: new_status }
|
|
159
159
|
else
|
|
@@ -50,7 +50,7 @@ module Legion
|
|
|
50
50
|
generation_id = "gen_#{SecureRandom.hex(8)}"
|
|
51
51
|
prompt = build_runner_prompt(gap)
|
|
52
52
|
|
|
53
|
-
response = Legion::LLM.chat(
|
|
53
|
+
response = Legion::LLM.chat( # rubocop:disable Legion/HelperMigration/DirectLlm
|
|
54
54
|
messages: [{ role: 'user', content: prompt }],
|
|
55
55
|
caller: { source: 'lex-codegen', component: 'from_gap', operation: 'generate_runner_method' }
|
|
56
56
|
)
|
|
@@ -111,7 +111,7 @@ module Legion
|
|
|
111
111
|
stub_content = ::File.read(file_path)
|
|
112
112
|
prompt = stub_implementation_prompt(stub_content, context)
|
|
113
113
|
|
|
114
|
-
response = Legion::LLM.chat(
|
|
114
|
+
response = Legion::LLM.chat( # rubocop:disable Legion/HelperMigration/DirectLlm
|
|
115
115
|
messages: [
|
|
116
116
|
{ role: 'system', content: STUB_IMPLEMENTATION_INSTRUCTIONS },
|
|
117
117
|
{ role: 'user', content: prompt }
|
|
@@ -12,7 +12,7 @@ module Legion
|
|
|
12
12
|
base_path ||= ::Dir.pwd
|
|
13
13
|
ext_path = ::File.join(base_path, "lex-#{name}")
|
|
14
14
|
gem_name = "lex-#{name}"
|
|
15
|
-
underscored = name.to_s.
|
|
15
|
+
underscored = name.to_s.tr('-', '_')
|
|
16
16
|
runner_names = runner_methods.map { |r| r[:name] }
|
|
17
17
|
|
|
18
18
|
engine = Helpers::TemplateEngine.new
|
|
@@ -30,7 +30,7 @@ require_relative 'codegen/actors/review_subscriber'
|
|
|
30
30
|
module Legion
|
|
31
31
|
module Extensions
|
|
32
32
|
module Codegen
|
|
33
|
-
extend Legion::Extensions::Core if Legion::Extensions.const_defined? :Core
|
|
33
|
+
extend Legion::Extensions::Core if Legion::Extensions.const_defined? :Core, false
|
|
34
34
|
|
|
35
35
|
def self.remote_invocable?
|
|
36
36
|
false
|