load-gen-api

load-gen-api is a skill for Claude Code, Codex from skyciv/skyciv-ai-skills. It costs 0 tokens per session (6,917 once invoked), scanned A, original, MIT.

An API guide for retrieving wind speeds, snow loads, wind pressures, and seismic data for locations worldwide through SkyCiv's Load Generator API.

In plain words
What is it for?
Use it to request wind, snow, wind-pressure, or seismic information for a site and pass the data into structural design work.
Why use it?
It provides environmental design data in a form that can be used in structural calculations, with the relevant location and design code.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions CLAUDE.md.

Good fit Use it to request wind, snow, wind-pressure, or seismic information for a site and pass the data into structural design work.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/skyciv/skyciv-ai-skills/load-gen-api
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add skyciv/skyciv-ai-skills --skill load-gen-api
Clone the repo
git clone --depth 1 https://github.com/skyciv/skyciv-ai-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for load-gen-api

README.md
[![agentmods](https://agentmods.dev/badge/skills/skyciv/skyciv-ai-skills/load-gen-api/github.svg)](https://agentmods.dev/skills/skyciv/skyciv-ai-skills/load-gen-api)
Your own site
<a href="https://agentmods.dev/skills/skyciv/skyciv-ai-skills/load-gen-api"><img src="https://agentmods.dev/badge/skills/skyciv/skyciv-ai-skills/load-gen-api/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for load-gen-api

Your own site · 80×15
<a href="https://agentmods.dev/skills/skyciv/skyciv-ai-skills/load-gen-api"><img src="https://agentmods.dev/badge/skills/skyciv/skyciv-ai-skills/load-gen-api.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 6,917 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00000 $0.06917
Opus 5 $0.00000 $0.03459
Sonnet 5 $0.00000 $0.01383
Haiku 4.5 $0.00000 $0.00692

Measured 12d ago against content hash 24954d4ff593, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

load-gen-api scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

load-gen-api/SKILL.md · 632 lines

How it starts

The opening of the file, as written. The whole thing — 632 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Load Generator Agent Skill

You are an agent that retrieves wind speeds, snow loads, wind pressures, and seismic data for any location worldwide using the SkyCiv Load Generator API (standalone.loads namespace). This skill covers all functions, parameters, and design codes.

Prerequisite: Always begin a session with standalone.loads.start as the first function (see "Session Start" below — S3D.session.start does not work here, despite what you may see suggested elsewhere). See the skyciv-core skill for auth, options, and the request/response envelope.


Session Start

Always open the session with standalone.loads.start, even in an app that also builds/solves an S3D model elsewhere:

{
  "function": "standalone.loads.start",
  "arguments": { "keep_open": false }
}

S3D.session.start does NOT work as the opener for standalone.loads.* calls — this contradicts earlier guidance in this skill and in CLAUDE.md claiming it does. Confirmed directly against the live API: a call shaped [{S3D.session.start}, {standalone.loads.getLoads}] returns session.start succeeding but standalone.loads.getLoads failing with a generic "The function 'standalone.loads.getLoads' could not be completed for an unknown reason" — not an auth error, not a clear "wrong session type" error, just a silent failure on the second call. The exact same request with standalone.loads.start as the opener instead succeeds. If your app needs both an S3D model and a load-gen-api lookup, run them as two separate sessions/requests (each with its own matching *.start call) rather than one combined envelope — do not assume the two namespaces can share a single session opener.


Supported Design Codes

design_code value Standard Load Types
asce7-10 ASCE 7-10 Wind, Snow
asce7-16 ASCE 7-16 Wind, Snow, Seismic
asce7-22 ASCE 7-22 Wind, Snow, Seismic
as1170 AS/NZS 1170 Wind, Snow, Seismic (NZS 1170.5)
en1991 Eurocode EN 1991 Wind, Snow
nbcc2015 NBCC 2015 Wind, Snow
nbcc2020 NBCC 2020 Wind, Snow
is875 IS 875 Wind
nscp2015 NSCP 2015 Wind, Snow, Seismic
cfe-viento CFE Viento (Mexico) Wind
cte-db-se CTE DB SE-AE (Spain) Wind

Read the full file on GitHub · 632 lines

Files

What ships with it

52 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 632 lines · 0 tokens per session scan A 24954d4ff593

Subscribe to this mod's changes

load-gen-api is a skill published in the GitHub repository skyciv/skyciv-ai-skills (7 stars, last pushed 9d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 6,917 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

adaptyv

How to use the Adaptyv Bio Foundry API and Python SDK for protein experiment design, submission, and results retrieval. Use this skill whenever the user mentions Adaptyv, Foundry API, protein binding assays, protein screening experiments, BLI/SPR assays, thermostability assays, or wants to submit protein sequences for…

K-Dense-AI/scientific-agent-skills · 113 tokens

benchling-integration

Benchling Python SDK and REST API integration for registry entities, inventory, ELN entries, workflows, Benchling Apps, and Data Warehouse queries. Use when automating lab data with benchling-sdk or the v2 API.

K-Dense-AI/scientific-agent-skills · 50 tokens

labarchive-integration

Securely integrate with the official LabArchives ELN REST-like API and Inventory API v1. Use for regional endpoint selection, signed-request construction, user authorization and UID flows, local LA container validation, and verified LabArchives integration workflows.

K-Dense-AI/scientific-agent-skills · 52 tokens

earth2studio-create-datasource

Create and validate Earth2Studio data source wrappers (DataSource, ForecastSource, DataFrameSource, ForecastFrameSource) from remote stores. Do NOT use for fetching data with existing sources, model inference, or installation tasks.

NVIDIA/skills · 53 tokens

assembling-fhir-bundles

Package multiple FHIR R4 resources produced from OpenMed output into a single valid transaction Bundle ready to POST to an EHR, using OpenMed's verified bundle assembler openmed.clinical.exporters.fhir.tobundle. Covers deterministic urn:uuid fullUrls, automatic in-Bundle reference rewriting, request blocks…

maziyarpanahi/openmed · 131 tokens

exporting-bulk-fhir

Kick off and harvest a FHIR Bulk Data $export (system-, group-, or patient-level) and stream the resulting NDJSON into a batch OpenMed de-identification + NER pipeline at cohort scale. Covers the async kickoff (Prefer respond-async) -> poll Content-Location -> download NDJSON flow, the Bulk Data Access IG, type/since…

maziyarpanahi/openmed · 151 tokens