forgecad 0.9.7 → 0.9.9

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.
Files changed (47) hide show
  1. package/README.md +1 -0
  2. package/dist/assets/{AdminPage-DX0mpSZT.js → AdminPage-CNEvQM7c.js} +1 -1
  3. package/dist/assets/{BlogPage-CI_P0_Pf.js → BlogPage-Cc41PP4d.js} +1 -1
  4. package/dist/assets/{DocsPage-DLhIIZyJ.js → DocsPage-9U1hGjrg.js} +2 -2
  5. package/dist/assets/{EditorApp-DfFT2Dn8.css → EditorApp-D11wL4Qn.css} +51 -0
  6. package/dist/assets/{EditorApp-BujZvuwX.js → EditorApp-DnddQvBt.js} +151 -9
  7. package/dist/assets/{EmbedViewer-0S0qXKog.js → EmbedViewer-B2lhWTcd.js} +2 -2
  8. package/dist/assets/{LandingPageProofDriven-O_yMtAri.js → LandingPageProofDriven-CFet-l3o.js} +1 -1
  9. package/dist/assets/{PricingPage-DGkX3Ahr.js → PricingPage-CPm8mQx3.js} +1 -1
  10. package/dist/assets/{SettingsPage-DBsqTB_y.js → SettingsPage-BarZonVZ.js} +1 -1
  11. package/dist/assets/__vite-browser-external-Dhvy_jtL.js +4 -0
  12. package/dist/assets/{app-BE2nD6Yz.js → app-BjSEB4sY.js} +1006 -526
  13. package/dist/assets/cli/{render-iP9qh475.js → render-CXVrHY8q.js} +647 -481
  14. package/dist/assets/constructionHistoryWorker-z9_LGiRd.js +42984 -0
  15. package/dist/assets/{evalWorker-Ds5U4xtN.js → evalWorker-CtO7GsJR.js} +42 -9
  16. package/dist/assets/{inspectWorker-Dll4eVyD.js → inspectWorker-BZ2CkQZr.js} +785 -111
  17. package/dist/assets/{manifold-DjYsd7A_.js → manifold-BRdhoQy5.js} +2 -2
  18. package/dist/assets/{manifold-sJ-axdXM.js → manifold-BVi4_OeB.js} +1 -1
  19. package/dist/assets/manifold-Cp_dCC7i.js +3018 -0
  20. package/dist/assets/{manifold-Bk26ViCr.js → manifold-DAzn2Fsa.js} +1 -1
  21. package/dist/assets/{renderSceneState-Bngp5MrQ.js → renderSceneState-CWO8rHlt.js} +1 -1
  22. package/dist/assets/{reportWorker-CU8RZ4O0.js → reportWorker-Bz9tGiHb.js} +42 -9
  23. package/dist/assets/{sectionPlaneMath-BdTjyVfs.js → scalar-sampling-budget-Bmewod18.js} +1339 -215
  24. package/dist/cli/render.html +1 -1
  25. package/dist/docs/index.html +1 -1
  26. package/dist/docs-raw/CLI.md +10 -10
  27. package/dist/docs-raw/coding-best-practices.md +1 -1
  28. package/dist/docs-raw/guides/inspection-bundles.md +77 -19
  29. package/dist/docs-raw/guides/skill-maintenance.md +1 -1
  30. package/dist/docs-raw/runbook.md +2 -2
  31. package/dist/docs-raw/skills/forgecad-make-a-model.md +11 -0
  32. package/dist/docs-raw/skills/forgecad-render-inspect.md +12 -6
  33. package/dist/docs-raw/skills/index.md +1 -1
  34. package/dist/index.html +1 -1
  35. package/dist/sitemap.xml +6 -6
  36. package/dist-cli/forgecad.js +596 -354
  37. package/dist-cli/forgecad.js.map +1 -1
  38. package/dist-skill/CONTEXT.md +77 -19
  39. package/dist-skill/docs/CLI.md +10 -10
  40. package/dist-skill/docs/guides/inspection-bundles.md +77 -19
  41. package/dist-skill/docs-dev/CLI.md +10 -10
  42. package/dist-skill/docs-dev/coding-best-practices.md +1 -1
  43. package/dist-skill/docs-dev/guides/inspection-bundles.md +77 -19
  44. package/dist-skill/docs-dev/guides/skill-maintenance.md +1 -1
  45. package/dist-skill/library/forgecad-make-a-model/SKILL.md +11 -0
  46. package/dist-skill/library/forgecad-render-inspect/SKILL.md +12 -6
  47. package/package.json +6 -3
package/README.md CHANGED
@@ -32,6 +32,7 @@ npm run dev:studio # hosted-mode Vite editor
32
32
  npm run build:cli # fast CLI rebuild after CLI/runtime changes
33
33
  npm run build # full solver, docs, browser, CLI, skill build
34
34
  npm test # smoke suite
35
+ npm run check:suite # full repo invariant suite
35
36
  npm run test:unit # Vitest unit tests
36
37
  npm run lint # Biome check
37
38
  ```
@@ -1,5 +1,5 @@
1
1
  import { r as reactExports, j as jsxRuntimeExports, L as Link } from "./vendor-react-Da3A2QmU.js";
2
- import { u as useAuthStore } from "./app-BE2nD6Yz.js";
2
+ import { u as useAuthStore } from "./app-BjSEB4sY.js";
3
3
  function formatUptime(seconds) {
4
4
  const d = Math.floor(seconds / 86400);
5
5
  const h = Math.floor(seconds % 86400 / 3600);
@@ -1,5 +1,5 @@
1
1
  import { u as useParams, j as jsxRuntimeExports, L as Link } from "./vendor-react-Da3A2QmU.js";
2
- import { B as BrandMark } from "./app-BE2nD6Yz.js";
2
+ import { B as BrandMark } from "./app-BjSEB4sY.js";
3
3
  const POSTS = [
4
4
  {
5
5
  slug: "hello-forgecad-io",
@@ -4,7 +4,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
4
4
  var _a;
5
5
  import { u as useParams, f as useNavigate, r as reactExports, j as jsxRuntimeExports, L as Link } from "./vendor-react-Da3A2QmU.js";
6
6
  import { H as HighlightJS, j as javascript$1 } from "./javascript-70-4uGcz.js";
7
- import { a as applyTheme } from "./app-BE2nD6Yz.js";
7
+ import { a as applyTheme } from "./app-BjSEB4sY.js";
8
8
  function M() {
9
9
  return { async: false, breaks: false, extensions: null, gfm: true, hooks: null, pedantic: false, renderer: null, silent: false, tokenizer: null, walkTokens: null };
10
10
  }
@@ -3765,7 +3765,7 @@ const SKILL_SECTIONS = [
3765
3765
  {
3766
3766
  "slug": "skills/forgecad-render-inspect",
3767
3767
  "title": "forgecad-render-inspect",
3768
- "description": "Run and interpret ForgeCAD `render inspect` bundles for model verification. Use when asked to inspect a ForgeCAD model, analyze an inspection bundle, validate collisions, wall thickness, connectivity, sections, masks, depth, normals, or choose inspection channels."
3768
+ "description": "Run and interpret ForgeCAD `render inspect` bundles for model verification. Use when asked to inspect a ForgeCAD model, analyze an inspection bundle, validate collisions, wall thickness, connectivity, floating bodies, sections, masks, depth, normals, Zebra stripes, or choose inspection channels."
3769
3769
  },
3770
3770
  {
3771
3771
  "slug": "skills/forgecad-visual-spec",
@@ -279,6 +279,57 @@
279
279
  min-width: 0;
280
280
  }
281
281
 
282
+ .fc-view-panel-color-grid {
283
+ display: grid;
284
+ grid-template-columns: repeat(2, minmax(0, 1fr));
285
+ gap: 6px;
286
+ min-width: 0;
287
+ }
288
+
289
+ .fc-view-panel-color-row {
290
+ display: flex;
291
+ align-items: center;
292
+ gap: 7px;
293
+ min-width: 0;
294
+ padding: 5px 6px;
295
+ border: 1px solid var(--fc-borderLight);
296
+ border-radius: 4px;
297
+ background: var(--fc-bgOverlay);
298
+ color: var(--fc-text);
299
+ font-size: 11px;
300
+ }
301
+
302
+ .fc-view-panel-color-row input {
303
+ flex: 0 0 24px;
304
+ width: 24px;
305
+ height: 24px;
306
+ padding: 0;
307
+ border: 0;
308
+ background: transparent;
309
+ }
310
+
311
+ .fc-view-panel-color-row span {
312
+ min-width: 0;
313
+ overflow: hidden;
314
+ text-overflow: ellipsis;
315
+ white-space: nowrap;
316
+ }
317
+
318
+ .fc-view-panel-slider-stack {
319
+ display: flex;
320
+ flex-direction: column;
321
+ gap: 8px;
322
+ min-width: 0;
323
+ }
324
+
325
+ .fc-view-panel-scene-slider {
326
+ display: grid;
327
+ grid-template-columns: 52px minmax(0, 1fr);
328
+ gap: 8px;
329
+ align-items: center;
330
+ min-width: 0;
331
+ }
332
+
282
333
  .fc-view-panel-replay-row {
283
334
  display: grid;
284
335
  grid-template-columns: repeat(2, minmax(0, 1fr));