@pruddiman/dispatch 1.5.0-beta.b8296d7 → 1.5.0-beta.d367268
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 +0 -12
- package/dist/cli.js +3833 -2493
- package/dist/cli.js.map +1 -1
- package/dist/mcp/dispatch-worker.js +11905 -0
- package/dist/mcp/dispatch-worker.js.map +1 -0
- package/package.json +12 -6
package/README.md
CHANGED
|
@@ -130,8 +130,6 @@ dispatch --respec
|
|
|
130
130
|
# Group issues into a single feature branch and PR
|
|
131
131
|
dispatch --feature my-feature
|
|
132
132
|
|
|
133
|
-
# Run tests and fix failures via AI
|
|
134
|
-
dispatch --fix-tests
|
|
135
133
|
```
|
|
136
134
|
|
|
137
135
|
## Authentication
|
|
@@ -155,7 +153,6 @@ Authentication happens **early in the CLI lifecycle** — during `dispatch confi
|
|
|
155
153
|
| **Dispatch** | *(default)* | Plan and execute tasks; manage full git lifecycle |
|
|
156
154
|
| **Spec generation** | `--spec` | Convert issues into structured markdown spec files |
|
|
157
155
|
| **Respec** | `--respec` | Regenerate existing specs (all, by ID, or by glob) |
|
|
158
|
-
| **Fix tests** | `--fix-tests` | Detect and auto-fix failing tests via AI |
|
|
159
156
|
| **Feature** | `--feature [name]` | Group issues into a single feature branch and PR |
|
|
160
157
|
|
|
161
158
|
## Task files
|
|
@@ -196,7 +193,6 @@ Config is stored at `.dispatch/config.json` (relative to the working directory w
|
|
|
196
193
|
"provider": "copilot",
|
|
197
194
|
"model": "claude-sonnet-4-5",
|
|
198
195
|
"source": "github",
|
|
199
|
-
"testTimeout": 60
|
|
200
196
|
}
|
|
201
197
|
```
|
|
202
198
|
|
|
@@ -205,7 +201,6 @@ Config is stored at `.dispatch/config.json` (relative to the working directory w
|
|
|
205
201
|
| `provider` | AI backend: `opencode` (default), `copilot`, `claude`, or `codex` |
|
|
206
202
|
| `model` | Model to use when spawning agents (provider-specific format) |
|
|
207
203
|
| `source` | Issue tracker: `github`, `azdevops`, or `md` |
|
|
208
|
-
| `testTimeout` | Test execution timeout in minutes (default: 5, range: 1–120) |
|
|
209
204
|
| `planTimeout` | Planning timeout in minutes (default: 30, range: 1–120) |
|
|
210
205
|
| `concurrency` | Max parallel dispatches (range: 1–64) |
|
|
211
206
|
| `org` | Azure DevOps organization URL |
|
|
@@ -233,7 +228,6 @@ Config is stored at `.dispatch/config.json` (relative to the working directory w
|
|
|
233
228
|
| `--plan-timeout <min>` | `30` | Planning timeout in minutes |
|
|
234
229
|
| `--retries <n>` | `3` | Retry attempts for all agents |
|
|
235
230
|
| `--plan-retries <n>` | *(from --retries)* | Retry attempts for the planner agent (overrides `--retries`) |
|
|
236
|
-
| `--test-timeout <min>` | `5` | Test timeout in minutes |
|
|
237
231
|
| `--server-url <url>` | *(none)* | Connect to a running provider server |
|
|
238
232
|
| `--cwd <dir>` | `process.cwd()` | Working directory |
|
|
239
233
|
| `--verbose` | `false` | Show detailed debug output |
|
|
@@ -251,12 +245,6 @@ In interactive dispatch runs, exhausted automatic retries pause the failed task
|
|
|
251
245
|
| `--org <url>` | Azure DevOps organization URL |
|
|
252
246
|
| `--project <name>` | Azure DevOps project name |
|
|
253
247
|
|
|
254
|
-
### Fix tests mode
|
|
255
|
-
|
|
256
|
-
| Option | Description |
|
|
257
|
-
|--------|-------------|
|
|
258
|
-
| `--fix-tests [issue-ids...]` | Run tests and fix failures via AI. Optionally pass issue IDs to target specific branches in worktrees. |
|
|
259
|
-
|
|
260
248
|
## Datasource auto-detection
|
|
261
249
|
|
|
262
250
|
When `--source` is not provided, Dispatch inspects the git `origin` remote URL:
|