bayesian-network-analyzer — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited bayesian-network-analyzer (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
The Bayesian Network Analyzer skill provides comprehensive capabilities for constructing, analyzing, and reasoning with Bayesian networks. It enables probabilistic inference, causal effect estimation, and belief updating based on new evidence, supporting data-driven decision-making under uncertainty.
# Define network structure
network_structure = {
"nodes": [
{"name": "MarketCondition", "states": ["Favorable", "Unfavorable"]},
{"name": "CompetitorAction", "states": ["Aggressive", "Passive"]},
{"name": "ProductSuccess", "states": ["High", "Medium", "Low"]}
],
"edges": [
{"from": "MarketCondition", "to": "ProductSuccess"},
{"from": "CompetitorAction", "to": "ProductSuccess"}
]
}# Define CPTs
cpts = {
"MarketCondition": {"Favorable": 0.6, "Unfavorable": 0.4},
"CompetitorAction": {"Aggressive": 0.3, "Passive": 0.7},
"ProductSuccess": {
# P(Success | Market, Competitor)
("Favorable", "Passive"): {"High": 0.7, "Medium": 0.2, "Low": 0.1},
("Favorable", "Aggressive"): {"High": 0.4, "Medium": 0.4, "Low": 0.2},
("Unfavorable", "Passive"): {"High": 0.3, "Medium": 0.4, "Low": 0.3},
("Unfavorable", "Aggressive"): {"High": 0.1, "Medium": 0.3, "Low": 0.6}
}
}Supported inference types:
Learn network structure from data using:
{
"network": {
"nodes": ["object"],
"edges": ["object"],
"cpts": "object"
},
"query": {
"type": "marginal|conditional|mpe|map",
"target_variables": ["string"],
"evidence": "object"
},
"options": {
"inference_algorithm": "variable_elimination|belief_propagation|sampling",
"structure_learning": "boolean",
"visualize": "boolean"
}
}{
"query_result": {
"probabilities": "object",
"most_likely_state": "string",
"confidence": "number"
},
"causal_effects": "object",
"sensitivity": {
"influential_parameters": ["string"],
"robustness_score": "number"
},
"visualization_path": "string"
}~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.