Frontmatter
| id | 8229 |
| title | Add titles to sub-issue status in markdown frontmatter |
| state | Closed |
| labels | enhancementai |
| assignees | tobiu |
| createdAt | Dec 31, 2025, 3:11 PM |
| updatedAt | Dec 31, 2025, 3:16 PM |
| githubUrl | https://github.com/neomjs/neo/issues/8229 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Dec 31, 2025, 3:16 PM |
Add titles to sub-issue status in markdown frontmatter
tobiu assigned to @tobiu on Dec 31, 2025, 3:12 PM

tobiu
Dec 31, 2025, 3:15 PM
Input from Gemini:
✦ I have implemented the requested changes in
IssueSyncer.mjs.Changes:
- Updated
formatIssueMarkdownto append the issue title to the status and number insubIssues,blockedBy, andblockinglists.- The format is now
[status] {number} {title}.Verification:
- Verified that the
FETCH_ISSUES_FOR_SYNCGraphQL query already retrieves the necessarytitlefields, so no query updates were required.- The change is lightweight and only affects the markdown generation string interpolation.
Closing this issue as the implementation is complete.
tobiu closed this issue on Dec 31, 2025, 3:16 PM
tobiu cross-referenced by #8230 on Dec 31, 2025, 3:24 PM
Building on #8205, which added status indicators (e.g.,
[x] 123) to the markdown frontmatter, this enhancement aims to include the issue title for better context.Goal: Update the
subIssues,blockedBy, andblockingfields in the frontmatter to include the issue title.Format: Change the list format from
[status] {number}to[status] {number} {title}.Example: Before:
subIssues: - "[x] 8170" - "[ ] 8171"After:
subIssues: - "[x] 8170 Implement X" - "[ ] 8171 Refactor Y"Implementation:
IssueSyncer.mjsformatIssueMarkdownmethod.titlefield from the GraphQL response.