staad-steel-design — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited staad-steel-design (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.
Step 1 — Create design brief
brief_ref = design.CreateDesignBrief(1067) # AISC 360-16| Code | Standard |
|---|---|
| 1067 | AISC 360-16 |
| 1061 | AISC 360-10 |
| 1045 | AISC 360-05 |
| 1004 | BS 5950-1:2000 |
| 1220 | BS EN 1993-1-1 (Eurocode 3) |
| 1032 | IS 800 2007 LSD |
| 1149 | AS 4100 |
| 1182 | CSA S16-14 |
Step 2 — Assign design commands to members
design.AssignDesignCommand(brief_ref, 'CHECK CODE', '', beam_list)
# Returns True on success and raises on failure (execute_code reports any error)| Command | Description |
|---|---|
| CHECK CODE | Verify member capacity against the code |
| SELECT | Optimize section (pick the lightest passing section) |
| TAKE OFF | Generate material take-off report |
Step 3 — Save to persist design commands
staad.SaveModel(True)Step 4 — Run analysis + design
staad.SetSilentMode(True)
status = staad.AnalyzeEx(1, 0, 1) # silentMode=1, hiddenMode=0, waitTillComplete=1
staad.SetSilentMode(False)
# status == 2 means successStep 5 — Read results
out = staad.Output
# Verify first
blk_count = out.GetSteelDesignParameterBlockCount() # must be > 0
# Per-member full results
r = out.GetMemberSteelDesignResults(bid)
# Returns: (codeName, status, ratio, allowable, critLC, critPos, clause, section, forces[FX,MY,MZ], klr)
# status: 'PASS' or 'FAIL'; ratio > 1.0 = failure
# Quick ratio only
ratio = out.GetMemberSteelDesignRatio(bid) # -999=not designed, -1=no analysis
# Model-wide extremes
max_r = out.GetMemberSteelDesignMaxFailureRatio()
min_r = out.GetMemberSteelDesignMinFailureRatio()Assign parameters before running analysis:
design.AssignDesignParameter(brief_ref, paramName, paramValue, member_ids)
# Returns True on success and raises on failure| Parameter | Description | Example |
|---|---|---|
| BEAM | Member is a beam | "1" |
| FYLD | Yield strength | "250" (MPa) |
| FU | Ultimate strength | "400" (MPa) |
| KY | Effective length factor Y | "0.85" |
| KZ | Effective length factor Z | "1.0" |
| LY | Unbraced length Y | "3000" (mm) |
| LZ | Unbraced length Z | "3000" (mm) |
| CB | Bending coefficient | "1.0" |
| UNL | Unsupported length | "6000" (mm) |
| TRACK | Output detail level | "2" |
| DMAX | Maximum section depth | "600" (mm) |
| DMIN | Minimum section depth | "200" (mm) |
Group members to use the same section during optimization:
design.AssignDesignGroup(brief_ref, 'scSteelGroup', 'ColumnGroup', sameAsMember=1, member_ids=[1,2,3])
# Returns True on success and raises on failureparams = design.GetMemberDesignParameters(brief_ref, memberNo)
# Returns dict with status, count, parametersbeam_to_section = {}
for sid in list(prop.GetSectionPropertyList()):
name = prop.GetSectionPropertyName(sid)
for bid in list(prop.GetSectionPropertyAssignedBeamList(sid)):
beam_to_section[bid] = nameSee aisc360-design.py for a complete working example.
AnalyzeEx(1, 0, 1) not AnalyzeModel — only AnalyzeEx triggers designGetSteelDesignParameterBlockCount() returns 0 until AnalyzeEx completesAssignDesignCommand, AssignDesignParameter, and AssignDesignGroup return True on success and raise on failure — call them directly (do NOT check for a non-zero return code); execute_code reports any uncaught errorCreateDesignBrief validates the design code and raises on an invalid codeGetMemberDesignParameters validates its arguments and raises on errorGetMemberSteelDesignResults raises an error for members not assigned CHECK CODEAssignDesignParameter~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.