agentplane 0.6.14 → 0.6.15
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/assets/policy/workflow.branch_pr.md +8 -9
- package/dist/.build-manifest.json +3 -3
- package/dist/cli.js +567 -566
- package/package.json +3 -3
|
@@ -15,10 +15,12 @@ Use this module when `workflow_mode=branch_pr`.
|
|
|
15
15
|
4. Keep single-writer discipline per task worktree.
|
|
16
16
|
5. Publish/update PR artifacts from the task worktree.
|
|
17
17
|
6. Verify on the task branch.
|
|
18
|
-
7.
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
18
|
+
7. Finish the task on the task branch with `--pre-merge-closure` so the PR carries the final
|
|
19
|
+
closure packet before merge.
|
|
20
|
+
8. Queue verified task branches for serialized integration when more than one agent is ready to merge.
|
|
21
|
+
9. CHECKPOINT B: INTEGRATOR runs integration from the base checkout; protected bases finalize through the task GitHub PR merge, not a direct local base mutation.
|
|
22
|
+
10. CHECKPOINT C: hosted close is a no-op when pre-merge closure is present; otherwise it remains the close-tail recovery route.
|
|
23
|
+
11. Remove merged task branches/worktrees once the hosted-close/finish route has landed.
|
|
22
24
|
|
|
23
25
|
## Related task batch worktrees
|
|
24
26
|
|
|
@@ -47,16 +49,13 @@ agentplane task start-ready <task-id> --author <ROLE> --body "Start: ..."
|
|
|
47
49
|
agentplane pr open <task-id> --branch task/<task-id>/<slug> --author <ROLE>
|
|
48
50
|
agentplane pr update <task-id>
|
|
49
51
|
agentplane verify <task-id> --ok|--rework --by <ROLE> --note "..."
|
|
52
|
+
agentplane finish <task-id> --author <ROLE> --body "Verified: ..." --result "..." --commit <git-rev> --pre-merge-closure
|
|
50
53
|
agentplane integrate queue enqueue <task-id> --branch task/<task-id>/<slug>
|
|
51
54
|
agentplane integrate queue run-next --run-verify --drain --wait --poll-interval-ms 30000 --timeout-ms 600000
|
|
52
55
|
agentplane integrate <task-id> --branch task/<task-id>/<slug> --run-verify
|
|
53
|
-
agentplane finish <task-id> --author INTEGRATOR --body "Verified: ..." --result "..." --commit <git-rev> --close-commit
|
|
54
56
|
```
|
|
55
57
|
|
|
56
|
-
Default branch names are `task/<task-id>/<slug>` for implementation branches and
|
|
57
|
-
`task-close/<task-id>/<sha12>` for close-tail branches. Repositories MAY override only the prefixes
|
|
58
|
-
through `branch.task_prefix` and `branch.task_close_prefix`; task id, slug, and sha positions remain
|
|
59
|
-
fixed.
|
|
58
|
+
Default branch names are `task/<task-id>/<slug>` for implementation branches and `task-close/<task-id>/<sha12>` for close-tail branches. Repositories MAY override only the prefixes through `branch.task_prefix` and `branch.task_close_prefix`; task id, slug, and sha positions remain fixed.
|
|
60
59
|
|
|
61
60
|
Before manually filling `<slug>` or `<branch>`, use `agentplane task brief <task-id>` or `agentplane task next-action <task-id> --explain` and prefer the emitted concrete command.
|
|
62
61
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"schema_version": 1,
|
|
3
3
|
"manifest_kind": "package",
|
|
4
4
|
"package_name": "agentplane",
|
|
5
|
-
"package_version": "0.6.
|
|
6
|
-
"git_head": "
|
|
7
|
-
"watched_runtime_snapshot_hash": "
|
|
5
|
+
"package_version": "0.6.15",
|
|
6
|
+
"git_head": "51bad22db5ff38ba87ea28cd85baefcf983a4ed8",
|
|
7
|
+
"watched_runtime_snapshot_hash": "992a049ec15b832e9fad8eeffeddb53d40c8f051ae8b1329a23f675b0bc98108"
|
|
8
8
|
}
|