staad-reports — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited staad-reports (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.
All report operations go through table = staad.Table.
report_no = table.CreateReport("Analysis Results")
count = table.GetReportCount()
table.DeleteReport(report_no)table_no = table.AddTable(report_no, "Node Displacements", row_count, col_count)
table.RenameTable(report_no, table_no, "New Name")
table.ResizeTable(report_no, table_no, new_rows, new_cols)
table.DeleteTable(report_no, table_no)Row and column indices start from 1.
table.SetCellValue(report_no, table_no, row, col, "value")
value = table.GetCellValue(report_no, table_no, row, col)table.SetColumnHeader(report_no, table_no, col, "Header")
table.SetColumnUnitString(report_no, table_no, col, "mm")
table.SetRowHeader(report_no, table_no, row, "Row Label")# Text style
table.SetCellTextBold(report_no, table_no, row, col)
table.SetCellTextItalic(report_no, table_no, row, col)
table.SetCellTextUnderline(report_no, table_no, row, col)
# Color (RGB 0-255)
table.SetCellTextColor(report_no, table_no, row, col, red, green, blue)
# Size
table.SetCellTextSize(report_no, table_no, row, col, size)
table.SetCellTextSizeAll(report_no, table_no, size) # entire table
# Alignment
table.SetCellTextHorzAlignment(report_no, table_no, row, col, align) # 0=left, 1=center, 2=right
table.SetCellTextVertAlignment(report_no, table_no, row, col, align) # 0=top, 4=center, 8=bottomtable.SaveTable(report_no, table_no) # save one table
table.SaveReport(report_no) # save entire report
table.SaveReportAll() # save all reportsstr() or f"{value:.3f}"~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.