@laitszkin/apollo-toolkit 2.14.8 → 2.14.9
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/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,12 @@ All notable changes to this repository are documented in this file.
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [v2.14.9] - 2026-04-08
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
- Update `merge-changes-from-local-branches` so it must inspect active batch-spec `coordination.md` files under `docs/plans/` and follow their documented merge order when one is explicitly provided.
|
|
11
|
+
- Clarify that merge-order guidance from active batch specs is authoritative unless the plan is stale, conflicting, or cannot be mapped safely to the current branches.
|
|
12
|
+
|
|
7
13
|
## [v2.14.8] - 2026-04-08
|
|
8
14
|
|
|
9
15
|
### Changed
|
|
@@ -22,8 +22,8 @@ description: >-
|
|
|
22
22
|
|
|
23
23
|
## Standards
|
|
24
24
|
|
|
25
|
-
- Evidence: Inspect the current branch state, local branches, ahead/behind status,
|
|
26
|
-
- Execution: Merge only the relevant local branches into `main` sequentially, resolve conflicts by reading both sides and editing the merged result to preserve shipped behavior, verify the merged state, delete each successfully merged branch and its detached worktree only after the merged result is confirmed, then hand the final local branch state to `commit-and-push` so commit/changelog/spec-archival work happens through the shared submission workflow.
|
|
25
|
+
- Evidence: Inspect the current branch state, local branches, ahead/behind status, actual conflicting files, and any active batch-spec `coordination.md` merge-order guidance before deciding what to merge.
|
|
26
|
+
- Execution: Merge only the relevant local branches into `main` sequentially, read any active batch-spec `coordination.md` and honor its documented merge order when present, resolve conflicts by reading both sides and editing the merged result to preserve shipped behavior, verify the merged state, delete each successfully merged branch and its detached worktree only after the merged result is confirmed, then hand the final local branch state to `commit-and-push` so commit/changelog/spec-archival work happens through the shared submission workflow.
|
|
27
27
|
- Quality: Never use blanket timestamp rules or default `-X ours/theirs` conflict resolution as the primary merge strategy, and do not declare success until the final `main` state has been checked and verified.
|
|
28
28
|
- Output: Produce a clean local main branch with all local changes integrated and ready for the shared submit workflow.
|
|
29
29
|
|
|
@@ -37,19 +37,29 @@ Consolidate all local branch changes into the local main branch with automatic c
|
|
|
37
37
|
|
|
38
38
|
- Run `git branch` to list all local branches.
|
|
39
39
|
- Check the current branch with `git branch --show-current` and capture `git status -sb`.
|
|
40
|
+
- Inspect active planning artifacts under `docs/plans/` and look for batch roots that still contain live spec sets plus a `coordination.md`.
|
|
41
|
+
- When an active batch is present, read its `coordination.md` before deciding merge order.
|
|
40
42
|
- Compare each candidate branch against `main` with `git log --oneline main..branch`, `git diff --stat main...branch`, or equivalent evidence so empty or already-merged branches are skipped.
|
|
41
43
|
- For each branch, note:
|
|
42
44
|
- Branch name
|
|
43
45
|
- Commits ahead of main
|
|
44
46
|
- Last commit message (via `git log -1 --oneline`)
|
|
45
47
|
|
|
48
|
+
### 1.5) Resolve merge order from active batch specs
|
|
49
|
+
|
|
50
|
+
- Treat active batch specs as authoritative merge-order guidance when they include a concrete `Merge order / landing order` entry in `coordination.md`.
|
|
51
|
+
- Map branch names to the corresponding spec sets or worktrees using the batch folder names, spec-set names, and current git evidence; do not guess when the mapping is ambiguous.
|
|
52
|
+
- Merge branches in the documented order when that order is explicit.
|
|
53
|
+
- If multiple active batches exist, reconcile their merge-order guidance before merging; if the orders conflict or the branch-to-spec mapping is unclear, stop and report the ambiguity instead of choosing an arbitrary sequence.
|
|
54
|
+
- If no active batch spec provides an explicit merge order, fall back to the normal branch inventory evidence and merge the relevant branches sequentially based on the safest verified order.
|
|
55
|
+
|
|
46
56
|
### 2) Ensure clean state on main
|
|
47
57
|
|
|
48
58
|
- Check `git status` on `main`.
|
|
49
59
|
- If `main` has uncommitted changes that are unrelated to the merge request, stop and report them instead of stashing automatically.
|
|
50
60
|
- Only proceed once you can state which branch or branches actually need to be merged.
|
|
51
61
|
|
|
52
|
-
### 3) Merge branches sequentially
|
|
62
|
+
### 3) Merge branches sequentially in the resolved order
|
|
53
63
|
|
|
54
64
|
For each local branch (excluding main):
|
|
55
65
|
|
|
@@ -139,6 +149,7 @@ For each local branch (excluding main):
|
|
|
139
149
|
- If a branch's merge breaks tests, resolve the conflict differently before committing.
|
|
140
150
|
- Do not stash or discard unrelated work automatically; stop when the working tree state makes the merge ambiguous.
|
|
141
151
|
- Delete merged source branches and their detached worktrees only after the merge commit and verification both succeed.
|
|
152
|
+
- When active batch specs provide merge-order guidance, follow that order unless new evidence proves the plan is stale or inapplicable; if so, stop and report the mismatch instead of silently overriding the batch plan.
|
|
142
153
|
|
|
143
154
|
## Conflict Resolution Examples
|
|
144
155
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
interface:
|
|
2
2
|
display_name: "Merge Changes from Local Branches"
|
|
3
3
|
short_description: "Merge relevant local branches into main with verified conflict resolution"
|
|
4
|
-
default_prompt: "Use $merge-changes-from-local-branches to inventory local branches, merge only the relevant ones into local main, resolve conflicts by reading and composing the correct behavior instead of relying on blanket merge strategies, run targeted verification after conflictful merges, delete successfully merged source branches and detached worktrees only after verification succeeds, and leave remote state untouched."
|
|
4
|
+
default_prompt: "Use $merge-changes-from-local-branches to inventory local branches, inspect active batch-spec `coordination.md` files under docs/plans and follow their documented merge order when present, merge only the relevant ones into local main, resolve conflicts by reading and composing the correct behavior instead of relying on blanket merge strategies, run targeted verification after conflictful merges, delete successfully merged source branches and detached worktrees only after verification succeeds, and leave remote state untouched."
|
package/package.json
CHANGED