Frontmatter
| id | 7557 |
| title | Convert issueService to IssueService Neo.mjs Class |
| state | Closed |
| labels | enhancementai |
| assignees | tobiu |
| createdAt | Oct 20, 2025, 12:35 AM |
| updatedAt | Oct 20, 2025, 12:41 AM |
| githubUrl | https://github.com/neomjs/neo/issues/7557 |
| author | tobiu |
| commentsCount | 0 |
| parentIssue | 7536 |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Oct 20, 2025, 12:41 AM |
This ticket covers refactoring
ai/mcp/server/github-workflow/services/issueService.mjsinto a singletonIssueServiceclass that extendsNeo.core.Base. This service will handle interactions with GitHub issues, such as adding and removing labels.Acceptance Criteria
ai/mcp/server/github-workflow/services/issueService.mjsis renamed toIssueService.mjs.IssueServiceclass that extendsNeo.core.Baseand is configured as a singleton.addLabels,removeLabels) are converted into class methods.ai/mcp/server/github-workflow/services/toolService.mjsis updated to use the newIssueServiceclass.add_labelsandremove_labelstools continue to function correctly after the refactoring.