windmill-cli 1.682.0 → 1.683.1
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 +22 -0
- package/esm/main.js +887 -162
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -110,6 +110,28 @@ source <(wmill completions zsh)
|
|
|
110
110
|
|
|
111
111
|
## Development
|
|
112
112
|
|
|
113
|
+
### AI Guidance Variants
|
|
114
|
+
|
|
115
|
+
`wmill init` can now materialize alternate AI guidance bundles without changing
|
|
116
|
+
the generated defaults in the repo, but this is exposed as internal env-var
|
|
117
|
+
overrides rather than public CLI flags.
|
|
118
|
+
|
|
119
|
+
Examples:
|
|
120
|
+
|
|
121
|
+
```bash
|
|
122
|
+
WMILL_INIT_AI_SKILLS_SOURCE=/path/to/custom/skills wmill init --use-default
|
|
123
|
+
WMILL_INIT_AI_SKILLS_SOURCE=/path/to/custom/skills WMILL_INIT_AI_AGENTS_SOURCE=/path/to/AGENTS.md wmill init --use-default
|
|
124
|
+
WMILL_INIT_AI_SKILLS_SOURCE=/path/to/custom/skills WMILL_INIT_AI_CLAUDE_SOURCE=/path/to/CLAUDE.md wmill init --use-default
|
|
125
|
+
```
|
|
126
|
+
|
|
127
|
+
This is the same guidance-writing path used by the benchmark CLI under
|
|
128
|
+
`ai_evals/`, so the benchmark harness and `wmill init` now generate the same
|
|
129
|
+
project guidance shape:
|
|
130
|
+
|
|
131
|
+
- `AGENTS.md`
|
|
132
|
+
- `CLAUDE.md`
|
|
133
|
+
- `.claude/skills/*`
|
|
134
|
+
|
|
113
135
|
### Testing with a local `windmill-yaml-validator`
|
|
114
136
|
|
|
115
137
|
To test local changes to the validator before publishing, use `npm link`:
|