promethee-evaluator — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited promethee-evaluator (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 PROMETHEE Evaluator skill implements the Preference Ranking Organization Method for Enrichment Evaluation methodology for multi-criteria decision analysis. It uses outranking relations based on pairwise comparisons of alternatives, allowing for flexible preference modeling through various preference functions.
# Define PROMETHEE configuration
config = {
"alternatives": ["Alt A", "Alt B", "Alt C", "Alt D"],
"criteria": [
{
"name": "Cost",
"weight": 0.3,
"type": "cost",
"preference_function": "linear",
"parameters": {"p": 20000, "q": 5000}
},
{
"name": "Quality",
"weight": 0.4,
"type": "benefit",
"preference_function": "gaussian",
"parameters": {"sigma": 10}
},
{
"name": "Delivery",
"weight": 0.3,
"type": "cost",
"preference_function": "v_shape",
"parameters": {"p": 5}
}
],
"performance_matrix": [
[100000, 85, 12], # Alt A
[120000, 92, 8], # Alt B
[80000, 78, 15], # Alt C
[110000, 88, 10] # Alt D
]
}The GAIA plane provides:
{
"alternatives": ["string"],
"criteria": [
{
"name": "string",
"weight": "number",
"type": "benefit|cost",
"preference_function": "usual|u_shape|v_shape|level|linear|gaussian",
"parameters": "object"
}
],
"performance_matrix": "2D array of numbers",
"options": {
"method": "PROMETHEE_I|PROMETHEE_II",
"gaia_visualization": "boolean",
"sensitivity_analysis": "boolean"
}
}{
"ranking": [
{
"alternative": "string",
"rank": "number",
"phi_plus": "number",
"phi_minus": "number",
"phi_net": "number"
}
],
"outranking_matrix": "2D array",
"partial_ranking": {
"preferred_pairs": ["object"],
"incomparable_pairs": ["object"]
},
"gaia_data": {
"alternative_coordinates": "object",
"criteria_axes": "object",
"decision_axis": "object"
},
"sensitivity_results": "object"
}~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.