cloudcad-api

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

A skill for creating and managing SkyCiv CloudCAD drawings through the SkyCiv API. CAD means computer-aided design; here, drawings are represented as structured JSON data containing settings, reusable blocks, pages, and canvases.

In plain words
What is it for?
It is for creating drawing models, managing drawing sheets and reusable title blocks, setting export and display properties, and working with CloudCAD model and file APIs.
Why use it?
It documents the drawing data format and the API operations needed to create or manage CloudCAD files. It also records schema details and requires a session to start in a specific way.

Skill for Claude CodeCodex

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

Good fit It is for creating drawing models, managing drawing sheets and reusable title blocks, setting export and display properties, and working with CloudCAD model and file APIs.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/skyciv/skyciv-ai-skills/cloudcad-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 cloudcad-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 cloudcad-api

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/skyciv/skyciv-ai-skills/cloudcad-api"><img src="https://agentmods.dev/badge/skills/skyciv/skyciv-ai-skills/cloudcad-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 12,564 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.12564
Opus 5 $0.00000 $0.06282
Sonnet 5 $0.00000 $0.02513
Haiku 4.5 $0.00000 $0.01256

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

Security

Grade A, and why

cloudcad-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 10d 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.

cloudcad-api/SKILL.md · 1,167 lines

How it starts

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

Draftsperson Agent Skill (CAD API)

You are an agent that creates and manages SkyCiv CloudCAD drawings via the SkyCiv API. This skill covers the full CAD JSON schema and the cloudcad.model and cloudcad.file API 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.


CAD Data Format Overview

A CAD model is a JSON object with this top-level structure:

{
  "settings": { ... },        // global display/snap/unit settings
  "s3d": { ... },             // optional: structural 3D export mapping
  "attributeStyles": [ ... ], // dimension/text/leader/axis sizing styles
  "blockReferences": [ ... ], // block DEFINITIONS (reusable groups, e.g. title blocks) - see "Blocks" below
  "pdfExport": { ... },       // optional: printed page setup (paper size, page frame) - see "Pages" below
  "canvases": [ ... ]         // array of drawing sheets
}

This object is passed to cloudcad.model.create as cad_data.

blockReferences is camelCase and top-level, not block_references nested inside a canvas — a real, verified correction to this schema (confirmed against the live API and a genuine platform-exported file, see "Blocks" below). If you've seen block_references referenced elsewhere as a per-canvas snake_case field, that's stale.


settings

Controls display, units, snapping, and colors. All fields optional — defaults applied for any omitted values.

Key Type Description
canvasLengthUnits string "mm", "cm", "m", "ft", "in"
gridSize string Grid spacing value
snapToGrid bool Snap to grid
snapToPoint bool Snap to existing points
snapToLineEnds bool Snap to line endpoints
snapToLineMid bool Snap to line midpoints
snapToAlign bool Alignment guide snapping
snapToAxis bool Axis snapping
showGrid bool Show background grid
showAxis bool Show axis lines
showVertices bool Show vertex markers
showCreatedDimensions bool Show user-created dimensions
showSelectionDimensions bool Show dimensions on selection
canvasBackgroundColor string Hex background color
lineColor string Default line color
pointColor string Default point color
dimensionsColor string Dimension label color
selectionColor string Selected item color
highlightColor string Hover/highlight color
dimensionTextSize string Font size for dimension labels
globalDimsScale string Global dimension display scale
globalTextScale string Global text display scale
arcSegments string Segment count for arc rendering
circleSegments string Segment count for circle rendering

Read the full file on GitHub · 1,167 lines

Files

What ships with it

7 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. 10d ago First seen · 1,167 lines · 0 tokens per session scan A 3f1e02f1c337

Subscribe to this mod's changes

cloudcad-api is a skill published in the GitHub repository skyciv/skyciv-ai-skills (7 stars, last pushed 7d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 12,564 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

browserwing-executor

Control browser automation through HTTP API. Supports page navigation, element interaction (click, type, select), data extraction, accessibility snapshot analysis, screenshot, JavaScript execution, and batch operations.

MemTensor/MemOS · 42 tokens

dstack-prototyping

Use with the dstack skill for model-serving work when the image, serving command, resources, backend/fleet choice, or service behavior is not proven. Guides task-first prototyping on real hardware, choosing fleets/backends that can reuse idle instances and caches, checking vLLM/SGLang sources, and verifying the final…

dstackai/dstack · 80 tokens

ranui

Use when building UI with the ranui web-component library (elements like , , , , ) or its fluent DOM builder (ranui/builder — Div/View/Span/signal/createEffect/EventManager). Covers the import map, the full element inventory, conventions, accessibility, and where the authoritative API reference lives.

chaxus/ran · 87 tokens

sequence-diagrams

Create animated sequence diagrams showing interactions between participants using the Excalimate MCP server. Use when asked to visualize API call sequences, message flows, protocol handshakes, request/response patterns, authentication flows, or communication between services, users, and systems.

excalimate/excalimate · 55 tokens

form-list-layout

Configure what a form and a list look like — sysuiform, sysuisection and sysuielement for forms; sysuilist, sysuilistelement and sysuirelatedlist for lists; sysfilter for saved filters. Views, why a field must exist in the dictionary first, and what snowcreatemenu really writes.

serac-labs/serac · 70 tokens

reka-ui

Use when building with Reka UI (headless Vue components) - provides component API, accessibility patterns, composition (asChild), controlled/uncontrolled state, virtualization, and styling integration. Formerly Radix Vue.

YuDefine/nuxt-supabase-starter · 47 tokens