بنقرة واحدة
create-issue
Create a well-structured GitHub issue for Jetmon work
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Create a well-structured GitHub issue for Jetmon work
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Create a PR for the current branch based on the PR template
Debug memory issues in Jetmon workers and identify leaks
Run, debug, and test Jetmon using the Docker development environment
Rebuild the C++ native addon after making changes to http_checker.cpp
| name | create-issue |
| description | Create a well-structured GitHub issue for Jetmon work |
| allowed-tools | Bash(gh issue create:*), Bash(gh issue list:*), Bash(git diff:*), Bash(git log:*), Bash(git status:*), Bash(git branch:*) |
Create a high-quality GitHub issue for the Automattic/jetmon repository.
/create-issue - Interactive mode: I'll ask questions to gather information/create-issue [brief description] - Quick mode: Provide a brief description and I'll create the issueBefore creating the issue, gather context:
Current branch changes (if relevant):
git diff master...HEAD --stat to see what files changedgit log master...HEAD --oneline to see commitsIssue details:
Every issue should drive action, not create overhead:
Apply appropriate labels when creating issues:
| Label | Use When |
|---|---|
bug | Something is broken or not working as expected |
enhancement | Improvement to existing functionality |
performance | Related to speed, memory, or resource usage |
documentation | Documentation updates needed |
infrastructure | Docker, deployment, or systems-related |
## Problem
Brief description of the issue or need. Include error messages, logs, or metrics if available.
## Affected Component(s)
- [ ] Master Process (`lib/jetmon.js`)
- [ ] Worker Process (`lib/httpcheck.js`)
- [ ] C++ Native Addon (`src/http_checker.cpp`)
- [ ] Veriflier (`veriflier/`)
- [ ] Database (`lib/database.js`)
- [ ] Configuration
- [ ] Docker/Infrastructure
- [ ] WPCOM Integration
## Steps to Reproduce (if applicable)
1. Step one
2. Step two
3. Expected vs actual behavior
## Proposed Solution (if known)
Description of how this might be fixed or implemented.
## Acceptance Criteria
- [ ] Specific, testable requirement
- [ ] Another requirement
- [ ] Tests pass / no regressions
## Additional Context
- Links to related issues or PRs
- Grafana dashboard screenshots
- Relevant metrics or logs
Use the GitHub CLI to create the issue:
gh issue create --title "Issue title" --body "Issue body" --label "bug"
For multi-line bodies, use a heredoc:
gh issue create --title "Fix memory leak in worker process" --label "bug,performance" --body "$(cat <<'EOF'
## Problem
Workers are hitting memory limits more frequently than expected...
## Affected Component(s)
- [x] Worker Process (`lib/httpcheck.js`)
## Acceptance Criteria
- [ ] Workers stay under 53MB memory limit
- [ ] No increase in worker recycling frequency
EOF
)"