ソース情報
- リポジトリ
- Automattic/jetmon
- ソースの最終更新活動
- 2026年2月20日 22:58
- 検出された SKILL.md の言語
- 英語
- スター
- 17
- フォーク
- 4
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/Automattic/jetmon --skill create-issueコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SOC 職業分類に基づく
SKILL.md を表示中
| 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
)"