lex-agentic-integration 0.1.5 → 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 +4 -4
- data/CHANGELOG.md +7 -0
- data/README.md +9 -4
- data/lib/legion/extensions/agentic/integration/integration/actors/decay.rb +45 -0
- data/lib/legion/extensions/agentic/integration/integration.rb +1 -0
- data/lib/legion/extensions/agentic/integration/labyrinth/actors/thread_walker.rb +1 -1
- data/lib/legion/extensions/agentic/integration/labyrinth/runners/cognitive_labyrinth.rb +1 -0
- data/lib/legion/extensions/agentic/integration/labyrinth.rb +1 -0
- data/lib/legion/extensions/agentic/integration/phenomenal_binding/actors/decay.rb +45 -0
- data/lib/legion/extensions/agentic/integration/phenomenal_binding.rb +1 -0
- data/lib/legion/extensions/agentic/integration/synthesis/actors/decay.rb +45 -0
- data/lib/legion/extensions/agentic/integration/synthesis.rb +1 -0
- data/lib/legion/extensions/agentic/integration/version.rb +1 -1
- data/spec/spec_helper.rb +2 -0
- metadata +4 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bd18609f94c33ed5bd6e39e0761d071c52eaeda9a3c943d7b852cef3ea2aca9d
|
|
4
|
+
data.tar.gz: 51b7fae44fd51d62908c447f334f39bcae2722f46f74d0804d251ac8bd32bbe1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fce716d00a57fc8b4696b7d2a0ca3b1845bfcaf9a9acb9011b5a366391431b09058b8cfb419559dd189f5edfd663385f87b605890328c33fa4ef5e48b3934d76
|
|
7
|
+
data.tar.gz: 78b9dcd521a5b86079ad9d31f78f855e5919409e054cb21c2528d37a807e3f7d26c5c35c827669e9012704244105ae079afee1ba1dfcd4958c6fbfb23e26aed5
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
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
|
+
|
|
3
10
|
## [0.1.5] - 2026-04-15
|
|
4
11
|
### Changed
|
|
5
12
|
- Set `mcp_tools?` and `mcp_tools_deferred?` to `false` — internal cognitive pipeline extension, not an LLM-callable tool
|
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.
|
|
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
|
-
|
|
36
|
-
|
|
37
|
-
|
|
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
|
|
|
@@ -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
|
|
@@ -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
|
data/spec/spec_helper.rb
CHANGED
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
|
+
version: 0.1.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Esity
|
|
@@ -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
|