superinstance-equipment-consensus-engine 1.0.0
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 +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +448 -0
- data/lib/equipment/consensus_engine/conflict_resolution.rb +507 -0
- data/lib/equipment/consensus_engine/consensus_engine.rb +451 -0
- data/lib/equipment/consensus_engine/tripartite_deliberation.rb +645 -0
- data/lib/equipment/consensus_engine/types.rb +229 -0
- data/lib/equipment/consensus_engine/version.rb +9 -0
- data/lib/equipment/consensus_engine/weight_calculator.rb +438 -0
- data/lib/equipment/consensus_engine.rb +17 -0
- metadata +65 -0
metadata
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: superinstance-equipment-consensus-engine
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- SuperInstance Ecosystem
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2026-05-03 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: |
|
|
14
|
+
Multi-agent deliberation equipment with Pathos/Logos/Ethos weighting for
|
|
15
|
+
consensus building in the Cocapn fleet.
|
|
16
|
+
|
|
17
|
+
The Consensus Engine implements a sophisticated multi-agent deliberation
|
|
18
|
+
framework based on the classical rhetorical tripartite of Pathos, Logos,
|
|
19
|
+
and Ethos. This equipment enables AI systems to make well-rounded decisions
|
|
20
|
+
by considering multiple perspectives before reaching consensus.
|
|
21
|
+
|
|
22
|
+
## The Tripartite Framework
|
|
23
|
+
|
|
24
|
+
- **Pathos** (πάθος) - Appeals to emotion, intent, and human experience
|
|
25
|
+
- **Logos** (λόγος) - Appeals to logic, reason, and rational argument
|
|
26
|
+
- **Ethos** (ἦθος) - Appeals to ethics, credibility, and moral character
|
|
27
|
+
email:
|
|
28
|
+
executables: []
|
|
29
|
+
extensions: []
|
|
30
|
+
extra_rdoc_files: []
|
|
31
|
+
files:
|
|
32
|
+
- LICENSE.txt
|
|
33
|
+
- README.md
|
|
34
|
+
- lib/equipment/consensus_engine.rb
|
|
35
|
+
- lib/equipment/consensus_engine/conflict_resolution.rb
|
|
36
|
+
- lib/equipment/consensus_engine/consensus_engine.rb
|
|
37
|
+
- lib/equipment/consensus_engine/tripartite_deliberation.rb
|
|
38
|
+
- lib/equipment/consensus_engine/types.rb
|
|
39
|
+
- lib/equipment/consensus_engine/version.rb
|
|
40
|
+
- lib/equipment/consensus_engine/weight_calculator.rb
|
|
41
|
+
homepage: https://github.com/SuperInstance/Equipment-Consensus-Engine-Ruby
|
|
42
|
+
licenses:
|
|
43
|
+
- MIT
|
|
44
|
+
metadata:
|
|
45
|
+
rubygems_mfa_required: 'true'
|
|
46
|
+
post_install_message:
|
|
47
|
+
rdoc_options: []
|
|
48
|
+
require_paths:
|
|
49
|
+
- lib
|
|
50
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - ">="
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '3.0'
|
|
55
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
56
|
+
requirements:
|
|
57
|
+
- - ">="
|
|
58
|
+
- !ruby/object:Gem::Version
|
|
59
|
+
version: '0'
|
|
60
|
+
requirements: []
|
|
61
|
+
rubygems_version: 3.3.5
|
|
62
|
+
signing_key:
|
|
63
|
+
specification_version: 4
|
|
64
|
+
summary: Multi-agent deliberation with Pathos/Logos/Ethos weighting
|
|
65
|
+
test_files: []
|