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/routing-fixtures.json
{
"version": "0.1.0",
"agents": [
{
"id": "security-1",
"name": "Security",
"perspective": "security",
"knowledge_items": [
"authentication hardening",
"authorization policies",
"token replay defence",
"threat modeling"
],
"score_vector": {
"knowledge": 0.55,
"synthesis": 0.62,
"connections": 0.15
},
"connections": []
},
{
"id": "performance-2",
"name": "Performance",
"perspective": "performance",
"knowledge_items": [
"query optimization",
"database indexing",
"latency profiling",
"caching strategies"
],
"score_vector": {
"knowledge": 0.58,
"synthesis": 0.65,
"connections": 0.2
},
"connections": []
},
{
"id": "design-3",
"name": "Design",
"perspective": "design",
"knowledge_items": [
"user onboarding",
"interaction design",
"layout hierarchy",
"product copy"
],
"score_vector": {
"knowledge": 0.48,
"synthesis": 0.6,
"connections": 0.12
},
"connections": []
},
{
"id": "operations-4",
"name": "Operations",
"perspective": "operations",
"knowledge_items": [
"rolling deploys",
"service reliability",
"incident response",
"deployment pipelines"
],
"score_vector": {
"knowledge": 0.52,
"synthesis": 0.58,
"connections": 0.18
},
"connections": []
}
],
"cases": [
{
"id": "security_single",
"prompt": "Harden authentication tokens against replay and tighten authorization checks.",
"strategy": "single",
"agent_count": 1,
"expected_selected_agent_ids": ["security-1"]
},
{
"id": "design_parallel",
"prompt": "Improve user onboarding with clearer layout hierarchy and stronger product copy.",
"strategy": "parallel",
"agent_count": 2,
"expected_selected_agent_ids": ["design-3", "performance-2"]
},
{
"id": "performance_parallel",
"prompt": "Reduce API latency with better query optimization, indexing, and caching strategies.",
"strategy": "parallel",
"agent_count": 2,
"expected_selected_agent_ids": ["performance-2", "security-1"]
},
{
"id": "operations_all",
"prompt": "Compare rolling deploys and incident response runbooks for service reliability.",
"strategy": "all",
"agent_count": 4,
"expected_selected_agent_ids": [
"operations-4",
"performance-2",
"security-1",
"design-3"
]
}
]
}