Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .claude/skills/issue/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,11 @@ The two failure modes this skill exists to prevent: **fixing something that `dev
## 1. Read the whole issue

```
gh issue view <number> --comments
gh issue view <number> --json number,title,state,author,body,labels,createdAt,comments
```

Use the `--json` form, not `gh issue view <number> --comments`. Those two views are disjoint: the plain view prints the body and no comments, `--comments` prints the comments and no body. On an issue with no comments yet — which is most new reports — `--comments` prints nothing at all and looks like a broken `gh`. The `--json` form always returns both in one call.

Also check whether someone is already on it:

```
Expand Down