ワンクリックで
report-bug
Report a bug as a GitHub Issue with description, reproduction steps, and initial analysis
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Report a bug as a GitHub Issue with description, reproduction steps, and initial analysis
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Check which feature plans are fully implemented and archive completed ones
Fix a bug from a GitHub Issue using the Red-Green test approach
Implement the next feature from the roadmap or a specific feature by name
Plan a new feature, add it to the roadmap, and create a specification document
Create E2E tests with screenshots and build step-by-step documentation for the public website
Build and start ReadyStackGo container for manual testing
| name | report-bug |
| description | Report a bug as a GitHub Issue with description, reproduction steps, and initial analysis |
| disable-model-invocation | false |
| argument-hint | <bug description> |
Erfasse einen Bug als GitHub Issue mit Beschreibung, Reproduktionsschritten und erster Analyse.
Bug: $ARGUMENTS
Dieser Skill erstellt ein GitHub Issue für einen Bug — ohne ihn zu fixen. Zum Fixen nutze /fix-bug <issue-nummer>.
$ARGUMENTS eine Beschreibung enthält: Bug analysieren.docker compose logs readystackgo --tail 50 2>/dev/null | grep -i error
Ein Bug MUSS als GitHub Issue erfasst werden. Kein Bug ohne Issue.
gh issue create \
--title "bug: <Kurzbeschreibung>" \
--label "bug" \
--body "$(cat <<'EOF'
## Bug Description
<Was passiert?>
## Expected Behavior
<Was sollte passieren?>
## Steps to Reproduce
1. ...
2. ...
## Environment
- [ ] Production
- [ ] Local Dev (Docker)
- [ ] Both
## Analysis
<Erste Analyse: welcher Code/welche Komponente ist wahrscheinlich betroffen?>
<Vermutete Ursache?>
EOF
)"
Jedes Bug-Issue MUSS auf dem Project Board sichtbar sein.
# Issue zum Board hinzufügen
gh project item-add 6 --owner Wiesenwischer --url <ISSUE_URL>
# Status auf Backlog setzen
PROJECT="PVT_kwHOAKdwzc4BR2Bg"
STATUS_FIELD="PVTSSF_lAHOAKdwzc4BR2Bgzg_jRfE"
BACKLOG_ID="56c4cbb9"
ITEM_ID=$(gh project item-list 6 --owner Wiesenwischer --format json --limit 200 --jq ".items[] | select(.content.number == <ISSUE_NUMBER>) | .id")
gh project item-edit --project-id $PROJECT --id "$ITEM_ID" --field-id $STATUS_FIELD --single-select-option-id $BACKLOG_ID
| Status | ID |
|---|---|
| Backlog | 56c4cbb9 |
| Todo | af3283ef |
| In Progress | 9e4cff0c |
| Review | f25a5d7c |
| Done | c631b3e2 |
Zeige dem User:
/fix-bug #NNN zum FixenAlle Punkte müssen abgehakt sein. Bei Fehler -> nochmal versuchen, nicht weitermachen.
bug (PFLICHT — verifiziere dass Issue-URL zurückkommt)gh project item-add)