Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions config.example.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
[defaults]
profile = "git-bash"

[todos]
idle_seconds = 90
prompts = [
"Review the latest changes and summarize anything risky.",
"Run the fastest relevant validation and report failures.",
]

[profiles.codex-fast]
command = "codex"
args = ["--model", "gpt-5.4-mini"]
Expand Down
28 changes: 28 additions & 0 deletions docs/devlogs/2026-07-07-idle-terminal-todo-prompts.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Idle terminal todo prompts

Date: 2026-07-07
Release target: unreleased

## Summary

- Added settings-managed todo prompts that can be offered to idle terminals.

## What Changed

- Added persisted `[todos]` config support for enabling idle prompts, setting the quiet delay, and storing prompt text.
- Added a TODO section to the redesigned settings pane with add, edit, delete, enable, and quiet-delay controls.
- Added per-pane quiet tracking and a small follow-up dialog that can send, cycle, remove, or dismiss queued prompts.
- Updated the example config with sample todo prompts.

## Why It Matters

- Users can keep spare terminals productive by preparing follow-up prompts ahead of time, then sending one when a pane has gone quiet.

## Validation

- `cargo check`
- `npm test`

## Release Notes

- New settings todo list can suggest queued follow-up prompts for quiet panes.
Loading
Loading