원클릭으로
review
Run spaced repetition review block — query due items, quiz the user, update SR data
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Run spaced repetition review block — query due items, quiz the user, update SR data
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Write a handoff summary for the next conversation to pick up from
Generate a study plan through an interactive questionnaire — creates plan.md
Bootstrap a new study day — creates directory, notes from template, and empty files
| name | review |
| description | Run spaced repetition review block — query due items, quiz the user, update SR data |
| disable-model-invocation | true |
| allowed-tools | ["Read","Write","Edit","Bash","Glob"] |
Run the SR review block for the current session.
Read sr/meta.yaml to get current_session.
Query due items:
./sr/query.sh due <current_session>
Output format: next_review_session|ease_factor|category|topic|filename
If no items are due, tell the user and stop.
Redistribute overflow: If more than 7 items are due, run:
./sr/query.sh redistribute <current_session>
This spreads overflow items (positions 8+) across future sessions. Tell the user how many were due total and how many were redistributed. Then re-query to get the final 7.
Take up to 7 items for review. Tell the user how many are being reviewed.
For each item, one at a time:
a. Read ONLY the ## Prompt section. NEVER show or hint at Expected Points.
b. Present the prompt. Let the user answer freely.
c. After the user answers, read ## Expected Points.
d. Evaluate against expected points. Rate on this scale:
if quality < 3:
interval_sessions = 1
ease_factor = max(1.3, ease_factor - 0.2)
elif quality == 3:
interval_sessions = interval_sessions # unchanged
ease_factor = max(1.3, ease_factor - 0.1)
elif quality == 4:
interval_sessions = ceil(interval_sessions * ease_factor)
elif quality == 5:
interval_sessions = ceil(interval_sessions * ease_factor * 1.1)
ease_factor = ease_factor + 0.1
next_review_session = current_session + interval_sessions
g. Update the item file's frontmatter (ease_factor, interval_sessions, next_review_session, times_reviewed, last_reviewed_session, last_quality) and append to the history array.
Retirement check: If any item has 5 consecutive reviews with quality >= 4, ask the user if they want to retire it.
Mark review complete: Set review_completed_date in sr/meta.yaml to today's date (YYYY-MM-DD).
Tell the user review is done. Suggest they run /handoff before starting a fresh conversation for the study block.