@mudlab/create-workflow 1.0.3 → 1.0.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
@@ -44,7 +44,9 @@ my-automations/
44
44
  │ ├── tools/ # Node.js tool functions
45
45
  │ ├── tools_directives/ # AI usage instructions for tools
46
46
  │ └── workflows/ # Workflow package definitions (JSON)
47
- ├── assets/ # Static assets
47
+ ├── examples/
48
+ │ ├── images/ # Reference images (logos, screenshots)
49
+ │ └── files/ # Reference files (PDFs, HTML templates)
48
50
  └── .tmp/ # Temp files (gitignored)
49
51
  ```
50
52
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mudlab/create-workflow",
3
- "version": "1.0.3",
3
+ "version": "1.0.5",
4
4
  "description": "Create Mudlab workflow projects with a single command",
5
5
  "bin": {
6
6
  "create-mudlab-workflow": "./bin/create.js"
@@ -69,7 +69,9 @@ npm run push:all
69
69
  │ ├── tools/ # Node.js tool functions
70
70
  │ ├── tools_directives/ # AI usage instructions
71
71
  │ └── workflows/ # Workflow packages (JSON)
72
- ├── assets/ # Static assets
72
+ ├── examples/
73
+ │ ├── images/ # Reference images (logos, screenshots)
74
+ │ └── files/ # Reference files (PDFs, HTML templates)
73
75
  └── .tmp/ # Temp files (gitignored)
74
76
  ```
75
77
 
@@ -0,0 +1,4 @@
1
+ # Example Files
2
+
3
+ Store reference files here (PDFs, HTML templates, etc.)
4
+ These can be used by the AI or referenced in workflows.
@@ -0,0 +1,4 @@
1
+ # Example Images
2
+
3
+ Store reference images here (logos, screenshots, diagrams, etc.)
4
+ These can be used by the AI or referenced in workflows.
@@ -1,3 +0,0 @@
1
- # Assets
2
-
3
- Place static assets here (logos, templates, etc.)