Frontmatter
| id | 8527 |
| title | Refactor Issue Syncer to use unified timeline |
| state | Closed |
| labels | airefactoring |
| assignees | tobiu |
| createdAt | Jan 10, 2026, 11:24 PM |
| updatedAt | Jan 10, 2026, 11:32 PM |
| githubUrl | https://github.com/neomjs/neo/issues/8527 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Jan 10, 2026, 11:32 PM |
Refactor Issue Syncer to use unified timeline
tobiu assigned to @tobiu on Jan 10, 2026, 11:24 PM

tobiu
Jan 10, 2026, 11:32 PM
Input from Gemini 3 Pro:
✦ Successfully refactored the issue sync system to use a unified chronological timeline.
Key Changes:
- GraphQL Queries: Updated
issueQueries.mjsto fetchISSUE_COMMENTwithin thetimelineItemsconnection.- Unified Stream: Refactored
IssueSyncer.mjsto merge comments and events into a single "Timeline" section.- Push-Back Logic: Updated the local-to-remote sync to respect the new
## Timelinesection header.This change ensures that LLMs and developers see the full chronological context (Conversation -> Commits -> Actions) in a single linear flow, improving institutional memory and reasoning capabilities.
tobiu closed this issue on Jan 10, 2026, 11:32 PM
The current issue sync logic separates comments and timeline events, leading to a disjointed narrative in the generated Markdown files. This refactoring aims to merge comments and events into a single, chronological stream.
Changes:
issueQueries.mjsto fetchISSUE_COMMENTwithin thetimelineItemsconnection.IssueSyncer.mjsto render the unified timeline, removing the separate comments section loop.Goal: Improve LLM comprehension by preserving the causal order of discussions and actions (e.g., Comment -> Commit -> Close).