dew 0.7.34 → 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.
Files changed (2) hide show
  1. package/README.md +27 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -80,6 +80,18 @@ dew deploy 5.161.53.168 # deploy with SSE progress
80
80
 
81
81
  The server runs `dew serve` (7.1MB Linux binary) — containerd for isolation, self-signed TLS, health checks.
82
82
 
83
+ `dew server create` auto-discovers an SSH public key from
84
+ `~/.ssh/id_ed25519.pub` (or `id_rsa.pub`) and locks root password
85
+ auth in the same boot. Override with `--ssh-key`, the `DEW_SSH_KEY`
86
+ env, or `--no-ssh-key` to keep the provider's emailed password.
87
+
88
+ > **DigitalOcean Web Console caveat:** if you ever need to paste a
89
+ > long command (an SSH key, a recovery script) into DO's browser
90
+ > console, note that it does **not** support bracketed paste — long
91
+ > lines wrap and corrupt mid-paste. Prefer `--ssh-key` at create
92
+ > time so SSH works from the first boot and the console isn't
93
+ > needed.
94
+
83
95
  ## Agent integration
84
96
 
85
97
  Every command supports `--json` for machine-readable output and `--dry-run` for validation without execution.
@@ -98,6 +110,21 @@ dew run --json -- npm test
98
110
 
99
111
  Input hardening: rejects path traversal, query injection, control characters. `--events` for NDJSON lifecycle streaming.
100
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
+
101
128
  ## Architecture
102
129
 
103
130
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dew",
3
- "version": "0.7.34",
3
+ "version": "0.7.36",
4
4
  "description": "Sandboxed Linux compute, agent-native and human-friendly.",
5
5
  "license": "MIT",
6
6
  "repository": {