.cursor/skills/create-issue/SKILL.md
Submit a new issue to the project.
npx skillsauth add alibaba/neug create-issueInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
$ARGUMENTS
You MUST consider the user input before proceeding (if not empty).
Determine Issue Type: Check the user input and determine the issue type.
Load Template: Load the template in a temporary file.
templates/bug-issue.md.templates/feature-issue.md.Anlyze User Input: Analyze the user input and fill the template.
@me can be directly used.User Revision:
Submit Issue: Submit the issue to the project.
gh issue create \
--title "<issue-title>" \
--body "<issue-content>" \
--label "<label>" \
--assignee "<assignee>" \
--project "<project>"
gh api graphql -f query='mutation { addSubIssue(input: {issueId: "xxx", subIssueId: "xxx"}) { issue { id title } subIssue { id title } } }'
Delete Temporary File: Delete the temporary file After the issue is created.
Appendix: Update GitHub CLI For Projects
The default GitHub CLI is too old and not support the new projects feature. If report Projects (classic) is being deprecated, you need to update the GitHub CLI. The script scripts/gh-update.sh will update the GitHub CLI and refresh authentication for projects.
development
--- name: codegraph description: Analyze indexed codebases via graph database (neug) and vector index (zvec). Covers call graphs, dependencies, dead code, hotspots, module coupling, architecture reports, semantic search, impact analysis, bug root cause from GitHub issues, class diagrams (UML), and PR review (risk scoring, conflict detection, auto-merge candidates, labeling). Also covers creating, inspecting, and repairing a CodeScope index. Use for: code structure, who calls what, why something
development
Check comments from the Pull Request on the GitHub and update code.
documentation
Cerate or Update a GitHub Issue for each Task in the task document.
documentation
Cerate or Update a GitHub Issue for each Module in the task document.