cyclecad 0.1.0 → 0.1.1
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/README.md +58 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# cycleCAD
|
|
2
|
+
|
|
3
|
+
**Browser-based parametric 3D CAD modeler with AI-powered tools, native Inventor file parsing, and smart assembly management.**
|
|
4
|
+
|
|
5
|
+
No install required — runs entirely in your browser.
|
|
6
|
+
|
|
7
|
+
[](https://www.npmjs.com/package/cyclecad)
|
|
8
|
+
[](https://opensource.org/licenses/MIT)
|
|
9
|
+
|
|
10
|
+

|
|
11
|
+
|
|
12
|
+
## Features
|
|
13
|
+
|
|
14
|
+
- **Full parametric modeling** — Sketch, extrude, revolve, fillet, chamfer, boolean operations with constraint-driven design
|
|
15
|
+
- **Native Inventor parsing** — Open Autodesk Inventor `.ipt` and `.iam` files directly in the browser
|
|
16
|
+
- **AI-powered tools** — Part identification, smart natural language search, automated assembly instructions, integrated AI chatbot
|
|
17
|
+
- **Maintenance intelligence** — Heatmaps, wear timelines, service mode, smart BOM generation with estimated pricing
|
|
18
|
+
- **40+ built-in tools** — Measurement, section cuts, annotations, hero shots, QR codes, 3D print slicer, and more
|
|
19
|
+
- **Export everything** — STL, OBJ, GLTF, PLY per part. CSV/HTML reports. Technical report generation
|
|
20
|
+
- **6 languages** — English, German, French, Spanish, Italian, Dutch
|
|
21
|
+
- **McMaster-Carr integration** — Direct part sourcing links for identified components
|
|
22
|
+
- **Zero dependencies** — Three.js r170 via CDN, no build step required
|
|
23
|
+
|
|
24
|
+
## Quick Start
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
npx cyclecad
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
Or install globally:
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
npm i -g cyclecad
|
|
34
|
+
cyclecad
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
Or just open [cyclecad.com/app/](https://cyclecad.com/app/) in your browser.
|
|
38
|
+
|
|
39
|
+
## Built For
|
|
40
|
+
|
|
41
|
+
cycleCAD was built to manage the **cycleWASH DUO** — a fully automatic bicycle washing system with 473 parts across 6 assemblies. It handles real production-scale assemblies out of the box.
|
|
42
|
+
|
|
43
|
+
## Tech Stack
|
|
44
|
+
|
|
45
|
+
- **Three.js r170** — WebGL-powered 3D viewport
|
|
46
|
+
- **ES Modules** — Modern JavaScript, no bundler needed
|
|
47
|
+
- **Gemini Flash + Groq** — AI part identification and chatbot
|
|
48
|
+
- **Browser-native** — Works on any modern browser, any OS
|
|
49
|
+
|
|
50
|
+
## Links
|
|
51
|
+
|
|
52
|
+
- **Website:** [cyclecad.com](https://cyclecad.com)
|
|
53
|
+
- **App:** [cyclecad.com/app/](https://cyclecad.com/app/)
|
|
54
|
+
- **GitHub:** [github.com/vvlars-cmd/cyclecad](https://github.com/vvlars-cmd/cyclecad)
|
|
55
|
+
|
|
56
|
+
## License
|
|
57
|
+
|
|
58
|
+
MIT © [vvlars](https://github.com/vvlars-cmd)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cyclecad",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
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": {
|