system-dynamics-modeler — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited system-dynamics-modeler (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 System Dynamics Modeler skill provides capabilities for building and analyzing system dynamics models to understand complex systems with feedback loops, delays, and non-linear behaviors. It supports causal loop diagramming, stock-flow modeling, and policy testing for strategic decision support.
# Define causal relationships
causal_loops = {
"variables": [
"Market Share", "Revenue", "R&D Investment",
"Product Quality", "Customer Satisfaction", "Word of Mouth"
],
"links": [
{"from": "Market Share", "to": "Revenue", "polarity": "+"},
{"from": "Revenue", "to": "R&D Investment", "polarity": "+"},
{"from": "R&D Investment", "to": "Product Quality", "polarity": "+", "delay": True},
{"from": "Product Quality", "to": "Customer Satisfaction", "polarity": "+"},
{"from": "Customer Satisfaction", "to": "Word of Mouth", "polarity": "+"},
{"from": "Word of Mouth", "to": "Market Share", "polarity": "+"}
],
"loops": [
{"name": "Growth Engine", "type": "reinforcing", "variables": ["Market Share", "Revenue", "R&D Investment", "Product Quality", "Customer Satisfaction", "Word of Mouth"]}
]
}# Define stock-flow structure
model = {
"stocks": {
"Customers": {
"initial_value": 1000,
"inflows": ["customer_acquisition"],
"outflows": ["customer_churn"]
},
"Brand_Awareness": {
"initial_value": 0.1,
"inflows": ["marketing_effect"],
"outflows": ["awareness_decay"]
}
},
"flows": {
"customer_acquisition": "potential_customers * conversion_rate * Brand_Awareness",
"customer_churn": "Customers * churn_rate",
"marketing_effect": "marketing_spend * effectiveness / market_size",
"awareness_decay": "Brand_Awareness * decay_rate"
},
"auxiliaries": {
"potential_customers": "market_size - Customers",
"conversion_rate": "base_conversion * (1 + product_quality_factor)"
},
"constants": {
"market_size": 100000,
"base_conversion": 0.05,
"churn_rate": 0.02,
"decay_rate": 0.1,
"effectiveness": 0.001
}
}# Simulation settings
simulation_config = {
"time_settings": {
"initial_time": 0,
"final_time": 120, # months
"time_step": 1,
"save_interval": 1
},
"integration_method": "euler|rk4",
"scenarios": [
{"name": "Base Case", "parameters": {}},
{"name": "High Marketing", "parameters": {"marketing_spend": 50000}},
{"name": "Low Churn", "parameters": {"churn_rate": 0.01}}
]
}| Type | Behavior | Example |
|---|---|---|
| Reinforcing (R) | Exponential growth/decline | Sales -> Revenue -> Marketing -> Sales |
| Balancing (B) | Goal-seeking, oscillation | Inventory -> Orders -> Production -> Inventory |
{
"model_type": "causal_loop|stock_flow",
"model_definition": {
"stocks": "object",
"flows": "object",
"auxiliaries": "object",
"constants": "object",
"causal_links": ["object"]
},
"simulation_config": {
"initial_time": "number",
"final_time": "number",
"time_step": "number",
"scenarios": ["object"]
},
"analysis_options": {
"equilibrium_analysis": "boolean",
"sensitivity_analysis": "boolean",
"loop_analysis": "boolean"
}
}{
"simulation_results": {
"time": ["number"],
"variables": {
"variable_name": ["number"]
}
},
"scenario_comparison": {
"scenario_name": {
"final_values": "object",
"peak_values": "object",
"time_to_equilibrium": "number"
}
},
"feedback_loops": [
{
"name": "string",
"type": "reinforcing|balancing",
"variables": ["string"],
"dominance_periods": ["object"]
}
],
"equilibrium_analysis": {
"stable_points": ["object"],
"unstable_points": ["object"]
},
"visualization_paths": ["string"]
}The skill supports policy testing:
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.