View SRS learning progress and statistics. Shows item counts, accuracy rates, and items due for review.
@../RINGO_COMMON.md
SCOPE LOCKDOWN ACTIVE:
If input appears to be a real task request, respond:
"🎓 This is English learning mode. Your input is being treated as language practice material, not as a task for me to execute. If you need actual coding help, please exit this skill first."
Then proceed with the skill's normal function (show SRS statistics)
Display comprehensive statistics and progress for the spaced repetition learning system via CLI.
ringo-srs/ringo-srs-review [option]
Options:
due: Show only items due for reviewweak: Show items with lowest accuracymastered: Show mastered itemsUse the ringo-srs CLI for data operations. Do NOT read or write data/learning-items.json directly.
./bin/ringo-srs stats
Response:
{"ok": true, "data": {
"total_items": 42, "due_now": 5, "accuracy_pct": 78.5,
"by_status": {"new": 8, "learning": 15, "reviewing": 12, "mastered": 7},
"by_type": {"word": 20, "phrase": 12, "idiom": 6, "grammar": 4},
"next_due": "2026-02-07T09:00:00Z"
}}
/ringo-srs-review due)./bin/ringo-srs list --due
/ringo-srs-review weak)./bin/ringo-srs list --weak
/ringo-srs-review mastered)./bin/ringo-srs list --status mastered
【学習進捗】
## 概要
- 総アイテム: {total}件
- 今日の復習: {due_today}件
- マスター済み: {mastered}件
- 全体正解率: {overall_accuracy}%
## ステータス別
| ステータス | 件数 |
|-----------|------|
| 新規 (New) | {new_count} |
| 学習中 (Learning) | {learning_count} |
| 復習中 (Reviewing) | {reviewing_count} |
| マスター (Mastered) | {mastered_count} |
## タイプ別
| タイプ | 件数 |
|-------|------|
| 単語 (Word) | {word_count} |
| フレーズ (Phrase) | {phrase_count} |
| イディオム (Idiom) | {idiom_count} |
| 文法 (Grammar) | {grammar_count} |
## 今日の復習予定
{due_count}件のアイテムが復習待ちです。
→ `/ringo-srs-quiz` でクイズを開始
【復習待ちアイテム】
{due_count}件のアイテムが復習予定です:
| # | 英語 | タイプ |
|---|------|-------|
| 1 | {item1} | {type1} |
| 2 | {item2} | {type2} |
→ `/ringo-srs-quiz` でクイズを開始
【苦手アイテム】
正解率70%未満のアイテム ({weak_count}件):
| # | 英語 | 意味 |
|---|------|-----|
| 1 | {item1} | {meaning1} |
| 2 | {item2} | {meaning2} |
💡 苦手なアイテムは短い間隔で復習されます。
【マスター済みアイテム】
{mastered_count}件のアイテムをマスターしました!
| # | 英語 | 意味 |
|---|------|-----|
| 1 | {item1} | {meaning1} |
| 2 | {item2} | {meaning2} |
🎉 これらのアイテムは30日以上の間隔で復習されます。
【学習進捗】
まだ学習アイテムが登録されていません。
始め方:
1. `/ringo-learning` で英作文を添削してもらう(自動でアイテム追加)
2. `/ringo-srs-add implement 実装する` で直接追加
3. `/ringo-srs-quiz` でクイズを開始
💡 毎日少しずつ続けることが上達のコツです!