lex-agentic-integration 0.1.4 → 0.1.6

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: f5de3b4653bd30c6e7c57190ee2e5f74e317eb9a922746b8d736a61f9cde6348
4
- data.tar.gz: 5217c260fa1411311f47d8971837a7af25a7a0398c634434ad7b87471f2495f6
3
+ metadata.gz: bd18609f94c33ed5bd6e39e0761d071c52eaeda9a3c943d7b852cef3ea2aca9d
4
+ data.tar.gz: 51b7fae44fd51d62908c447f334f39bcae2722f46f74d0804d251ac8bd32bbe1
5
5
  SHA512:
6
- metadata.gz: 8bf6af42d5c2fed94f60438f83d703f86324e188d2f9c7076231d8bad706bffebf242ebcaa83293cf6500c49a02a804fc29983ea4be3ce9df48b560b9308d8e3
7
- data.tar.gz: c536d68b996da6cf361919183bc564b710be451feef607ef7268e12c40c48d7d218d3565c30cff103f4cc5a03db8bf2664977515a94ae1a22d7d568faa22b10e
6
+ metadata.gz: fce716d00a57fc8b4696b7d2a0ca3b1845bfcaf9a9acb9011b5a366391431b09058b8cfb419559dd189f5edfd663385f87b605890328c33fa4ef5e48b3934d76
7
+ data.tar.gz: 78b9dcd521a5b86079ad9d31f78f855e5919409e054cb21c2528d37a807e3f7d26c5c35c827669e9012704244105ae079afee1ba1dfcd4958c6fbfb23e26aed5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.1.6] - 2026-04-22
4
+ ### Fixed
5
+ - ThreadWalker actor now calls `follow_thread` (navigation) instead of `list_labyrinths` (read-only query)
6
+ - Added error logging to labyrinth runner rescue blocks
7
+ ### Added
8
+ - 3 new decay actors: PhenomenalBinding::Decay (120s), CognitiveIntegration::Decay (120s), CognitiveSynthesis::Decay (300s)
9
+
10
+ ## [0.1.5] - 2026-04-15
11
+ ### Changed
12
+ - Set `mcp_tools?` and `mcp_tools_deferred?` to `false` — internal cognitive pipeline extension, not an LLM-callable tool
13
+
3
14
  ## [0.1.4] - 2026-03-30
4
15
 
5
16
  ### Changed
data/Gemfile CHANGED
@@ -3,3 +3,5 @@
3
3
  source 'https://rubygems.org'
4
4
 
5
5
  gemspec
6
+
7
+ gem 'rubocop-legion'
data/README.md CHANGED
@@ -5,7 +5,7 @@ Domain consolidation gem for global integration theories and cross-domain synthe
5
5
  ## Overview
6
6
 
7
7
  **Gem**: `lex-agentic-integration`
8
- **Version**: 0.1.0
8
+ **Version**: 0.1.6
9
9
  **Namespace**: `Legion::Extensions::Agentic::Integration`
10
10
 
11
11
  ## Sub-Modules
@@ -32,9 +32,14 @@ Domain consolidation gem for global integration theories and cross-domain synthe
32
32
 
33
33
  ## Actors
34
34
 
35
- - `Integration::GlobalWorkspace::Actors::Competition` interval actor, runs workspace competition cycle
36
- - `Integration::Labyrinth::Actors::ThreadWalker` — interval actor, advances labyrinth thread walker
37
- - `Integration::Map::Actors::Decay` interval actor, decays cognitive map node strength
35
+ | Actor | Interval | What It Does |
36
+ |-------|----------|--------------|
37
+ | `GlobalWorkspace::Actors::Competition` | interval | Runs workspace competition cycle — selects winner for global broadcast |
38
+ | `Integration::Actor::Decay` | Every 120s | Decays stale cross-domain integration representations |
39
+ | `Labyrinth::Actors::ThreadWalker` | interval | Advances thread walker through labyrinth |
40
+ | `Map::Actors::Decay` | interval | Decays cognitive map node strength |
41
+ | `PhenomenalBinding::Actor::Decay` | Every 120s | Decays phenomenal binding units |
42
+ | `Synthesis::Actor::Decay` | Every 300s | Decays inactive synthesis streams |
38
43
 
39
44
  ## Installation
40
45
 
@@ -33,7 +33,7 @@ Gem::Specification.new do |spec|
33
33
  spec.add_dependency 'legion-transport', '>= 1.3.9'
34
34
 
35
35
  spec.add_development_dependency 'rspec', '~> 3.13'
36
- spec.add_development_dependency 'rubocop', '~> 1.60'
37
- spec.add_development_dependency 'rubocop-legion', '~> 0.1'
38
- spec.add_development_dependency 'rubocop-rspec', '~> 2.26'
36
+ spec.add_development_dependency 'rubocop'
37
+ spec.add_development_dependency 'rubocop-legion'
38
+ spec.add_development_dependency 'rubocop-rspec'
39
39
  end
@@ -0,0 +1,45 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'legion/extensions/actors/every'
4
+
5
+ module Legion
6
+ module Extensions
7
+ module Agentic
8
+ module Integration
9
+ module Integration
10
+ module Actor
11
+ class Decay < Legion::Extensions::Actors::Every
12
+ def runner_class
13
+ Legion::Extensions::Agentic::Integration::Integration::Runners::CognitiveIntegration
14
+ end
15
+
16
+ def runner_function
17
+ 'decay'
18
+ end
19
+
20
+ def time
21
+ 120
22
+ end
23
+
24
+ def run_now?
25
+ false
26
+ end
27
+
28
+ def use_runner?
29
+ false
30
+ end
31
+
32
+ def check_subtask?
33
+ false
34
+ end
35
+
36
+ def generate_task?
37
+ false
38
+ end
39
+ end
40
+ end
41
+ end
42
+ end
43
+ end
44
+ end
45
+ end
@@ -6,6 +6,7 @@ require_relative 'integration/helpers/modal_signal'
6
6
  require_relative 'integration/helpers/integrated_representation'
7
7
  require_relative 'integration/helpers/integration_engine'
8
8
  require_relative 'integration/runners/cognitive_integration'
9
+ require_relative 'integration/actors/decay'
9
10
  require_relative 'integration/client'
10
11
 
11
12
  module Legion
@@ -14,7 +14,7 @@ module Legion
14
14
  end
15
15
 
16
16
  def runner_function
17
- 'list_labyrinths'
17
+ 'follow_thread'
18
18
  end
19
19
 
20
20
  def time
@@ -98,6 +98,7 @@ module Legion
98
98
  result = resolve_engine(engine).list_labyrinths
99
99
  { success: true, labyrinths: result, count: result.size }
100
100
  rescue ArgumentError => e
101
+ log.error("[cognitive_labyrinth] list_labyrinths error: #{e.message}")
101
102
  { success: false, error: e.message }
102
103
  end
103
104
 
@@ -8,6 +8,7 @@ require_relative 'labyrinth/helpers/node'
8
8
  require_relative 'labyrinth/helpers/labyrinth'
9
9
  require_relative 'labyrinth/helpers/labyrinth_engine'
10
10
  require_relative 'labyrinth/runners/cognitive_labyrinth'
11
+ require_relative 'labyrinth/actors/thread_walker'
11
12
  require_relative 'labyrinth/client'
12
13
 
13
14
  module Legion
@@ -0,0 +1,45 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'legion/extensions/actors/every'
4
+
5
+ module Legion
6
+ module Extensions
7
+ module Agentic
8
+ module Integration
9
+ module PhenomenalBinding
10
+ module Actor
11
+ class Decay < Legion::Extensions::Actors::Every
12
+ def runner_class
13
+ Legion::Extensions::Agentic::Integration::PhenomenalBinding::Runners::PhenomenalBinding
14
+ end
15
+
16
+ def runner_function
17
+ 'decay_all'
18
+ end
19
+
20
+ def time
21
+ 120
22
+ end
23
+
24
+ def run_now?
25
+ false
26
+ end
27
+
28
+ def use_runner?
29
+ false
30
+ end
31
+
32
+ def check_subtask?
33
+ false
34
+ end
35
+
36
+ def generate_task?
37
+ false
38
+ end
39
+ end
40
+ end
41
+ end
42
+ end
43
+ end
44
+ end
45
+ end
@@ -6,6 +6,7 @@ require 'legion/extensions/agentic/integration/phenomenal_binding/helpers/stream
6
6
  require 'legion/extensions/agentic/integration/phenomenal_binding/helpers/binding_unit'
7
7
  require 'legion/extensions/agentic/integration/phenomenal_binding/helpers/binding_engine'
8
8
  require 'legion/extensions/agentic/integration/phenomenal_binding/runners/phenomenal_binding'
9
+ require 'legion/extensions/agentic/integration/phenomenal_binding/actors/decay'
9
10
  require 'legion/extensions/agentic/integration/phenomenal_binding/client'
10
11
 
11
12
  module Legion
@@ -0,0 +1,45 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'legion/extensions/actors/every'
4
+
5
+ module Legion
6
+ module Extensions
7
+ module Agentic
8
+ module Integration
9
+ module Synthesis
10
+ module Actor
11
+ class Decay < Legion::Extensions::Actors::Every
12
+ def runner_class
13
+ Legion::Extensions::Agentic::Integration::Synthesis::Runners::CognitiveSynthesis
14
+ end
15
+
16
+ def runner_function
17
+ 'decay_streams'
18
+ end
19
+
20
+ def time
21
+ 300
22
+ end
23
+
24
+ def run_now?
25
+ false
26
+ end
27
+
28
+ def use_runner?
29
+ false
30
+ end
31
+
32
+ def check_subtask?
33
+ false
34
+ end
35
+
36
+ def generate_task?
37
+ false
38
+ end
39
+ end
40
+ end
41
+ end
42
+ end
43
+ end
44
+ end
45
+ end
@@ -6,6 +6,7 @@ require 'legion/extensions/agentic/integration/synthesis/helpers/synthesis_strea
6
6
  require 'legion/extensions/agentic/integration/synthesis/helpers/synthesis'
7
7
  require 'legion/extensions/agentic/integration/synthesis/helpers/synthesis_engine'
8
8
  require 'legion/extensions/agentic/integration/synthesis/runners/cognitive_synthesis'
9
+ require 'legion/extensions/agentic/integration/synthesis/actors/decay'
9
10
  require 'legion/extensions/agentic/integration/synthesis/client'
10
11
 
11
12
  module Legion
@@ -4,7 +4,7 @@ module Legion
4
4
  module Extensions
5
5
  module Agentic
6
6
  module Integration
7
- VERSION = '0.1.4'
7
+ VERSION = '0.1.6'
8
8
  end
9
9
  end
10
10
  end
@@ -28,6 +28,14 @@ module Legion
28
28
  def self.remote_invocable?
29
29
  false
30
30
  end
31
+
32
+ def self.mcp_tools?
33
+ false
34
+ end
35
+
36
+ def self.mcp_tools_deferred?
37
+ false
38
+ end
31
39
  end
32
40
  end
33
41
  end
data/spec/spec_helper.rb CHANGED
@@ -35,6 +35,8 @@ module Legion
35
35
  end
36
36
  end
37
37
 
38
+ $LOADED_FEATURES << 'legion/extensions/actors/every'
39
+
38
40
  require 'legion/extensions/agentic/integration'
39
41
 
40
42
  RSpec.configure do |config|
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lex-agentic-integration
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Esity
@@ -125,44 +125,44 @@ dependencies:
125
125
  name: rubocop
126
126
  requirement: !ruby/object:Gem::Requirement
127
127
  requirements:
128
- - - "~>"
128
+ - - ">="
129
129
  - !ruby/object:Gem::Version
130
- version: '1.60'
130
+ version: '0'
131
131
  type: :development
132
132
  prerelease: false
133
133
  version_requirements: !ruby/object:Gem::Requirement
134
134
  requirements:
135
- - - "~>"
135
+ - - ">="
136
136
  - !ruby/object:Gem::Version
137
- version: '1.60'
137
+ version: '0'
138
138
  - !ruby/object:Gem::Dependency
139
139
  name: rubocop-legion
140
140
  requirement: !ruby/object:Gem::Requirement
141
141
  requirements:
142
- - - "~>"
142
+ - - ">="
143
143
  - !ruby/object:Gem::Version
144
- version: '0.1'
144
+ version: '0'
145
145
  type: :development
146
146
  prerelease: false
147
147
  version_requirements: !ruby/object:Gem::Requirement
148
148
  requirements:
149
- - - "~>"
149
+ - - ">="
150
150
  - !ruby/object:Gem::Version
151
- version: '0.1'
151
+ version: '0'
152
152
  - !ruby/object:Gem::Dependency
153
153
  name: rubocop-rspec
154
154
  requirement: !ruby/object:Gem::Requirement
155
155
  requirements:
156
- - - "~>"
156
+ - - ">="
157
157
  - !ruby/object:Gem::Version
158
- version: '2.26'
158
+ version: '0'
159
159
  type: :development
160
160
  prerelease: false
161
161
  version_requirements: !ruby/object:Gem::Requirement
162
162
  requirements:
163
- - - "~>"
163
+ - - ">="
164
164
  - !ruby/object:Gem::Version
165
- version: '2.26'
165
+ version: '0'
166
166
  description: 'LEX agentic integration domain: cross-domain binding and synthesis'
167
167
  email:
168
168
  - matthewdiverson@gmail.com
@@ -214,6 +214,7 @@ files:
214
214
  - lib/legion/extensions/agentic/integration/global_workspace/runners/global_workspace.rb
215
215
  - lib/legion/extensions/agentic/integration/global_workspace/version.rb
216
216
  - lib/legion/extensions/agentic/integration/integration.rb
217
+ - lib/legion/extensions/agentic/integration/integration/actors/decay.rb
217
218
  - lib/legion/extensions/agentic/integration/integration/client.rb
218
219
  - lib/legion/extensions/agentic/integration/integration/helpers/constants.rb
219
220
  - lib/legion/extensions/agentic/integration/integration/helpers/integrated_representation.rb
@@ -257,6 +258,7 @@ files:
257
258
  - lib/legion/extensions/agentic/integration/mycelium/runners/cognitive_mycelium.rb
258
259
  - lib/legion/extensions/agentic/integration/mycelium/version.rb
259
260
  - lib/legion/extensions/agentic/integration/phenomenal_binding.rb
261
+ - lib/legion/extensions/agentic/integration/phenomenal_binding/actors/decay.rb
260
262
  - lib/legion/extensions/agentic/integration/phenomenal_binding/client.rb
261
263
  - lib/legion/extensions/agentic/integration/phenomenal_binding/helpers/binding_engine.rb
262
264
  - lib/legion/extensions/agentic/integration/phenomenal_binding/helpers/binding_unit.rb
@@ -281,6 +283,7 @@ files:
281
283
  - lib/legion/extensions/agentic/integration/situation_model/runners/situation_model.rb
282
284
  - lib/legion/extensions/agentic/integration/situation_model/version.rb
283
285
  - lib/legion/extensions/agentic/integration/synthesis.rb
286
+ - lib/legion/extensions/agentic/integration/synthesis/actors/decay.rb
284
287
  - lib/legion/extensions/agentic/integration/synthesis/client.rb
285
288
  - lib/legion/extensions/agentic/integration/synthesis/helpers/constants.rb
286
289
  - lib/legion/extensions/agentic/integration/synthesis/helpers/synthesis.rb