fly-to-moon 0.1.18 → 0.1.20
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 +10 -10
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -166,16 +166,16 @@ npm link
|
|
|
166
166
|
|
|
167
167
|
### Flags
|
|
168
168
|
|
|
169
|
-
| Flag | Description
|
|
170
|
-
| ------------------------ |
|
|
171
|
-
| `--agent <agent>` | Agent to use (`claude`, `codex`, `rovodev`, or `opencode`)
|
|
172
|
-
| `--model <model>` | Model to use
|
|
173
|
-
| `--max-iterations <n>` | Abort after `n` total iterations
|
|
174
|
-
| `--max-tokens <n>` | Abort after `n` total input+output tokens
|
|
175
|
-
| `--detach` | Run in daemon mode (background execution with `--max-iterations`)
|
|
176
|
-
| `--prevent-sleep <mode>` | Prevent system sleep during the run (`on`/`off` or `true`/`false`)
|
|
177
|
-
| `--commit` | Commit both successful and failed iterations (default: only on success)
|
|
178
|
-
| `--version` | Show version
|
|
169
|
+
| Flag | Description | Default |
|
|
170
|
+
| ------------------------ | ------------------------------------------------------------------------------------ | ---------------------- |
|
|
171
|
+
| `--agent <agent>` | Agent to use (`claude`, `codex`, `rovodev`, or `opencode`) | config file (`claude`) |
|
|
172
|
+
| `--model <model>` | Model to use (format: `provider/model`, e.g., `minimax-cn-coding-plan/MiniMax-M2.7`) | agent default |
|
|
173
|
+
| `--max-iterations <n>` | Abort after `n` total iterations | unlimited |
|
|
174
|
+
| `--max-tokens <n>` | Abort after `n` total input+output tokens | unlimited |
|
|
175
|
+
| `--detach` | Run in daemon mode (background execution with `--max-iterations`) | `false` (foreground) |
|
|
176
|
+
| `--prevent-sleep <mode>` | Prevent system sleep during the run (`on`/`off` or `true`/`false`) | config file (`on`) |
|
|
177
|
+
| `--commit` | Commit both successful and failed iterations (default: only on success) | `false` |
|
|
178
|
+
| `--version` | Show version | |
|
|
179
179
|
|
|
180
180
|
## Configuration
|
|
181
181
|
|