Packages
A Fair Source multi-agent runtime with deterministic agent scoring and replayable run history.
Retired package: Deprecated - superseded — operator console moved to the Syntropy app
Current section
Files
Jump to
Current section
Files
priv/shared/replay-fixtures.json
{
"version": "0.1.0",
"agents": [
{
"id": "architecture-1",
"name": "Architecture",
"perspective": "architecture",
"knowledge_items": [
"system design",
"service boundaries",
"architecture review",
"threat modeling"
],
"score_vector": {
"knowledge": 0.58,
"synthesis": 0.62,
"connections": 0.3
},
"connections": [
{
"target_agent_id": "performance-2",
"weight": 0.52,
"interactions": 6
}
]
},
{
"id": "performance-2",
"name": "Performance",
"perspective": "performance",
"knowledge_items": [
"latency profiling",
"query optimization",
"capacity planning",
"caching strategies"
],
"score_vector": {
"knowledge": 0.6,
"synthesis": 0.64,
"connections": 0.3
},
"connections": [
{
"target_agent_id": "architecture-1",
"weight": 0.52,
"interactions": 6
}
]
},
{
"id": "reliability-3",
"name": "Reliability",
"perspective": "reliability",
"knowledge_items": [
"incident response",
"service reliability",
"postmortem analysis",
"rollback planning",
"failure isolation",
"recovery coordination",
"degradation analysis"
],
"score_vector": {
"knowledge": 0.56,
"synthesis": 0.6,
"connections": 0.18
},
"connections": []
},
{
"id": "reliability-specialist-4",
"name": "Reliability Specialist",
"perspective": "reliability specialist",
"knowledge_items": [
"incident response",
"service reliability",
"postmortem analysis",
"rollback planning",
"failure isolation",
"recovery coordination",
"degradation analysis"
],
"score_vector": {
"knowledge": 0.54,
"synthesis": 0.58,
"connections": 0.16
},
"connections": []
}
],
"tasks": [
{
"prompt": "system design service boundaries capacity planning latency profiling",
"strategy": "parallel",
"agent_count": 2,
"repeat": 3,
"expected_selected_agent_ids": [
"architecture-1",
"performance-2"
]
}
],
"approval_action": "approve",
"expected": {
"task_count": 3,
"recommendation_count": 1,
"snapshot_count": 4,
"latest_ranked_agent_ids": [
"performance-2",
"architecture-1",
"join:architecture-1|performance-2",
"reliability-3",
"reliability-specialist-4"
],
"applied_agent_id": "join:architecture-1|performance-2"
}
}