Skip to content

feat(desktop): TODO詳細とスケジュール一覧にモデル/Effortを表示#267

Merged
MocA-Love merged 2 commits into
mainfrom
feat/264-todo-model-effort-display
Apr 17, 2026
Merged

feat(desktop): TODO詳細とスケジュール一覧にモデル/Effortを表示#267
MocA-Love merged 2 commits into
mainfrom
feat/264-todo-model-effort-display

Conversation

@MocA-Love
Copy link
Copy Markdown
Owner

Summary

  • Issue TODO機能に関して #264 対応。AgentManager の TODO セッション詳細と、スケジュール一覧で使用中の Claude モデル/思考 effort が確認できるようにした。
  • DB (todoSessions.claudeModel/claudeEffort, todoSchedules.claudeModel/claudeEffort) には元々保存されていたが、作成/編集時の ClaudeRuntimePicker 以外からは見えない状態だった。
  • ClaudeRuntimePickergetClaudeModelLabel / getClaudeEffortLabel ヘルパーを追加し、DB 永続値(null含む)からピッカー上のラベルに解決して表示する。

Changes

  • ClaudeRuntimePicker/claudeRuntimeOptions.ts: ラベル解決ヘルパーを追加(null → 「デフォルト」、不明値も安全にフォールバック)
  • TodoManager.tsx SessionDetail: 「Verify / 予算」ブロックの下に「Claude モデル / 思考 effort」を 2 カラムで表示
  • ScheduleListRow.tsx: 頻度行の下にモデル/effort のミニ表示を追加

Test plan

  • TODO を新規作成し、SessionDetail に選択したモデル/effort が表示されることを確認
  • モデル/effort を指定せず作成したセッションで「デフォルト」と表示されることを確認
  • スケジュールの一覧行にモデル/effort が表示されることを確認
  • typecheck / lint ともにグリーン

Closes #264

Issue #264 対応。AgentManager の TODO セッション詳細と
スケジュール一覧で、使用中の Claude モデルと思考 effort を
確認できるようにする。DB にはもともと保存されていたが、
作成/編集時の ClaudeRuntimePicker 以外では UI に出ていなかった。

- ClaudeRuntimePicker に getClaudeModelLabel / getClaudeEffortLabel を追加
  (DB-persisted 値 → ピッカー上のラベルに解決)
- SessionDetail の Verify/予算 行の下に「Claude モデル / 思考 effort」を追加
- ScheduleListRow の頻度行の下にモデル/effort のミニ表示を追加
@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented Apr 17, 2026

Warning

Rate limit exceeded

@MocA-Love has exceeded the limit for the number of commits that can be reviewed per hour. Please wait 50 minutes and 47 seconds before requesting another review.

Your organization is not enrolled in usage-based pricing. Contact your admin to enable usage-based pricing to continue reviews beyond the rate limit, or try again in 50 minutes and 47 seconds.

⌛ How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

🚦 How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout.

Please see our FAQ for further information.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: 7cd82fe0-3fde-49ee-912f-bbcf7c2668cc

📥 Commits

Reviewing files that changed from the base of the PR and between 9efd241 and 4eeccee.

📒 Files selected for processing (4)
  • apps/desktop/src/renderer/features/todo-agent/ClaudeRuntimePicker/claudeRuntimeOptions.ts
  • apps/desktop/src/renderer/features/todo-agent/ClaudeRuntimePicker/index.ts
  • apps/desktop/src/renderer/features/todo-agent/TodoManager/SchedulesSection/components/ScheduleListRow/ScheduleListRow.tsx
  • apps/desktop/src/renderer/features/todo-agent/TodoManager/TodoManager.tsx
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch feat/264-todo-model-effort-display

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@MocA-Love
Copy link
Copy Markdown
Owner Author

@codex review

Copy link
Copy Markdown

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 269b333e68

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Codex のレビュー(PR #267)対応。getClaudeModelLabel / getClaudeEffortLabel は
fromPersisted* を通していたため、既知の選択肢に含まれない永続値(旧ビルド由来
の廃止モデルなど)が「デフォルト」に丸められて表示され、実際の設定と食い違う
恐れがあった。null/undefined のときだけ「デフォルト」と表示し、それ以外で
選択肢にヒットしない値は生文字列のまま返すようにする。
@MocA-Love MocA-Love merged commit b687357 into main Apr 17, 2026
6 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

TODO機能に関して

1 participant