cyclecad 0.1.9 → 0.2.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/AGENT_API_IMPLEMENTATION_SUMMARY.md +399 -0
- package/AGENT_API_MANIFEST.md +343 -0
- package/AGENT_API_QUICKSTART.md +316 -0
- package/AGENT_API_WIRING.md +495 -0
- package/CLAUDE.md +120 -8
- package/DELIVERABLES.txt +471 -0
- package/app/agent-demo.html +1990 -1294
- package/app/agent-test.html +486 -0
- package/app/index.html +236 -5
- package/app/js/agent-api.js +953 -98
- package/app/js/viewer-mode.js +899 -0
- package/architecture.html +372 -0
- package/docs/EXPLODEVIEW-FEATURE-MAPPING.md +602 -0
- package/docs/README-VIEWER-MODE-MERGE.md +364 -0
- package/docs/VIEWER-MODE-IMPLEMENTATION-GUIDE.md +412 -0
- package/docs/explodeview-merge-plan.md +476 -0
- package/docs/opencascade-integration.md +1102 -0
- package/linkedin-post.md +24 -0
- package/package.json +1 -1
package/linkedin-post.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# cycleCAD Launch Post
|
|
2
|
+
|
|
3
|
+
We just shipped cycleCAD — an open-source, browser-based 3D CAD modeler that runs on your phone.
|
|
4
|
+
|
|
5
|
+
The origin story: I was building the cycleWASH DUO (a robotic bike washing machine) and needed CAD software. Every option cost $500-$4000/year, required Windows/Mac + installation, and wouldn't let me design parts faster. 19 modules later, we have something better.
|
|
6
|
+
|
|
7
|
+
**The revolutionary part?** cycleCAD is agent-first. Forget clicking buttons. You describe what you need — "build a cylinder 50mm diameter, add a hole, fillet the edges" — and agents (or you) execute it via text or voice commands. No GUI needed. It's CAD designed for AI to design manufacturing.
|
|
8
|
+
|
|
9
|
+
What's inside:
|
|
10
|
+
✨ Browser-native (zero install)
|
|
11
|
+
✨ Free & open-source
|
|
12
|
+
✨ AI-powered design assistant (Gemini + Groq)
|
|
13
|
+
✨ Parses Inventor files natively
|
|
14
|
+
✨ Runs on desktop + mobile
|
|
15
|
+
✨ Agent API (55 commands for AI integration)
|
|
16
|
+
|
|
17
|
+
We're merging ExplodeView (our 3D viewer with 40+ analysis tools) into cycleCAD to create a complete design + analysis + collaboration platform.
|
|
18
|
+
|
|
19
|
+
**Try it now:** https://cyclecad.com or `npm install cyclecad`
|
|
20
|
+
**Star us on GitHub:** https://github.com/vvlars-cmd/cyclecad
|
|
21
|
+
|
|
22
|
+
This is just the beginning. We're building the OS of manufacturing — where agents design parts, humans review, and machines build them.
|
|
23
|
+
|
|
24
|
+
#OpenSource #CAD #Manufacturing #AI #Agents #3D #Design #FreeCAD #Engineering
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cyclecad",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Browser-based parametric 3D CAD modeler with AI-powered tools, native Inventor file parsing, and smart assembly management. No install required.",
|
|
5
5
|
"main": "index.html",
|
|
6
6
|
"scripts": {
|