ワンクリックで
ghpm-suggest
Suggest what to work on next based on project state and session context. Considers proximity, momentum, status, and constraints.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Suggest what to work on next based on project state and session context. Considers proximity, momentum, status, and constraints.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
File a GitHub issue and add it to the project board. Works mid-session or standalone. Reads .ghpm/config.json for repo list and project.
Initialize GitHub Project Management config. Auto-discovers project schema (fields, views, repos) and generates .ghpm/config.json + .ghpm/cache.json.
Shared reference for all ghpm skills — prerequisites, config format, startup sequence, and error handling.
GitHub Project health dashboard. Shows workflow distribution, component health, team workload, items needing attention, and available views.
Query GitHub Project items by named view or ad-hoc filter. Shows items in board, table, or roadmap format.
End-to-end work session on a GitHub Project item. Setup → Clarify → Plan → Implement → PR, with decisions captured throughout. Use when starting work on an issue, picking up a task, or resuming an interrupted session.
| name | ghpm-suggest |
| description | Suggest what to work on next based on project state and session context. Considers proximity, momentum, status, and constraints. |
| argument-hint | [any natural language constraint, e.g. 'I have 2 hours', 'I want to switch context', 'something small'] |
| allowed-tools | Bash(gh:*), Bash(git:*), Read, Grep, Glob |
| compatibility | Requires gh CLI authenticated with read:project and project scopes |
| metadata | {"author":"jackchuka","scope":"generic"} |
PREREQUISITE: Read
../ghpm-shared/SKILL.mdfor prerequisites and error handling.
Recommend what to work on next by assembling session context and project state, then reasoning about the best options.
/ghpm-suggest — open-ended recommendation/ghpm-suggest <constraint> — any natural language constraint, e.g.:
The following is auto-injected at invocation time. If any value is empty, that context is unavailable — skip it gracefully.
git remote get-url origin 2>/dev/nullgit branch --show-current 2>/dev/nullgit log --oneline -5 2>/dev/nullgit diff --stat HEAD~5..HEAD 2>/dev/nullgh api user --jq '.login' 2>/dev/nullProject config (required): Follow the startup sequence in ../ghpm-shared/SKILL.md.
Project items (required): Load cache per ../ghpm-shared/references/cache.md. Focus on non-Done items: ReadyForDev, Planned, InProgress.
Session context: Use the auto-injected values above. If GitHub user is available, find items assigned to them in cache. Find items in Done status assigned to user (these indicate completed work, but no completion date is available).
Relevant views (optional — skip if session context unavailable):
Degraded mode: If only project config and items are available (no git context, no user identity), suggest based purely on project state: prioritize ReadyForDev items with no assignee, then Planned items.
With all context assembled, reason about what to suggest. Consider:
User constraints from arguments adjust the reasoning:
../ghpm-shared/references/format.md. Present suggestions in tiers — a top recommendation, strong alternatives, and optionally a "change of pace" option. The exact count is flexible (3-5 is typical), but every suggestion should earn its place.For each suggestion, explain why now — what makes this the right item at this moment. Be specific: mention deadlines, recent momentum, blocking relationships, or team context. Also explain how it fits the constraint (e.g., "2-hour fit: migrate a batch of test files, each is self-contained").
Based on your context:
Repo: <current repo>
Recent work: <summary of recent commits>
<component/team> affinity: <inferred from context>
## Top Recommendation
### 1. <title>
- **Issue:** <repo>#<num>
- **URL:** <github url>
- **Status:** <status>
- **Why now:** <specific reasoning — deadlines, momentum, blocking, team needs>
- **<constraint> fit:** <how this fits the user's time/energy/focus constraint>
## Strong Alternatives
### 2. <title>
...
### 3. <title>
...
## If You Want a Change of Pace
### 4. <title>
- (optional tier for lower-priority or different-domain options)
Include a summary table at the end for quick scanning:
| Priority | Issue | Status | Rationale |
|----------|-------|--------|-----------|
| 1 | ... | ... | one-line why |
/ghpm-view triage to find unassigned work.