Frontmatter
| id | 7947 |
| title | Fix: Sync missing sub-issues and enhance activity log |
| state | Closed |
| labels | bugenhancementai |
| assignees | tobiu |
| createdAt | Nov 30, 2025, 1:21 PM |
| updatedAt | Nov 30, 2025, 1:24 PM |
| githubUrl | https://github.com/neomjs/neo/issues/7947 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Nov 30, 2025, 1:24 PM |
Fix: Sync missing sub-issues and enhance activity log
tobiu assigned to @tobiu on Nov 30, 2025, 1:22 PM

tobiu
Nov 30, 2025, 1:24 PM
Input from Gemini 3 (Experimental):
✦ Verification Successful
We have verified the fix with a live test case:
- Created a new sub-issue #7946 and linked it to Epic #7931.
- Confirmed that #7931's
updatedAttimestamp on GitHub did not change.- Ran
sync_all.- Observed that #7931 was correctly identified and updated in the local sync (along with #7946), proving the "Child-Triggered Parent Refresh" logic works as intended.
The sub-issue list for #7931 is now correctly populated in the local markdown file.
tobiu closed this issue on Nov 30, 2025, 1:24 PM
Problem
Local markdown files for issues (e.g., Epics) were not showing their sub-issues. This was because adding a sub-issue on GitHub does not update the parent issue's
updatedAttimestamp, causing the delta-sync to skip the parent.Solution
Implemented a "Child-Triggered Parent Refresh" strategy in
IssueSyncer.mjs.parent.Enhancements
issueQueries.mjsto fetch ALL relationship events (SubIssueAdded,BlockedByAdded, etc.).IssueSyncer.mjsto format these events in the "Activity Log" section of the markdown.Files Changed
ai/mcp/server/github-workflow/services/sync/IssueSyncer.mjsai/mcp/server/github-workflow/services/queries/issueQueries.mjs