dew 0.7.35 → 0.7.36
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 +15 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -110,6 +110,21 @@ dew run --json -- npm test
|
|
|
110
110
|
|
|
111
111
|
Input hardening: rejects path traversal, query injection, control characters. `--events` for NDJSON lifecycle streaming.
|
|
112
112
|
|
|
113
|
+
### AI agent skills
|
|
114
|
+
|
|
115
|
+
dew ships [agentskills.io](https://agentskills.io)-compatible skill files
|
|
116
|
+
that teach coding agents (Claude Code, Cursor, Codex, Copilot, Gemini CLI,
|
|
117
|
+
70+ others) how to use the CLI correctly — including when *not* to reach
|
|
118
|
+
for it.
|
|
119
|
+
|
|
120
|
+
```bash
|
|
121
|
+
npx skills add solcreek/dew
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
Installs four skills: `dew-server-create`, `dew-deploy`, `dew-diagnose`,
|
|
125
|
+
`dew-upgrade`. Source lives in [`skills/`](./skills/) and versions with
|
|
126
|
+
each release.
|
|
127
|
+
|
|
113
128
|
## Architecture
|
|
114
129
|
|
|
115
130
|
```
|