Frontmatter
| id | 7564 |
| title | Epic: Implement Two-Way GitHub Synchronization for Issues |
| state | Closed |
| labels | epicai |
| assignees | tobiu |
| createdAt | Oct 20, 2025, 1:17 PM |
| updatedAt | Oct 24, 2025, 11:32 AM |
| githubUrl | https://github.com/neomjs/neo/issues/7564 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | null |
| subIssues | 7565 Create Scaffold for the Issue Synchronization Service 7566 Implement GitHub to Local Sync (Pull) 7567 Implement Local to GitHub Sync (Push) 7568 Refine Issue Creation to be API-First 7569 Refactor SyncService to Use Centralized Configuration 7570 Implement and Adopt a Centralized stderr Logger 7571 Refactor Sync Config for Dynamic Date-Based Syncing 7572 Implement Dynamic Release Fetching in SyncService 7573 Filter GitHub Issues by Date in SyncService 7574 Update Archiving Logic to Use Dynamic Release Data 7575 Implement Release Note Synchronization 7576 Fix and Verify GitHub API Field Names in SyncService 7578 Harden Release Caching and Add Fallback 7579 Track and Handle Failed Pushes in SyncService 7580 Add Frontmatter to Synchronized Release Notes 7581 Add Comprehensive JSDoc to SyncService 7582 Externalize Magic Numbers and Strings in SyncService 7583 Implement Abort-on-Startup if Health Check Fails 7584 Fix Semantic Version Comparison in HealthService using ''semver'' 7585 Implement Missing #checkGhAuth Method in HealthService 7587 Implement Graceful Health Handling with Recovery 7588 Enhance Sync Result Payload with Comprehensive Statistics 7589 Refactor Issue Filename Convention |
| subIssuesCompleted | 23 |
| subIssuesTotal | 23 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Oct 24, 2025, 11:32 AM |
Epic: Implement Two-Way GitHub Synchronization for Issues
tobiu assigned to @tobiu on Oct 20, 2025, 1:17 PM
tobiu added sub-issue #7565 on Oct 20, 2025, 1:20 PM
tobiu added sub-issue #7566 on Oct 20, 2025, 1:22 PM
tobiu added sub-issue #7567 on Oct 20, 2025, 1:24 PM
tobiu added sub-issue #7568 on Oct 20, 2025, 1:26 PM
tobiu added sub-issue #7569 on Oct 20, 2025, 2:04 PM
tobiu added sub-issue #7570 on Oct 20, 2025, 2:16 PM
tobiu added sub-issue #7571 on Oct 20, 2025, 2:43 PM
tobiu added sub-issue #7572 on Oct 20, 2025, 2:44 PM
tobiu added sub-issue #7573 on Oct 20, 2025, 2:46 PM
tobiu added sub-issue #7574 on Oct 20, 2025, 2:48 PM
tobiu added sub-issue #7575 on Oct 20, 2025, 2:49 PM
tobiu added sub-issue #7576 on Oct 20, 2025, 3:21 PM
tobiu added sub-issue #7577 on Oct 20, 2025, 3:22 PM
tobiu added sub-issue #7578 on Oct 20, 2025, 3:24 PM
tobiu added sub-issue #7579 on Oct 20, 2025, 3:25 PM
tobiu added sub-issue #7580 on Oct 20, 2025, 3:27 PM
tobiu added sub-issue #7581 on Oct 20, 2025, 3:29 PM
tobiu added sub-issue #7582 on Oct 20, 2025, 3:30 PM
tobiu removed sub-issue #7577 on Oct 20, 2025, 3:34 PM
tobiu added sub-issue #7583 on Oct 20, 2025, 3:37 PM
tobiu added sub-issue #7584 on Oct 20, 2025, 3:47 PM
tobiu added sub-issue #7585 on Oct 20, 2025, 3:50 PM
tobiu added sub-issue #7587 on Oct 20, 2025, 10:47 PM
tobiu added sub-issue #7588 on Oct 21, 2025, 9:55 AM
tobiu added sub-issue #7589 on Oct 21, 2025, 11:33 AM

tobiu
Oct 24, 2025, 11:32 AM
epic resolved, there will be new tickets for the new mcp server.
tobiu closed this issue on Oct 24, 2025, 11:32 AM
This epic outlines the implementation of a robust, bi-directional synchronization mechanism for GitHub issues, enabling them to be stored and edited as local Markdown files.
The core architecture follows a GitHub-First model for creation, combined with a powerful local sync capability for content editing. This hybrid approach ensures data integrity and a seamless workflow for both AI agents and human developers.
A new, dedicated
SyncServicewill be created within thegithub-workflowMCP server to manage all synchronization logic. This service will be stateful, using a central metadata file to track changes efficiently and prevent unnecessary API calls.Phase 1: Core Issue Synchronization
This initial phase focuses on building the complete, end-to-end synchronization workflow for GitHub Issues.
Key Architectural Pillars:
ghCLI). This guarantees a single source of truth for issue numbers and initial metadata. A dedicatedcreate_issuetool will be implemented for this.SyncServicesingleton, built onNeo.core.Base, will encapsulate all sync logic. It will be exposed via async_issuestool..github/.sync-metadata.jsonfile will store the last sync time and the state of each issue, enabling efficient, delta-based updates..mdfiles with YAML frontmatter for metadata and inlined comments, creating a complete, self-contained record..github/ISSUE_ARCHIVE/v11.0/) based on their milestone or closed date.Phase 2: Future Enhancements
Once the core issue synchronization is stable and robust, we will expand its capabilities.
.github/PULL_REQUESTS/directory..mdfiles back to GitHub. This is a complex task that requires careful parsing and state management.