Skip to content
Merged
Show file tree
Hide file tree
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: 4 additions & 0 deletions claude/skills/git-workflow/pr-reaction.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ gh pr-review review view -R <owner>/<repo> <number> \
--unresolved --not_outdated --include-comment-node-id
```

`gh api` is required here: the `gh pr-review` extension does not
expose `user.type` on review comments (no equivalent flag), and no
high-level `gh pr` subcommand returns per-line review comments.

```bash
gh api /repos/<owner>/<repo>/pulls/<number>/comments \
--jq '.[] | {node_id, user_login: .user.login, user_type: .user.type}'
Expand Down
2 changes: 1 addition & 1 deletion claude/skills/retrospective/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Compute the current session's transcript path. The Session ID is
already substituted below when this SKILL.md loads:

- Session ID: `${CLAUDE_SESSION_ID}`
- Munged cwd: run `pwd | sed 's|/|-|g'` (every `/` becomes `-`, so a
- Munged cwd: run `pwd | tr '/' '-'` (every `/` becomes `-`, so a
leading `/` becomes a leading `-`)
- Full path: `$HOME/.claude/projects/<munged-cwd>/<session-id>.jsonl`

Expand Down
Loading