s3d-api

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

A guide for creating, analysing, and querying SkyCiv Structural 3D models through the SkyCiv API. The model is represented as JSON, a text format for structured data, containing items such as nodes, members, materials, loads, and supports.

In plain words
What is it for?
Use it to build or edit structural models, run model-related API operations, query results, handle files, and work with SkyCiv’s S3D and related namespaces.
Why use it?
It explains the model format and the API areas used to change models, inspect analysis results, and work with files. It also identifies the required session-start step before other S3D calls.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is See the [`load-combinations`](../load-combinations/SKILL.md) skill for how this ties into.

Good fit Use it to build or edit structural models, run model-related API operations, query results, handle files, and work with SkyCiv’s S3D and related namespaces.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/skyciv/skyciv-ai-skills
agentmods
npx agentmods add skills/skyciv/skyciv-ai-skills/s3d-api

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 s3d-api

README.md
[![agentmods](https://agentmods.dev/badge/skills/skyciv/skyciv-ai-skills/s3d-api/github.svg)](https://agentmods.dev/skills/skyciv/skyciv-ai-skills/s3d-api)
Your own site
<a href="https://agentmods.dev/skills/skyciv/skyciv-ai-skills/s3d-api"><img src="https://agentmods.dev/badge/skills/skyciv/skyciv-ai-skills/s3d-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 s3d-api

Your own site · 80×15
<a href="https://agentmods.dev/skills/skyciv/skyciv-ai-skills/s3d-api"><img src="https://agentmods.dev/badge/skills/skyciv/skyciv-ai-skills/s3d-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 9,317 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.09317
Opus 5 $0.00000 $0.04659
Sonnet 5 $0.00000 $0.01863
Haiku 4.5 $0.00000 $0.00932

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

Security

Grade A, and why

s3d-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.

s3d-api/SKILL.md · 1,037 lines

How it starts

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

S3D Agent Skill

You are an agent that builds, analyses, and queries SkyCiv Structural 3D (S3D) structural models via the SkyCiv API. This skill covers the full s3d_model JSON schema and every function in the S3D.model, S3D.results, S3D.file, and S3D.SB namespaces.

Prerequisite: Always begin a session with S3D.session.start as the first function. See the skyciv-core skill for auth, options, and the request/response envelope.


The s3d_model Object

The s3d_model is the JSON representation of a structural model. It is passed to S3D.model.set.

{
  "settings": { ... },
  "nodes": { ... },
  "members": { ... },
  "plates": { ... },
  "meshed_plates": { ... },
  "sections": { ... },
  "materials": { ... },
  "supports": { ... },
  "settlements": { ... },
  "point_loads": { ... },
  "moments": { ... },
  "distributed_loads": { ... },
  "pressures": { ... },
  "area_loads": { ... },
  "self_weight": { ... },
  "load_combinations": { ... },
  "load_cases": { ... },
  "groups": { ... },
  "gridlines_and_elevations": [ ... ]
}

All objects use integer-keyed dictionaries (e.g. "1": { ... }, "2": { ... }), except gridlines_and_elevations, which is a plain array.

Tip: To inspect a model as JSON, open it in SkyCiv S3D and use File → Export → SkyCiv File (JSON for API). To test JSON, use File → Import → SkyCiv File (JSON for API).


settings

Key Type Accepts Default
units string or object "imperial", "metric", or detailed object varies
vertical_axis string "Y", "Z" "Y"
precision string "fixed", "exponential" "fixed"
precision_values integer 1–15
evaluation_points integer 3–50
solver_timeout integer seconds
non_linear_tolerance string e.g. "1" (= 1%)
non_linear_theory string "small", "finite" "small"
auto_stabilize_model boolean false
member_offsets_axis string "global", "local" "local"
dynamic_modes integer positive integer 5

Read the full file on GitHub · 1,037 lines

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 · 1,037 lines · 0 tokens per session scan A 6309c67684ac

Subscribe to this mod's changes

s3d-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 9,317 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