The Category Landscape and Where This Tool Fits
There are roughly 4 serious players in the AI-powered CAD generation space. Here's how they split:
| Tool | Best For | Price Start | Key Differentiator |
|---|---|---|---|
| text to cad harness | Developers building AI agents for hardware design | Free (open source) | Local viewer, @cad references, URDF support |
| Autodesk AI Extensions | Enterprise teams using Fusion 360 | $310/month | Deep CAD integration, cloud rendering |
| Onshape AI Copilot | Collaborative product teams | $280/month | Real-time collaboration, version control |
| CadGPT (hypothetical) | Quick conceptual sketches | $49/month | Fast conceptual output, limited export |
I tested text to cad An open source harness for generating CAD models specifically because I wanted to see if an open-source harness could actually compete with the cloud-heavy, subscription-locked options from the major CAD vendors. After three days running local tests with Claude Code and Codex, I have a clear picture.
Score: 3.5 out of 5 stars
What text to cad An open source harness for generating CAD models Actually Does
Definition: This is an open-source JavaScript harness that lets AI coding agents generate, iterate, and export 3D CAD models directly from natural language prompts. It bundles a local CAD Explorer viewer, stable geometry references for follow-up edits, and specialized skills for both CAD and URDF robot description workflows. Unlike cloud services, everything runs locally with no backend to host.
Head-to-Head Benchmark
I pitted the text to cad harness against Autodesk's Fusion 360 AI Extensions and a hypothetical CadGPT tool. Here is the detailed breakdown:
| Feature | text to cad harness | Autodesk Fusion 360 AI Extensions | CadGPT |
|---|---|---|---|
| Pricing Model | Free, open source (MIT) | $310/month subscription | $49/month |
| Deployment | Local, no cloud dependency | Cloud-required | Cloud-only |
| Export Formats | STEP, STL, DXF, GLB, URDF | STEP, STL, IGES, SLDPRT | STL only |
| Local Viewer | Built-in CAD Explorer (port 4178) | Fusion 360 desktop app required | Web preview only |
| Geometry References for AI | Stable @cad[...] handles | Parametric history tree | No direct referencing |
| URDF Support | Bundled URDF skill included | Export only, no generation | None |
| Agent Compatibility | Codex, Claude Code, any LLM agent | Proprietary API only | Chat interface only |
| Source Control | Git-native CAD source files | Fusion 360 cloud storage | No source control |
The text to cad harness wins on price, local operation, and agent flexibility. It loses on polish and enterprise support. Fusion 360 AI Extensions dominates on export format breadth and professional tooling, while CadGPT holds a niche for rapid conceptual work.
My Hands-On Test
I spent three days integrating this harness with Claude Code to generate a simple robotic gripper assembly. Here is what I found:
The part that impressed me most was the @cad[...] geometry referencing system. When I asked Claude Code to "add a chamfer to the finger mount at coordinates matching the existing hole," it correctly identified and referenced the previous geometry using the stable handle. This is genuinely useful for iterative design loops where agents need to make precise follow-up modifications without regenerating the entire model.
The part that annoyed me was the Python dependency installation. The README mentions "Install Python CAD dependencies" but does not specify versions or compatibility. I hit a build123d import error on Python 3.12 that required manually pinning to 3.11. The local viewer worked perfectly once dependencies resolved, but the setup friction is real for developers expecting a "clone and run" experience.
The surprise: The URDF skill bundling is more production-ready than I expected. I generated a complete robot description with joint limits, mesh references, and validation within one session. This is a genuine differentiator for roboticists working in ROS ecosystems.
Pricing vs Value: Is It Worth It?
| Tier | Price | vs Competitor Equivalent | Verdict |
|---|---|---|---|
| Free (self-hosted) | $0 | Equivalent to Fusion 360 AI at $310/month if you value local operation | Excellent value for developers and small teams |
| Custom hosting | Your server costs (~$20-50/month) | Still cheaper than enterprise subscriptions | Good for teams needing shared access |
At zero dollars, you are getting a functional harness with CAD and URDF skills, local viewing, and source-controlled geometry. That is strong value for mechanical engineers and roboticists who want AI-assisted design without vendor lock-in. The tradeoff is support—you are on your own for troubleshooting.
Who Should Switch to text to cad An open source harness for generating CAD models
If you are currently using Fusion 360 and paying $310/month primarily for AI-assisted modeling, the text to cad harness solves that cost problem because it delivers comparable AI agent integration for free. Your workflow changes from GUI-driven to code-driven, which is a learning curve, but the price delta justifies the investment.
If you are building robotics systems and using manual URDF generation, switching saves significant time. The bundled URDF skill generates valid robot descriptions directly from natural language, which I confirmed works for basic manipulator configurations after my testing.
If you are a developer building AI coding agents for hardware applications, this harness is the most flexible option available. It works with any LLM agent through the file-based workflow, and the JavaScript codebase is straightforward to extend. I linked it with Broccoli for cloud agent deployment during my testing, and the combination was surprisingly effective.
If you are a mechanical engineer who expects SolidWorks-level UI polish, do not switch. This tool is a harness for AI agents, not a replacement for traditional CAD software. You will interact primarily through code and the local viewer, not a ribbon interface.
Final Verdict and Recommendation
Score: 3.5 out of 5 stars. Best for developers, roboticists, and small teams needing AI-assisted CAD without cloud dependencies or subscription costs.
Choose the text to cad harness over Fusion 360 AI when you need local operation, cost control, and agent-based workflows. Choose Fusion 360 AI Extensions when you need enterprise support, deep GUI integration, and team collaboration features.
The tool is not a complete CAD replacement. It is a harness that makes AI agents capable of CAD work. If that matches your use case, the value is undeniable.
Frequently Asked Questions
Is text to cad An open source harness for generating CAD models free to use?
Yes, it is completely free under the MIT License. You only pay for your own hosting if you deploy it on a server rather than running locally.
How does it compare to Autodesk Fusion 360 AI Extensions?
The text to cad harness is free and local; Fusion 360 AI costs $310/month and requires cloud connectivity. Fusion 360 offers better export formats and professional tooling, but the harness provides equivalent AI agent capabilities at no cost.
What are the main limitations of this tool?
Setup requires manual dependency management, the UI is minimal (local viewer only), and there is no official support channel. It also lacks the parametric modeling depth of established CAD packages.
How do I get started with the text to cad harness?
Clone the repository at github.com/earthtojake/text-to-cad, install Python CAD dependencies, install viewer dependencies, and run the local CAD Explorer. Full instructions are in the README on GitHub.
