cyclecad 0.2.3 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/app/index.html +213 -8
- package/app/js/agent-api.js +1 -1
- package/app/js/cad-vr.js +917 -0
- package/app/js/cam-operations.js +638 -0
- package/app/js/gcode-generator.js +485 -0
- package/app/js/gdt-training.js +1144 -0
- package/app/js/machine-profiles.js +534 -0
- package/app/js/marketplace-v2.js +766 -0
- package/app/js/misumi-catalog.js +904 -0
- package/app/js/section-view.js +666 -0
- package/app/js/sketch-enhance.js +779 -0
- package/app/js/stock-manager.js +482 -0
- package/app/js/text-to-cad.js +806 -0
- package/app/js/token-dashboard.js +1 -1
- package/app/js/tool-library.js +593 -0
- package/app/tutorials/advanced.html +1924 -0
- package/app/tutorials/basic.html +1160 -0
- package/app/tutorials/intermediate.html +1456 -0
- package/cycleCAD-Architecture.pptx +0 -0
- package/cycleCAD-Investor-Deck.pptx +0 -0
- package/linkedin-post-combined.md +31 -0
- package/package.json +1 -1
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# The Open-Source CAD Ecosystem Is Here
|
|
2
|
+
|
|
3
|
+
We just hit a milestone: **1,625 weekly npm downloads** and **1,049 git clones** across ExplodeView + cycleCAD.
|
|
4
|
+
|
|
5
|
+
Built for the cycleWASH bike washing machine (399 parts, 6 sub-assemblies) but designed for the world. Here's what we shipped:
|
|
6
|
+
|
|
7
|
+
**ExplodeView** — Browser-based 3D viewer for STEP, STL, OBJ, GLTF, and more. 63 documented features: exploded views, AI-powered part identification, animations, section cuts, annotations, BOM export, DIN/ISO specs, McMaster-Carr links, QR codes, AR mode, interactive manuals. **20,900+ lines of code.**
|
|
8
|
+
|
|
9
|
+
**cycleCAD** — Open-source parametric 3D modeler. Runs on desktop + mobile. Agent-first architecture: design with text or voice ("build a cylinder 50mm, add a hole, fillet the edges"). Native Inventor file parsing. **18,800+ lines of code.**
|
|
10
|
+
|
|
11
|
+
**What makes this different:**
|
|
12
|
+
✨ Both run in any browser — zero install
|
|
13
|
+
✨ **Agent API** — 55 commands for AI agents to design autonomously
|
|
14
|
+
✨ **MCP Server + CLI tool** — integrate into your AI workflow
|
|
15
|
+
✨ **Marketplace** — publish & monetize custom models
|
|
16
|
+
✨ **Token engine** — model-to-CAM economy (inspired by Claude's token model)
|
|
17
|
+
✨ **Docker pipeline** — STEP conversion at scale
|
|
18
|
+
✨ **BSL 1.1 licensed** — free for personal/educational, protected SaaS model
|
|
19
|
+
|
|
20
|
+
Free tier. Pro €49/mo. Enterprise €299/mo.
|
|
21
|
+
|
|
22
|
+
We're building the OS of manufacturing — where agents design, humans review, machines build.
|
|
23
|
+
|
|
24
|
+
**Try it:**
|
|
25
|
+
- https://cyclecad.com
|
|
26
|
+
- npm install cyclecad explodeview
|
|
27
|
+
- GitHub: vvlars-cmd/cycleCAD, vvlars-cmd/explodeview
|
|
28
|
+
|
|
29
|
+
This is just the beginning.
|
|
30
|
+
|
|
31
|
+
#OpenSource #CAD #AI #Manufacturing #Agents #Engineering #3D #Design #BuildingInPublic
|
package/package.json
CHANGED