@pruddiman/dispatch 1.4.3 → 1.5.0-beta.b8296d7

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 CHANGED
@@ -144,7 +144,7 @@ On first use (or when a cached token is missing/expired), Dispatch will:
144
144
  2. You sign in and authorize Dispatch in the browser.
145
145
  3. The token is cached locally at **`~/.dispatch/auth.json`** for future runs.
146
146
 
147
- Authentication is triggered automatically when you run `dispatch` with `--source github` or `--source azdevops`. No separate login step is needed.
147
+ Authentication happens **early in the CLI lifecycle** — during `dispatch config` (right after datasource selection) or at startup for `dispatch` and `dispatch --spec` runs — before any pipeline work begins. If tokens are already cached the check is instant; otherwise the device-code prompt appears while the terminal is still free, so it is never buried under pipeline output. No separate login step is needed.
148
148
 
149
149
  **Re-authenticating:** Delete `~/.dispatch/auth.json` (or just the relevant platform key inside it) and run `dispatch` again to re-trigger the device flow.
150
150
 
@@ -206,7 +206,7 @@ Config is stored at `.dispatch/config.json` (relative to the working directory w
206
206
  | `model` | Model to use when spawning agents (provider-specific format) |
207
207
  | `source` | Issue tracker: `github`, `azdevops`, or `md` |
208
208
  | `testTimeout` | Test execution timeout in minutes (default: 5, range: 1–120) |
209
- | `planTimeout` | Planning timeout in minutes (default: 10, range: 1–120) |
209
+ | `planTimeout` | Planning timeout in minutes (default: 30, range: 1–120) |
210
210
  | `concurrency` | Max parallel dispatches (range: 1–64) |
211
211
  | `org` | Azure DevOps organization URL |
212
212
  | `project` | Azure DevOps project name |
@@ -230,14 +230,16 @@ Config is stored at `.dispatch/config.json` (relative to the working directory w
230
230
  | `--feature [name]` | *(off)* | Group issues into a single feature branch and PR |
231
231
  | `--force` | `false` | Ignore prior run state and re-run all tasks |
232
232
  | `--concurrency <n>` | *(cpu/memory)* | Max parallel dispatches (max: 64) |
233
- | `--plan-timeout <min>` | `10` | Planning timeout in minutes |
234
- | `--retries <n>` | `2` | Retry attempts for all agents |
233
+ | `--plan-timeout <min>` | `30` | Planning timeout in minutes |
234
+ | `--retries <n>` | `3` | Retry attempts for all agents |
235
235
  | `--plan-retries <n>` | *(from --retries)* | Retry attempts for the planner agent (overrides `--retries`) |
236
236
  | `--test-timeout <min>` | `5` | Test timeout in minutes |
237
237
  | `--server-url <url>` | *(none)* | Connect to a running provider server |
238
238
  | `--cwd <dir>` | `process.cwd()` | Working directory |
239
239
  | `--verbose` | `false` | Show detailed debug output |
240
240
 
241
+ In interactive dispatch runs, exhausted automatic retries pause the failed task in the dispatch UI so you can manually rerun it in place. A rerun re-enters the normal task lifecycle, including planning unless `--no-plan` is set; verbose or non-interactive runs will not wait for input and instead stop predictably with the task left failed.
242
+
241
243
  ### Spec mode
242
244
 
243
245
  | Option | Description |