Packages
A Fair Source multi-agent runtime with deterministic agent scoring and replayable run history.
Current section
Files
Jump to
Current section
Files
priv/shared/ordering-fixtures.json
{
"version": "0.1.0",
"agents": [
{
"id": "systems-1",
"name": "Systems",
"perspective": "systems",
"knowledge_items": ["analysis", "planning", "systems"],
"score_vector": {
"knowledge": 0.6,
"synthesis": 0.9,
"connections": 0.5
},
"connections": []
},
{
"id": "creative-2",
"name": "Creative",
"perspective": "creative",
"knowledge_items": ["design", "ideation"],
"score_vector": {
"knowledge": 0.55,
"synthesis": 0.7,
"connections": 0.3
},
"connections": []
},
{
"id": "ops-3",
"name": "Operations",
"perspective": "operations",
"knowledge_items": ["execution", "reliability"],
"score_vector": {
"knowledge": 0.52,
"synthesis": 0.68,
"connections": 0.2
},
"connections": []
},
{
"id": "research-4",
"name": "Research",
"perspective": "research",
"knowledge_items": ["evaluation"],
"score_vector": {
"knowledge": 0.4,
"synthesis": 0.55,
"connections": 0.1
},
"connections": []
}
],
"expected": {
"ranked_agent_ids": ["systems-1", "creative-2", "ops-3", "research-4"],
"comparable_pairs": [
["creative-2", "systems-1"],
["ops-3", "systems-1"],
["research-4", "systems-1"],
["research-4", "creative-2"],
["research-4", "ops-3"]
],
"incomparable_pairs": [["creative-2", "ops-3"]],
"positions": {
"systems-1": 0.28,
"creative-2": 0.225,
"ops-3": 0.196,
"research-4": 0.14
}
}
}