원클릭으로
weekly
Weekly review — prioritize backlog, review progress, release check, plan ahead
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Weekly review — prioritize backlog, review progress, release check, plan ahead
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Manage the project backlog — add, list, filter, update, prioritize, and suggest work items
Daily session wrapper — start with backlog, work, commit, retro
End-of-session retrospective — summarize work, update backlog statuses, update MEMORY.md
Commit, branch, PR, self-review, fix — then stop for human approval before merge
Pre-flight for parallel work — pick items, check file overlap, set statuses, generate terminal commands
Manage project backlog — add, list, filter, update, prioritize, suggest
| name | weekly |
| description | Weekly review — prioritize backlog, review progress, release check, plan ahead |
| user-invocable | true |
Run once a week (ideally Monday) to review progress, clean up the backlog, and plan the week ahead.
| Invocation | Behaviour |
|---|---|
/weekly | Full weekly review (all steps) |
/weekly review | Steps 1–3 only — review and prioritize |
/weekly plan | Steps 4–5 only — release check and week plan |
Gather what happened since last week:
git log --oneline --since="7 days ago" — commits this weekgh pr list --repo YanCheng-go/danskprep --state merged --search "merged:>=$(date -v-7d +%Y-%m-%d)" --json title,number,mergedAt --limit 20 — merged PRsgh issue list --repo YanCheng-go/danskprep --state closed --search "closed:>=$(date -v-7d +%Y-%m-%d)" --json title,number --limit 20 — closed issuesPresent a summary:
## Week of YYYY-MM-DD
### Shipped
- PR #42: BL-012 — Quiz timer feature
- PR #43: BL-018 — Fix mobile layout
### Closed
- BL-012, BL-018, BL-025 (3 items completed)
### Stats
- Commits: N | PRs merged: N | Issues closed: N
Fetch all open items and review:
status:idea label. Ask: promote any to ready?Present findings and ask the user for decisions on each.
Run /backlog prioritize logic:
gh project item-edit callsCheck if a release is warranted:
git log --oneline $(git describe --tags --abbrev=0 2>/dev/null || echo HEAD~50)..HEAD — changes since last tag/release?"Do not run /release automatically — just recommend.
Based on the current backlog state, suggest a week plan:
Present as a simple plan:
## This Week's Plan
### Must
- BL-005: Fix auth token refresh (p1/s)
### Should
- BL-031: Add cloze hint translations (p2/xs)
- BL-014: Lazy-load seed JSON (p2/m)
- BL-028: Progress page refresh (p2/s)
### Could
- BL-033: Dark mode polish (p3/xs)
### Blocked
- BL-019: Listening exercises — needs audio scraper update
/weekly review, stop after Step 3/weekly plan, start from Step 4