Bayesian network construction and inference skill for probabilistic reasoning, causal analysis, and belief updating
Constructs Bayesian networks for probabilistic reasoning, causal analysis, and belief updating from data.
npx claudepluginhub a5c-ai/babysitterThis skill is limited to using the following tools:
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"
}
Activates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.
Search, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools. Use when the user asks to find skills, browse skill catalogs, install a skill for Claude, or extend Claude's capabilities with reusable AI agent components.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.