ワンクリックで
implement-issue
Implements a GitHub issue end-to-end. Use when asked to implement, work on, or fix a specific issue number.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Implements a GitHub issue end-to-end. Use when asked to implement, work on, or fix a specific issue number.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Creates GitHub issues for the package repository. Use when asked to create, file, or open a GitHub issue, or when planning new features or functions that need to be tracked.
Document package functions. Use when asked to document functions.
Guide for writing R code in qcthat. Use when writing new functions, designing APIs, or reviewing/modifying existing R code.
Test-driven development workflow for qcthat. Use when writing any R code (writing new features, fixing bugs, refactoring, or reviewing tests).
Identify likely GitHub issues connected to test cases. Use when asked to tag tests with issues or get started with qcthat.
Search and rewrite R source code by syntax using astgrepr. Use when asked to find patterns in code, search for function calls, identify usage of specific arguments, locate structural patterns across R files, or perform find-and-replace on code structure.
| name | implement-issue |
| description | Implements a GitHub issue end-to-end. Use when asked to implement, work on, or fix a specific issue number. |
| compatibility | Requires the `gh` CLI and an authenticated GitHub session. |
This skill wraps the Standard Workflow defined in AGENTS.md. Run the steps
below before and after that workflow.
A. Read the issue in full:
gh issue view {number}
If gh is not authenticated, stop and ask the user to authenticate before continuing.
B. Check/create the branch:
main: usethis::pr_init("fix-{number}-{description}")fix-{number}-{description}
{description} uses kebab-casefix-279-fetch-repo-issuesSteps 1–9 of the Standard Workflow are the core development loop.
C. Commit and push:
main) — these are all part
of the same PR and should inform the PR description:
git log main..HEAD --oneline
git add -A
git commit -m "{short imperative summary}"
gh pr create --fill
Use --title and --body explicitly if --fill produces an inadequate
description.This step may be overridden — the user may ask you to stop before committing, handle the push themselves, or complete only part of the workflow. Always follow explicit user instructions over these defaults.