We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c29984 commit d481060Copy full SHA for d481060
1 file changed
src/Commands/StartCommand.php
@@ -352,7 +352,10 @@ private function fetchIssuePromptContent(string $issueNumber): string
352
exit(self::FAILURE);
353
}
354
355
- return "# GitHub Issue #{$issueNumber}: {$issue['title']}\n\n{$issue['body']}";
+ return "# GitHub Issue #{$issueNumber}: {$issue['title']}\n\n{$issue['body']}"
356
+ ."\n\n---\n\nAfter completing each checklist item, update the GitHub issue to check it off."
357
+ ." Fetch the current body with `gh issue view {$issueNumber} --json body -q .body`,"
358
+ .' then `gh issue edit '.$issueNumber." --body '...'` with the checkbox toggled from `- [ ]` to `- [x]`.";
359
360
361
/**
0 commit comments