agentplane 0.3.27 → 0.3.29
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/AGENTS.md +1 -1
- package/assets/policy/workflow.branch_pr.md +2 -1
- package/dist/.build-manifest.json +3 -3
- package/dist/cli.js +345 -378
- package/package.json +3 -3
package/assets/AGENTS.md
CHANGED
|
@@ -75,7 +75,7 @@ agentplane finish <task-id> --author <ROLE> --body "Verified: ..." --result "...
|
|
|
75
75
|
agentplane work start <task-id> --agent <ROLE> --slug <slug> --worktree
|
|
76
76
|
agentplane pr open <task-id> --branch task/<task-id>/<slug> --author <ROLE>
|
|
77
77
|
agentplane pr update <task-id>
|
|
78
|
-
agentplane integrate <task-id> --branch task/<task-id>/<slug> --
|
|
78
|
+
agentplane integrate <task-id> --branch task/<task-id>/<slug> --run-verify
|
|
79
79
|
agentplane finish <task-id> --author INTEGRATOR --body "Verified: ..." --result "..." --commit <git-rev> --close-commit
|
|
80
80
|
```
|
|
81
81
|
|
|
@@ -22,7 +22,7 @@ agentplane task start-ready <task-id> --author <ROLE> --body "Start: ..."
|
|
|
22
22
|
agentplane pr open <task-id> --branch task/<task-id>/<slug> --author <ROLE>
|
|
23
23
|
agentplane pr update <task-id>
|
|
24
24
|
agentplane verify <task-id> --ok|--rework --by <ROLE> --note "..."
|
|
25
|
-
agentplane integrate <task-id> --branch task/<task-id>/<slug> --
|
|
25
|
+
agentplane integrate <task-id> --branch task/<task-id>/<slug> --run-verify
|
|
26
26
|
agentplane finish <task-id> --author INTEGRATOR --body "Verified: ..." --result "..." --commit <git-rev> --close-commit
|
|
27
27
|
```
|
|
28
28
|
|
|
@@ -33,6 +33,7 @@ agentplane finish <task-id> --author INTEGRATOR --body "Verified: ..." --result
|
|
|
33
33
|
- MUST run `task plan approve` then `task start-ready` as `Step 1 -> wait -> Step 2` (never parallel).
|
|
34
34
|
- In `branch_pr`, `task start-ready`, `pr open`, `pr update`, and verification commands SHOULD be run from the task worktree created by `work start`.
|
|
35
35
|
- `pr open` without `--sync-only` SHOULD complete in one pass: sync local artifacts, auto-publish the task branch to `origin` when it has no upstream yet, then create/link the remote GitHub PR.
|
|
36
|
+
- `integrate` defaults to the `merge` strategy so task branch commits stay in base history. Use `--merge-strategy squash` only when intentionally compacting branch history.
|
|
36
37
|
- `task start-ready` MAY surface targeted incident advice for analogous scope/tags; follow it before widening scope.
|
|
37
38
|
- Keep structured resolved external findings in the task README; mark reusable ones with `Fixability: external` (or `IncidentExternal: true`) and let base-branch `finish` or `agentplane incidents collect <task-id>` promote them into `.agentplane/policy/incidents.md`, using optional `Incident*` fields only when the inferred scope/advice needs refinement. Plain `Findings` text remains task-local and does not update the shared incident registry.
|
|
38
39
|
- MUST stop and request re-approval on material drift.
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"schema_version": 1,
|
|
3
3
|
"manifest_kind": "package",
|
|
4
4
|
"package_name": "agentplane",
|
|
5
|
-
"package_version": "0.3.
|
|
6
|
-
"git_head": "
|
|
7
|
-
"watched_runtime_snapshot_hash": "
|
|
5
|
+
"package_version": "0.3.29",
|
|
6
|
+
"git_head": "a4aa33ce12fedb462fdbb69d48a639101382ddd0",
|
|
7
|
+
"watched_runtime_snapshot_hash": "b88790734dcf856620028536210b6391ea348d8d0dfafde7ec9b371233a9cf9b"
|
|
8
8
|
}
|