A collection of reusable AI agent skills for Autodesk Platform Services. Each skill is a self-contained instruction set that teaches a coding agent how to perform a specific APS-related task.
intro-1080.mp4
Each skill is a folder inside skills/ containing a SKILL.md file and optional supporting reference documents.
Clone this repository and copy the skill folder to wherever your AI agent looks for skills. For example, for Claude Code:
git clone https://github.com/autodesk-platform-services/skills.git
cp -r skills/aps-mcp-server-gen ~/.claude/skills/
cp -r skills/acad-arx-wizard ~/.claude/skills/Use the skills utility to install and manage skills globally or per project:
# Install all skills globally
npx skills add autodesk-platform-services/skills --global
# ... or ...| Skill | Description | Recommended install |
|---|---|---|
acad-arx-wizard |
Scaffold ObjectARX C++ projects/classes for AutoCAD 2027 and Visual Studio 2026 using deterministic PowerShell generators (ARX/DBX/CRX, Jig, Reactors, Custom Object, MFC, .NET, COM, DynProp). | npx skills add autodesk-platform-services/skills --global --skill acad-arx-wizard |
aps-docs-portal |
Navigate the APS documentation portal — decode glossary terms, crawl TOC JSON trees, extract content from static HTML pages, and convert CDN URLs to clickable portal links. | npx skills add autodesk-platform-services/skills --project --skill aps-docs-portal |
aps-mcp-server-gen |
Scaffold a custom MCP (Model Context Protocol) server that integrates with APS. Supports Node.js/TypeScript, .NET/C#, and Python. | npx skills add autodesk-platform-services/skills --project --skill aps-mcp-server-gen |
acad-dotnet |
Scaffold and develop AutoCAD 2027 .NET plugins (AutoCAD, Civil 3D, Plant 3D) targeting .NET 10 / x64. Covers csproj patterns, bundle packaging, desktop testing, and Design Automation deployment. | npx skills add autodesk-platform-services/skills --project --skill acad-dotnet |
acad-cuix-builder |
Generate AutoCAD partial CUIX files from prompts. Describe your ribbon panels and LISP/command buttons conversationally — skill builds a ready-to-CUILOAD .cuix with embedded BMP icons. Requires CuixBuilder.exe — see install note below. |
npx skills add autodesk-platform-services/skills --global --skill acad-cuix-builder |
One command installs both the skill and CuixBuilder.exe:
irm https://raw.githubusercontent.com/autodesk-platform-services/skills/main/skills/acad-cuix-builder/install.ps1 | iexThen in your agent:
/acad-cuix-builder
I need a ribbon tab called "Drafting Tools" with two panels:
Panel 1 — Annotation: Quick Leader (QLEADER), Mtext (MTEXT)
Panel 2 — View: Zoom Extents (ZOOM E), Regen (REGEN)
Save to C:\Plugins\DraftingTools.cuix
→ See README.md for full usage and examples.
→ Source: ADN-DevTech/acad-cuix-builder
See CONTRIBUTING.md.
See LICENSE for details.