forgecad 0.1.4 → 0.1.5

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 CHANGED
@@ -87,6 +87,16 @@ forgecad skill install
87
87
 
88
88
  This copies a pre-built `SKILL.md` to `~/.agents/skills/forgecad/SKILL.md`. Reload your agent to activate. Run again after upgrading ForgeCAD to pick up updated docs.
89
89
 
90
+ ### Chat UI (Claude.ai, ChatGPT, Gemini, …)
91
+
92
+ No CLI agent? Generate a single self-contained context file with all ForgeCAD API docs and paste it into any chat session:
93
+
94
+ ```bash
95
+ forgecad skill one-file ~/Desktop/forgecad-context.md
96
+ ```
97
+
98
+ The file includes a preamble explaining the chat-UI setup: the AI has no shell access, so it will ask you to run commands like `forgecad run <file>` and paste back the output for validation and iteration.
99
+
90
100
  ### Instructions for AI model generation
91
101
 
92
102
  When an AI model is asked to generate ForgeCAD models, require this workflow:
@@ -248,6 +258,7 @@ All CLI tools use the same runtime as the browser (`src/forge/headless.ts`), so
248
258
  | Generate report PDF | `forgecad export report examples/cup.forge.js` |
249
259
  | Parameter robustness scan | `forgecad check params examples/shoe-rack-doors.forge.js --samples 10` |
250
260
  | Install agent skill (Claude Code, Codex, OpenCode…) | `forgecad skill install` |
261
+ | Export all docs as a single file for chat-UI paste | `forgecad skill one-file ~/Desktop/forgecad-context.md` |
251
262
  | Prune merged local-only branches | `uv run cli/forge-prune-local-branches.py` |
252
263
  | Transform invariants | `forgecad check transforms` |
253
264
  | Dimension propagation invariants | `forgecad check dimensions` |