cyclecad 0.2.1 → 0.2.2
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/CLAUDE.md +14 -4
- package/cycleCAD-Investor-Deck.pptx +0 -0
- package/index.html +56 -0
- package/package.json +1 -1
package/CLAUDE.md
CHANGED
|
@@ -57,12 +57,12 @@ SACHIN (vvlars@googlemail.com, GitHub: vvlars-cmd). Building cycleCAD — open-s
|
|
|
57
57
|
|
|
58
58
|
**What was built (this session):**
|
|
59
59
|
- `competitive-analysis.html` — Interactive competitive analysis with tabs for Competitors (9 companies), Feature Matrix (70+ features vs 7 tools), Differentiation, Killer App Roadmap (Phases A-G), AI Copilot architecture
|
|
60
|
-
- `cycleCAD-Investor-Deck.pptx` — 14-slide investor pitch deck: Title, Problem, Solution, Market ($25.3B TAM), Product, Competitive Landscape, Feature Comparison, Traction, Business Model (Free/Pro
|
|
60
|
+
- `cycleCAD-Investor-Deck.pptx` — 14-slide investor pitch deck: Title, Problem, Solution, Market ($25.3B TAM), Product, Competitive Landscape, Feature Comparison, Traction, Business Model (Free/Pro €49/mo/Enterprise), Technology & Moat, Roadmap, Team, The Ask ($1.5M Seed), Closing
|
|
61
61
|
|
|
62
62
|
**Strategic decisions made:**
|
|
63
63
|
- ExplodeView merges into cycleCAD as "Viewer Mode" (shared Three.js scene, unified toolbar)
|
|
64
64
|
- npm packages stay separate: `cyclecad` (platform) + `explodeview` (standalone widget)
|
|
65
|
-
- Open-core business model: Free (full modeling + AI), Pro
|
|
65
|
+
- Open-core business model: Free (full modeling + AI), Pro €49/mo (collab + STEP + cloud), Enterprise (self-hosted + SSO)
|
|
66
66
|
- AI Copilot = the MecAgent + Aurorin killer (text-to-CAD, NL editing, smart autocomplete — all free, in-browser)
|
|
67
67
|
- Build priority: STEP import (OpenCascade.js) → ExplodeView merge → AI Copilot → Collaboration → Pro launch
|
|
68
68
|
|
|
@@ -358,8 +358,8 @@ Located at `~/cyclecad/example/DUO Durchgehend Inventor/` (gitignored — too la
|
|
|
358
358
|
- [ ] Comments + task assignment
|
|
359
359
|
|
|
360
360
|
### Phase D: Pro Launch (Q1 2027)
|
|
361
|
-
- [ ] Pro tier:
|
|
362
|
-
- [ ] Enterprise tier:
|
|
361
|
+
- [ ] Pro tier: €49/mo (collab + STEP + cloud + priority AI)
|
|
362
|
+
- [ ] Enterprise tier: €299/mo (self-hosted + SSO + SLA)
|
|
363
363
|
- [ ] Plugin API (FeatureScript equivalent — JS custom features)
|
|
364
364
|
- [ ] Plugin marketplace
|
|
365
365
|
|
|
@@ -471,6 +471,16 @@ Created ExplodeView merge PoC:
|
|
|
471
471
|
- Root cause: WASM heap reallocation invalidates TypedArray views during copy loop
|
|
472
472
|
- v282 uses `.slice(0)` tight loop — NOT YET TESTED
|
|
473
473
|
|
|
474
|
+
## Session 2026-03-25 (Late) — Pricing + Cache Reset + NLP Fix
|
|
475
|
+
|
|
476
|
+
**Pricing updated:** €49/mo Pro, €299/mo Enterprise (matching Stripe products). Added proper pricing section to cyclecad.com landing page with 3 tiers (Free/Pro/Enterprise). Updated all CLAUDE.md references from $19/mo → €49/mo.
|
|
477
|
+
|
|
478
|
+
**Smart cache reset:** Browser detection (Chrome/Safari/Firefox/Edge) with thorough clearing: Service Workers, Cache API, all IndexedDB databases, OPFS, localStorage, sessionStorage. Safari gets cache-busting URL redirect.
|
|
479
|
+
|
|
480
|
+
**NLP parser:** Agent-demo.html now handles natural language like "draw circle with 50mm diameter" — intent detection with 30+ action categories, 12 shape types with aliases, typo tolerance (dieamieter, diamter, etc.).
|
|
481
|
+
|
|
482
|
+
**Version badge:** Larger and more readable (0.85rem, bold, border, text-shadow). Bumped to v0.2.0.
|
|
483
|
+
|
|
474
484
|
## Near-term Tasks
|
|
475
485
|
- [ ] Push ExplodeView v282 and test STEP import with large files
|
|
476
486
|
- [ ] Fix ExplodeView UI: home button, grid, sidebar scroll, top bar
|
|
Binary file
|
package/index.html
CHANGED
|
@@ -1003,6 +1003,62 @@
|
|
|
1003
1003
|
</div>
|
|
1004
1004
|
</section>
|
|
1005
1005
|
|
|
1006
|
+
<!-- ============================================================
|
|
1007
|
+
PRICING
|
|
1008
|
+
============================================================ -->
|
|
1009
|
+
<section class="pricing" id="pricing">
|
|
1010
|
+
<div class="container">
|
|
1011
|
+
<div class="section-label reveal">PRICING</div>
|
|
1012
|
+
<h2 class="reveal">Simple, transparent <span class="gradient-text">pricing.</span></h2>
|
|
1013
|
+
<p class="subtitle reveal">Start free. Upgrade when your team needs more power.</p>
|
|
1014
|
+
<div class="pricing-grid">
|
|
1015
|
+
<div class="pricing-card starter reveal">
|
|
1016
|
+
<div class="tier-name">Free</div>
|
|
1017
|
+
<div class="tier-price">€0</div>
|
|
1018
|
+
<div class="tier-period">Forever</div>
|
|
1019
|
+
<ul class="tier-features">
|
|
1020
|
+
<li>Full parametric modeling</li>
|
|
1021
|
+
<li>AI part identification</li>
|
|
1022
|
+
<li>ExplodeView 3D viewer</li>
|
|
1023
|
+
<li>STL / OBJ / glTF export</li>
|
|
1024
|
+
<li>Inventor file parsing</li>
|
|
1025
|
+
<li>Assembly analysis</li>
|
|
1026
|
+
<li>Community support</li>
|
|
1027
|
+
</ul>
|
|
1028
|
+
</div>
|
|
1029
|
+
<div class="pricing-card pro reveal">
|
|
1030
|
+
<div class="tier-name" style="color:var(--accent-blue);">ExplodeView Pro</div>
|
|
1031
|
+
<div class="tier-price" style="color:var(--accent-blue);">€49</div>
|
|
1032
|
+
<div class="tier-period">per month</div>
|
|
1033
|
+
<ul class="tier-features">
|
|
1034
|
+
<li>Everything in Free</li>
|
|
1035
|
+
<li>STEP import / export</li>
|
|
1036
|
+
<li>Real-time collaboration</li>
|
|
1037
|
+
<li>Cloud storage</li>
|
|
1038
|
+
<li>Priority AI processing</li>
|
|
1039
|
+
<li>Smart BOM with pricing</li>
|
|
1040
|
+
<li>Email support</li>
|
|
1041
|
+
</ul>
|
|
1042
|
+
<div class="launch-badge">Most Popular</div>
|
|
1043
|
+
</div>
|
|
1044
|
+
<div class="pricing-card enterprise reveal">
|
|
1045
|
+
<div class="tier-name" style="color:var(--accent-gold);">ExplodeView Enterprise</div>
|
|
1046
|
+
<div class="tier-price" style="color:var(--accent-gold);">€299</div>
|
|
1047
|
+
<div class="tier-period">per month</div>
|
|
1048
|
+
<ul class="tier-features">
|
|
1049
|
+
<li>Everything in Pro</li>
|
|
1050
|
+
<li>Self-hosted deployment</li>
|
|
1051
|
+
<li>SSO / SAML authentication</li>
|
|
1052
|
+
<li>SLA guarantee</li>
|
|
1053
|
+
<li>Plugin API access</li>
|
|
1054
|
+
<li>Dedicated support</li>
|
|
1055
|
+
<li>Custom integrations</li>
|
|
1056
|
+
</ul>
|
|
1057
|
+
</div>
|
|
1058
|
+
</div>
|
|
1059
|
+
</div>
|
|
1060
|
+
</section>
|
|
1061
|
+
|
|
1006
1062
|
<!-- ============================================================
|
|
1007
1063
|
TOKEN ECONOMY
|
|
1008
1064
|
============================================================ -->
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cyclecad",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
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": {
|