@mudlab/create-workflow 1.0.2 → 1.0.4

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,6 @@ 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
48
47
  └── .tmp/ # Temp files (gitignored)
49
48
  ```
50
49
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mudlab/create-workflow",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "Create Mudlab workflow projects with a single command",
5
5
  "bin": {
6
6
  "create-mudlab-workflow": "./bin/create.js"
@@ -15,7 +15,7 @@ MUDLAB_API_KEY=your_mudlab_api_key_here
15
15
  #
16
16
  # FOR PRODUCTION: Add these in Mudlab UI instead:
17
17
  # 1. Log into https://mudlab.io
18
- # 2. Click "Environment Variables" in the left sidebar (below API Keys)
18
+ # 2. Click "Env Variables" in the left sidebar (below API Keys)
19
19
  # 3. Add your variables there
20
20
  #
21
21
  # The variable NAMES you define here should match what you add in Mudlab.
@@ -27,7 +27,7 @@ Automated workflows powered by [Mudlab](https://mudlab.io).
27
27
  RESEND_API_KEY=your_resend_api_key
28
28
  ```
29
29
 
30
- ## Environment Variables
30
+ ## Env Variables
31
31
 
32
32
  Your workflows reference environment variable **names** (like `NOTION_API_KEY`). The actual values are stored in two places:
33
33
 
@@ -38,7 +38,7 @@ Your workflows reference environment variable **names** (like `NOTION_API_KEY`).
38
38
 
39
39
  **To add production keys in Mudlab:**
40
40
  1. Log into [Mudlab](https://mudlab.io)
41
- 2. Click **Environment Variables** in the left sidebar (below API Keys)
41
+ 2. Click **Env Variables** in the left sidebar (below API Keys)
42
42
  3. Add your variables (use the same names as in your workflow definitions)
43
43
 
44
44
  ## Creating Workflows
@@ -69,7 +69,6 @@ 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
73
72
  └── .tmp/ # Temp files (gitignored)
74
73
  ```
75
74
 
@@ -1,3 +0,0 @@
1
- # Assets
2
-
3
- Place static assets here (logos, templates, etc.)