ahp-calculator — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited ahp-calculator (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 AHP Calculator skill implements the Analytic Hierarchy Process methodology for multi-criteria decision analysis. It enables systematic evaluation of alternatives through pairwise comparisons, consistency validation, and weight derivation, supporting both individual and group decision-making scenarios.
The standard Saaty scale for pairwise comparisons:
# Define AHP hierarchy
hierarchy = {
"goal": "Select Best Vendor",
"criteria": [
{
"name": "Cost",
"sub_criteria": ["Initial Cost", "Maintenance Cost"]
},
{
"name": "Quality",
"sub_criteria": ["Product Quality", "Service Quality"]
},
{
"name": "Delivery",
"sub_criteria": ["Lead Time", "Reliability"]
}
],
"alternatives": ["Vendor A", "Vendor B", "Vendor C"]
}# Criteria comparison matrix
criteria_comparison = {
"Cost": {"Cost": 1, "Quality": 3, "Delivery": 5},
"Quality": {"Cost": 1/3, "Quality": 1, "Delivery": 3},
"Delivery": {"Cost": 1/5, "Quality": 1/3, "Delivery": 1}
}The skill calculates:
Aggregation methods supported:
{
"hierarchy": {
"goal": "string",
"criteria": ["object"],
"alternatives": ["string"]
},
"comparisons": {
"criteria": "matrix",
"sub_criteria": "object of matrices",
"alternatives": "object of matrices"
},
"options": {
"aggregation_method": "AIJ|AIP",
"consistency_threshold": "number",
"sensitivity_analysis": "boolean"
}
}{
"weights": {
"criteria": "object",
"sub_criteria": "object",
"alternatives": "object"
},
"global_weights": "object",
"ranking": ["string"],
"consistency": {
"CR": "number",
"is_consistent": "boolean",
"inconsistent_comparisons": ["object"]
},
"sensitivity": {
"critical_criteria": ["string"],
"stability_intervals": "object"
}
}When CR > 0.10, the skill identifies:
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.