autopilot-code 1.0.0 → 2.0.0
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 +1 -3
- package/package.json +1 -1
- package/scripts/run_autopilot.py +293 -149
- package/templates/autopilot.json +0 -1
- package/scripts/run_opencode_issue.sh +0 -690
package/README.md
CHANGED
|
@@ -43,7 +43,6 @@ The new runner provides enhanced progress tracking and session continuity:
|
|
|
43
43
|
|
|
44
44
|
```json
|
|
45
45
|
{
|
|
46
|
-
"useNewRunner": true,
|
|
47
46
|
"enablePlanningStep": true
|
|
48
47
|
}
|
|
49
48
|
```
|
|
@@ -104,7 +103,6 @@ Example:
|
|
|
104
103
|
Notes:
|
|
105
104
|
- `repo` must be the GitHub `owner/name`.
|
|
106
105
|
- `agent` (optional, default `"opencode"`): set to `"opencode"` or `"claude"` to choose which coding agent to use.
|
|
107
|
-
- `useNewRunner` (optional, default `true`): enable the new runner with step labels and session continuity. The legacy bash runner is deprecated and will be removed in a future version.
|
|
108
106
|
- `autoMerge` (optional, default `true`): if `true`, autopilot will automatically merge PRs after checks pass.
|
|
109
107
|
- `mergeMethod` (optional, default `"squash"`): merge strategy to use. Options: `"squash"`, `"merge"`, or `"rebase"`.
|
|
110
108
|
- `allowedMergeUsers` (required when `autoMerge=true`): list of GitHub usernames allowed to auto-merge. The runner verifies the authenticated GitHub user is in this list before merging.
|
|
@@ -114,7 +112,7 @@ Notes:
|
|
|
114
112
|
- `conflictResolutionMaxAttempts` (optional, default `3`): maximum number of attempts to resolve merge conflicts.
|
|
115
113
|
- `autoFixChecks` (optional, default `true`): if `true`, autopilot will attempt to automatically fix failing CI checks.
|
|
116
114
|
- `autoFixChecksMaxAttempts` (optional, default `3`): maximum number of attempts to fix failing checks.
|
|
117
|
-
- `enablePlanningStep` (optional, default `true`): if `true`, add an explicit planning phase before implementation
|
|
115
|
+
- `enablePlanningStep` (optional, default `true`): if `true`, add an explicit planning phase before implementation.
|
|
118
116
|
- `agentPath` (optional): custom path to agent executable (defaults to searching PATH).
|
|
119
117
|
|
|
120
118
|
## Workflow (labels)
|