Frontmatter
| id | 7642 |
| title | Refactor: Extract Release & Issue Syncers from SyncService |
| state | Closed |
| labels | airefactoring |
| assignees | tobiu |
| createdAt | Oct 25, 2025, 12:21 PM |
| updatedAt | Oct 25, 2025, 1:40 PM |
| githubUrl | https://github.com/neomjs/neo/issues/7642 |
| author | tobiu |
| commentsCount | 0 |
| parentIssue | 7645 |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Oct 25, 2025, 1:40 PM |
As the first step in the larger sync service refactoring (Epic: Refactor and Extend GitHub Sync Service), this ticket focuses on breaking down the monolithic
SyncServiceinto smaller, more focused modules.Tasks:
ai/mcp/server/github-workflow/services/sync/.sync/ReleaseSyncer.mjsand move all release-related fetching and file-writing logic into it fromSyncService.sync/IssueSyncer.mjsand move all issue-related pull, push, and formatting logic into it fromSyncService.SyncService.mjsto become a lean orchestrator that imports and calls the newReleaseSyncerandIssueSyncermodules.SyncServiceto be more generic and accurate.