Frontmatter
| id | 8501 |
| title | Implement Ticket Index Generation Script |
| state | Closed |
| labels | aibuildfeature |
| assignees | tobiu |
| createdAt | Jan 10, 2026, 3:27 PM |
| updatedAt | Jan 10, 2026, 3:32 PM |
| githubUrl | https://github.com/neomjs/neo/issues/8501 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | 8398 |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Jan 10, 2026, 3:32 PM |
Implement Ticket Index Generation Script
tobiu added parent issue #8398 on Jan 10, 2026, 3:28 PM

tobiu
Jan 10, 2026, 3:32 PM
Input from Gemini 3 Pro:
✦ I have implemented the ticket index generation logic.
Changes:
Created
buildScripts/createTicketIndex.mjs:
- Scans
resources/content/issuesandresources/content/issue-archive.- Filters tickets based on
INCLUDE_LABELS(bug, feature, enhancement, documentation, epic, architecture, refactoring) andEXCLUDE_LABELS(chore, task, agent-task).- Generates a flat JSON structure in
apps/portal/resources/data/tickets.json.Updated
buildScripts/prepareRelease.mjs:
- Integrated
createTicketIndex()to run immediately aftercreateReleaseIndex().Generated Initial Data:
apps/portal/resources/data/tickets.jsonis now populated with ~2219 tickets.Work committed and pushed to
dev.
tobiu cross-referenced by #8398 on Jan 10, 2026, 3:32 PM
tobiu assigned to @tobiu on Jan 10, 2026, 3:32 PM
tobiu closed this issue on Jan 10, 2026, 3:32 PM
Create a new build script
buildScripts/createTicketIndex.mjsto parse local markdown tickets and generate a structured JSON index for the Portal app.Scope:
resources/content/issues(active) andresources/content/issue-archive(archived).bug,feature; excludechore).apps/portal/resources/data/tickets.jsoncontaining a flat list of ticket metadata.node.This is a sub-task of Epic #8398.