svd-ai-lab

Sim Plugin Autodeskfusion — AI skill for Claude Code

AI community

Use AI coding agents with Autodesk Fusion 360 via sim-cli: live-session bridge, model inspection, scripted operations, replayable artifacts.

How to install Sim Plugin Autodeskfusion

This entry records only its repository, not the path inside it, so there is no exact command to give. Open svd-ai-lab/sim-plugin-autodeskfusion and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Sim Plugin Autodeskfusion does

Use AI coding agents with Autodesk Fusion 360 via sim-cli: live-session bridge, model inspection, scripted operations, replayable artifacts.

Alternatives in AI

  • Botmux — Bridge Feishu/Lark to AI coding CLIs — Claude Code, Codex, Gemini, OpenCode… every DM, group or topic spawns i 1.2k ★
  • CLI WeChat Bridge — 将 AI 命令行工具以最为原生的方式,集成到微信 ClawBot / 企业微信 bot 中,目前支持集成 Codex、Claude Code、OpenCode、Pi Agent 478 ★
  • Tokentab — A CLI that reads Claude Code, Codex, and Gemini CLI session logs and works out how much they cost, by model, p 226 ★

README

sim-plugin-autodeskfusion

Autodesk Fusion driver plugin for `sim`, focused on thin official-MCP access to a visible Fusion desktop session. Fusion's Python API is available inside the Fusion process, so this plugin discovers Autodesk's local MCP server, lists its tools, and calls the execute-capable tool instead of installing a custom add-in bridge.

Autodesk Fusion is commercial vendor software. This plugin does not bundle Fusion binaries, Autodesk API stubs, installers, sample projects, licenses, or activation material; users must install and license Fusion separately. See [LICENSE-NOTICE.md](LICENSE-NOTICE.md).

Install

For agent projects, install sim-cli-core and the Autodesk Fusion plugin in the project environment:

uv init  # only if this is not already a uv project
uv add sim-cli-core "sim-plugin-autodeskfusion @ git+https://github.com/svd-ai-lab/sim-plugin-autodeskfusion@main"
uv run sim plugin sync-skills --target .agents/skills --copy
uv run sim check autodeskfusion
uv run sim plugin doctor autodeskfusion --deep

For Claude Code, sync the bundled skill to `.claude/skills` instead:

uv run sim plugin sync-skills --target .claude/skills --copy

Without uv, create and activate a venv, then install `sim-cli-core` plus this plugin with `python -m pip`:

python -m pip install sim-cli-core "sim-plugin-autodeskfusion @ git+https://github.com/svd-ai-lab/sim-plugin-autodeskfusion@main"

Scope

  • Detect local Fusion installs without launching Fusion.
  • Probe Autodesk Fusion's official local MCP endpoint.
  • Use MCP initialize, tools/list, and tools/call through the official MCP Python SDK.
  • Execute Python scripts/snippets through the discovered execute-capable MCP tool.
  • Keep sim optional: direct MCP calls are often the better exploration primitive, while sim connect/exec/inspect adds session bookkeeping and standard logs when useful.

The driver does not provide a headless Fusion sol