Agent Skill · AutoCAD

acad-cuix-builder

Generate an AutoCAD partial CUIX file from prompts. Collects plugin name, ribbon panels, buttons, and LISP/command macros — then builds a ready-to-CUILOAD .cuix file with properly embedded BMP icons.

Provider: AutoCAD Path in repo: skills/acad-cuix-builder/SKILL.md

Skill body

AutoCAD CUIX Builder

Conversational skill that generates a partial AutoCAD CUIX file. No manual XML editing.

Architecture reference: see references/cuix-architecture.md.


Step 0 — Verify generator is available

Run in PowerShell:

$exe = "$env:USERPROFILE\.cuixbuilder\CuixBuilder.exe"
if (Test-Path $exe) { Write-Host "exe found: $exe" }
elseif (Get-Command dotnet -ErrorAction SilentlyContinue) { dotnet --version }
else { Write-Host "Neither found — see install.ps1" }

Step 1 — Collect plugin identity

Ask:


Step 2 — Collect panels

Ask:


Step 3 — Collect buttons (per panel)

For each panel, for each button ask:


Step 4 — Output path

Ask where to save the .cuix file.
Default: current directory + <PluginName>.cuix


Step 5 — Confirm, build JSON, generate

Show a summary table:

Plugin : <DisplayName>   Tab : <Tab>   Output : <path>

Panel: <name>
  [1] <label>  →  <command>   image: <file or "placeholder blue">
  [2] ...

Confirm with user, then build the JSON config:

{
  "pluginName": "NoSpaces",
  "displayName": "Human Name",
  "tab": "Tab Label",
  "outputPath": "C:\\full\\path\\Plugin.cuix",
  "panels": [
    {
      "name": "Panel Name",
      "buttons": [
        {
          "label": "Button Label",
          "command": "raw input",
          "imagePath": null,
          "tooltip": "Optional"
        }
      ]
    }
  ]
}

Write config to $env:TEMP\cuix_<timestamp>.json, then run:

# With exe (preferred)
& "$env:USERPROFILE\.cuixbuilder\CuixBuilder.exe" $configPath

# With SDK fallback
dotnet run --project "<path-to-src>" -c Release -- $configPath

Step 6 — Report result

On success:

Done: <outputPath>
In AutoCAD: CUILOAD → browse to <outputPath>

On failure: show stderr and diagnose (common: missing exe, wrong path, invalid JSON).


Command normalization

User types Becomes
QLEADER ^C^CQLEADER
zoom e ^C^CZOOM E
(alert "Hi") ^C^C(alert "Hi")
^C^CMYCOMMAND ^C^CMYCOMMAND (unchanged)

Placeholder icon colors (auto-generated when no image provided)

Index cycles 0→7 across all buttons in the CUIX.

0 1 2 3 4 5 6 7
Blue Green Orange Purple Teal Red Amber Cyan

Skill frontmatter

argument-hint: Describe the plugin (e.g. 'drafting tools with a Quick Leader button and a Zoom Extents button') compatibility: Windows only. Requires CuixBuilder.exe (see install.ps1) OR .NET SDK 10.0.

Work with this as data

Every skill here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for agent skills

4 MCP tools reach this
  • find_skillsBrowse and filter every skill in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This skill
curl "https://apis.io/api/v1/skills/acad-cuix-builder"
All agent skills
curl "https://apis.io/api/v1/skills?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.