dew 0.7.35 → 0.7.37
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 +31 -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
|
```
|
|
@@ -134,6 +149,22 @@ dew dew (deploy receiver)
|
|
|
134
149
|
| python | Python projects |
|
|
135
150
|
| standard | Containers, services |
|
|
136
151
|
|
|
152
|
+
### Running x86_64 (amd64) containers on Apple Silicon
|
|
153
|
+
|
|
154
|
+
Add `--rosetta` to mount Apple's Rosetta translator into the guest and register
|
|
155
|
+
`binfmt_misc`, so amd64 binaries and containers run transparently under
|
|
156
|
+
translation:
|
|
157
|
+
|
|
158
|
+
```bash
|
|
159
|
+
dew run --profile standard --network --rosetta -- \
|
|
160
|
+
nerdctl run --rm --platform linux/amd64 alpine uname -m # -> x86_64
|
|
161
|
+
```
|
|
162
|
+
|
|
163
|
+
Apple Silicon only (Intel Macs have no Rosetta-for-Linux). Performance depends
|
|
164
|
+
on the workload's hot path: roughly 70-80% of native for ordinary compiled
|
|
165
|
+
code, less for interpreter-heavy or crypto/SIMD-heavy code. For peak
|
|
166
|
+
performance prefer a native `linux/arm64` image.
|
|
167
|
+
|
|
137
168
|
## Security
|
|
138
169
|
|
|
139
170
|
- Hardware-VM isolation. Network off until you flip `--network`. Input validated against path traversal, control characters, and injection.
|