aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/dev/roadmap.md
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-12-07 18:44:05 +0900
committernsfisis <nsfisis@gmail.com>2025-12-07 18:44:05 +0900
commitb965d9432b4037dd2f65bb4c8690965e090228ca (patch)
treed9ad4da71d1f2bdc98e7b1f96b6efaeb58399efc /docs/dev/roadmap.md
parentc2609af9d8bac65d3e70b3860160ac8bfe097241 (diff)
downloadkioku-b965d9432b4037dd2f65bb4c8690965e090228ca.tar.gz
kioku-b965d9432b4037dd2f65bb4c8690965e090228ca.tar.zst
kioku-b965d9432b4037dd2f65bb4c8690965e090228ca.zip
feat(server): add study session API with FSRS integration
Implement study endpoints for spaced repetition learning: - GET /api/decks/:deckId/study to fetch due cards - POST /api/decks/:deckId/study/:cardId to submit reviews - Integrate ts-fsrs library for scheduling algorithm - Add ReviewLog repository for tracking review history 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Diffstat (limited to 'docs/dev/roadmap.md')
-rw-r--r--docs/dev/roadmap.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/dev/roadmap.md b/docs/dev/roadmap.md
index 76e016a..40ef7e1 100644
--- a/docs/dev/roadmap.md
+++ b/docs/dev/roadmap.md
@@ -118,10 +118,10 @@ Smaller features first to enable early MVP validation.
**Goal**: Study with FSRS algorithm
### Server API
-- [ ] ts-fsrs integration
-- [ ] GET /api/decks/:deckId/study - Get due cards
-- [ ] POST /api/decks/:deckId/study/:cardId - Submit review
-- [ ] Add tests
+- [x] ts-fsrs integration
+- [x] GET /api/decks/:deckId/study - Get due cards
+- [x] POST /api/decks/:deckId/study/:cardId - Submit review
+- [x] Add tests
### Frontend
- [ ] Study session page