Frontmatter
| id | 7367 |
| title | Create Script to Automate GitHub Issue Creation from Markdown Ticket |
| state | Closed |
| labels | enhancementhelp wantedgood first issuehacktoberfestai |
| assignees | ksanjeev284 |
| createdAt | Oct 5, 2025, 12:39 PM |
| updatedAt | Oct 5, 2025, 3:28 PM |
| githubUrl | https://github.com/neomjs/neo/issues/7367 |
| author | tobiu |
| commentsCount | 4 |
| parentIssue | 7364 |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Oct 5, 2025, 3:28 PM |
Create Script to Automate GitHub Issue Creation from Markdown Ticket

can you assign me

Hi, and thanks for your interest.
These tickets require the "ai native" workflows, so you need to read these 2 first: https://github.com/neomjs/neo/blob/dev/.github/WORKING_WITH_AGENTS.md https://github.com/neomjs/neo/blob/dev/.github/AI_QUICK_START.md
Since the epic subs strongly build on and relate to each other, I also strongly recommend to join the Slack and / or Discord Channels, so that you guys can sync. Like a real project :)
https://join.slack.com/t/neomjs/shared_invite/zt-6c50ueeu-3E1~M4T9xkNnb~M_prEEOA https://discord.gg/6p8paPq

Hi @tobiu sure I have joiuned the channel and will start working on it

ha, just noticed that the PR mentioned #7376 instead of #7367 (this one). almost closed the wrong ticket^^
thx again for the contribution! closing this one as resolved.
The current workflow requires the project maintainer to manually create a GitHub issue after a markdown ticket file has been created. This is a tedious and error-prone step that can be fully automated. This ticket is to create a script that uses the GitHub CLI (
gh) to read a local ticket file and create a corresponding GitHub issue.Acceptance Criteria
buildScripts/ai/createGhIssue.mjs).titlefrom the frontmatter for the GitHub issue title.gh issue create --title "<title>" --body-file <file>to create the issue. A temporary file might be needed for the body.package.jsonasnpm run ai:create-gh-issue.