issue
Create a GitHub issue for a feature, bug fix, or crash with structured sections
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Create a GitHub issue for a feature, bug fix, or crash with structured sections
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Incrementally fix build errors with minimal diffs, one error at a time
Dispatch an independent Codex verification job for the current changes
Inspect all changed files, group by logical concern, and guide atomic per-concern commits
Launch parallel deep-dive agents to review completed work for quality, standards, and completeness
Regression-safe cleanup of AI-generated bloat in Lua code. Deletion-first, requires passing tests before starting
Scaffold a new Architecture Decision Record, auto-numbered from existing ADRs
| name | issue |
| description | Create a GitHub issue for a feature, bug fix, or crash with structured sections |
| argument-hint | [bug|feature|crash] [brief description] |
Create a GitHub issue with structured sections for: $ARGUMENTS
bug, feature, crash)git log --oneline -5 — recent workgit diff --name-only — files currently changedgh issue create --title "<type>: <description>" --label "<type>" --body "$(cat <<'EOF'
## Problem
[Exact error, symptoms, reproduction steps]
[For crashes: stack trace or error output from Mudlet]
## Analysis
[Root cause investigation]
[Which Lua module/trigger/alias is affected]
[GMCP data state when bug occurs]
## Solution
[What was changed and WHY]
[Which files were modified]
## Testing
[How the fix was verified]
[Manual testing in Mudlet or unit test coverage]
## Files Changed
- `path/to/file.lua` — one-line description
EOF
)"
gh issue create --title "feat: <description>" --label "feature" --body "$(cat <<'EOF'
## Motivation
[Why this feature exists, what problem it solves]
[Which class/system benefits]
## Design
[Architecture: triggers, aliases, scripts, events involved]
[GMCP data sources used]
[Integration with existing systems (curing, offense, defense)]
## Implementation
[Key files, patterns used]
[New triggers/aliases/scripts added]
## Testing
[Test coverage, how to verify in Mudlet]
EOF
)"
Output the issue URL when created.
bug, feature, crash, enhancement, class-offensefix(serpent): ...)gh issue close <number> when work is complete