fix: add gh issue comments command

This commit is contained in:
Codex
2026-07-04 12:10:30 +00:00
parent 79aeca5b3b
commit 1ed621a067
9 changed files with 152 additions and 14 deletions
+4 -3
View File
@@ -362,10 +362,11 @@ export function issueBodyReadCommands(repo: string, issueNumber: number): Record
export function issueCommentReadCommands(repo: string, issueNumber: number): Record<string, string> {
return {
comments: `bun scripts/cli.ts gh issue view ${issueNumber} --repo ${repo} --json comments`,
comments: `bun scripts/cli.ts gh issue comments ${issueNumber} --repo ${repo}`,
comment: `bun scripts/cli.ts gh issue comment view <commentId> --repo ${repo} --full`,
full: `bun scripts/cli.ts gh issue view ${issueNumber} --repo ${repo} --full`,
raw: `bun scripts/cli.ts gh issue view ${issueNumber} --repo ${repo} --raw`,
full: `bun scripts/cli.ts gh issue comments ${issueNumber} --repo ${repo} --full`,
raw: `bun scripts/cli.ts gh issue comments ${issueNumber} --repo ${repo} --raw`,
issue: `bun scripts/cli.ts gh issue view ${issueNumber} --repo ${repo}`,
};
}