topsis-ranker — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited topsis-ranker (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 TOPSIS Ranker skill implements the Technique for Order of Preference by Similarity to Ideal Solution methodology for multi-criteria decision analysis. It ranks alternatives based on their geometric distance from ideal and anti-ideal solutions, providing intuitive and mathematically sound rankings.
# Define decision matrix (alternatives x criteria)
decision_matrix = {
"alternatives": ["Option A", "Option B", "Option C", "Option D"],
"criteria": ["Cost", "Quality", "Time", "Risk"],
"values": [
[100000, 85, 12, 3], # Option A
[150000, 92, 8, 2], # Option B
[80000, 78, 15, 4], # Option C
[120000, 88, 10, 2] # Option D
],
"weights": [0.3, 0.35, 0.2, 0.15],
"criteria_type": ["cost", "benefit", "cost", "cost"] # minimize/maximize
}C* = S- / (S+ + S-)
{
"decision_matrix": {
"alternatives": ["string"],
"criteria": ["string"],
"values": "2D array of numbers",
"weights": ["number"],
"criteria_type": ["benefit|cost"]
},
"options": {
"normalization_method": "vector|linear|max_min",
"sensitivity_analysis": "boolean",
"visualization": "boolean"
}
}{
"ranking": [
{
"alternative": "string",
"rank": "number",
"closeness_coefficient": "number",
"distance_to_ideal": "number",
"distance_to_anti_ideal": "number"
}
],
"ideal_solution": "object",
"anti_ideal_solution": "object",
"sensitivity_results": {
"weight_sensitivity": "object",
"rank_stability": "object"
},
"visualization_path": "string"
}~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.