ワンクリックで
issue
Create, view, or triage GitHub issues from the terminal. Pass an issue number to read it, or a description to create one.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Create, view, or triage GitHub issues from the terminal. Pass an issue number to read it, or a description to create one.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Deep analysis of current changes before committing. Goes beyond lint — catches logic bugs, architectural violations, security, and performance issues.
Create a pull request from the current branch, matching the repo's PR conventions (What/Why/Testing for features, Summary/Test-plan for small PRs).
Review staged or unstaged changes before committing. Catches bugs, style drift, and missing coverage.
Cut a release — promote Unreleased → versioned in CHANGELOG, bump version, commit. CI auto-tags and publishes from the version-bump commit.
Create a release-tracking issue that organizes open issues into a phased roadmap. Pass a target version (e.g., `0.5.0`) to scope the plan.
Run the full quality gate — format, lint, tests, types. Use after changes to verify nothing is broken.
| name | issue |
| description | Create, view, or triage GitHub issues from the terminal. Pass an issue number to read it, or a description to create one. |
Work with GitHub issues for AgentLoom.
$ARGUMENTS is an issue numbergh issue view $ARGUMENTS$ARGUMENTS is a descriptionDedup check: gh issue list --search "$ARGUMENTS" --state all.
Draft following the repo's issue convention:
Title — brief lowercase imperative (add X, expose Y, fix Z). No scopes.
Body — this exact structure:
### Description
<what's missing or broken, why it matters, related issues with #NN refs>
### Proposal
<concrete approach; include code/YAML blocks where they clarify the API>
<optional: trade-offs, alternatives, notes on scope>
Bugs may swap ### Proposal for ### Repro + ### Expected vs actual, but keep the ### depth.
Labels — reuse existing ones; don't invent new. Pick from the label list shown by gh label list. Common picks: enhancement, bug, core, providers, cli, observability, infrastructure.
Show the draft, confirm, then gh issue create --title "..." --body "..." --label "...".
$ARGUMENTSgh issue list --state open --limit 20