@xcanwin/manyoyo 3.7.0 → 3.7.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 +21 -4
- package/bin/manyoyo.js +1 -1
- package/docs/README_EN.md +21 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -199,16 +199,13 @@ manyoyo --ef claude -x claude
|
|
|
199
199
|
|
|
200
200
|
合并型参数包括:`envFile`, `env`, `volumes`, `imageBuildArgs`
|
|
201
201
|
|
|
202
|
-
####
|
|
202
|
+
#### 常用样例-Claude Code
|
|
203
203
|
|
|
204
204
|
```bash
|
|
205
|
-
# 创建运行配置目录
|
|
206
205
|
mkdir -p ~/.manyoyo/run/
|
|
207
206
|
|
|
208
|
-
# 创建 Claude 运行配置
|
|
209
207
|
cat > ~/.manyoyo/run/c.json << 'EOF'
|
|
210
208
|
{
|
|
211
|
-
// Claude Code 快捷配置
|
|
212
209
|
"imageName": "localhost/xcanwin/manyoyo",
|
|
213
210
|
"imageVersion": "1.6.3-full",
|
|
214
211
|
"envFile": [
|
|
@@ -222,6 +219,26 @@ EOF
|
|
|
222
219
|
manyoyo -r c
|
|
223
220
|
```
|
|
224
221
|
|
|
222
|
+
#### 常用样例-Codex
|
|
223
|
+
|
|
224
|
+
```bash
|
|
225
|
+
mkdir -p ~/.manyoyo/run/
|
|
226
|
+
|
|
227
|
+
cat > ~/.manyoyo/run/codex.json << 'EOF'
|
|
228
|
+
{
|
|
229
|
+
"imageName": "localhost/xcanwin/manyoyo",
|
|
230
|
+
"imageVersion": "1.6.3-full",
|
|
231
|
+
"volumes": [
|
|
232
|
+
"/Users/mac_user/.codex/auth.json:/root/.codex/auth.json"
|
|
233
|
+
],
|
|
234
|
+
"yolo": "cx"
|
|
235
|
+
}
|
|
236
|
+
EOF
|
|
237
|
+
|
|
238
|
+
# 在任意目录下使用运行配置
|
|
239
|
+
manyoyo -r codex
|
|
240
|
+
```
|
|
241
|
+
|
|
225
242
|
### AI CLI 快捷方式(跳过权限确认)
|
|
226
243
|
|
|
227
244
|
```bash
|
package/bin/manyoyo.js
CHANGED
package/docs/README_EN.md
CHANGED
|
@@ -199,16 +199,13 @@ Override parameters include: `containerName`, `hostPath`, `containerPath`, `imag
|
|
|
199
199
|
|
|
200
200
|
Merge parameters include: `envFile`, `env`, `volumes`, `imageBuildArgs`
|
|
201
201
|
|
|
202
|
-
#### Common Examples
|
|
202
|
+
#### Common Examples-Claude Code
|
|
203
203
|
|
|
204
204
|
```bash
|
|
205
|
-
# Create run configuration directory
|
|
206
205
|
mkdir -p ~/.manyoyo/run/
|
|
207
206
|
|
|
208
|
-
# Create Claude run configuration
|
|
209
207
|
cat > ~/.manyoyo/run/c.json << 'EOF'
|
|
210
208
|
{
|
|
211
|
-
// Claude Code quick configuration
|
|
212
209
|
"imageName": "localhost/xcanwin/manyoyo",
|
|
213
210
|
"imageVersion": "1.6.3-full",
|
|
214
211
|
"envFile": [
|
|
@@ -222,6 +219,26 @@ EOF
|
|
|
222
219
|
manyoyo -r c
|
|
223
220
|
```
|
|
224
221
|
|
|
222
|
+
#### Common Examples-Codex
|
|
223
|
+
|
|
224
|
+
```bash
|
|
225
|
+
mkdir -p ~/.manyoyo/run/
|
|
226
|
+
|
|
227
|
+
cat > ~/.manyoyo/run/codex.json << 'EOF'
|
|
228
|
+
{
|
|
229
|
+
"imageName": "localhost/xcanwin/manyoyo",
|
|
230
|
+
"imageVersion": "1.6.3-full",
|
|
231
|
+
"volumes": [
|
|
232
|
+
"/Users/mac_user/.codex/auth.json:/root/.codex/auth.json"
|
|
233
|
+
],
|
|
234
|
+
"yolo": "cx"
|
|
235
|
+
}
|
|
236
|
+
EOF
|
|
237
|
+
|
|
238
|
+
# Use run configuration from any directory
|
|
239
|
+
manyoyo -r codex
|
|
240
|
+
```
|
|
241
|
+
|
|
225
242
|
### AI CLI Shortcuts (skip permissions)
|
|
226
243
|
|
|
227
244
|
```bash
|