Skip to content
Merged
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
1 change: 0 additions & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,6 @@ Tracks child processes that have open ports. When a parent session dies but the
- **Rust** (2021 edition)
- **ratatui** + **crossterm** for TUI
- **serde** + **serde_json** for JSON/JSONL parsing
- **tokio** — included but currently sync I/O; summary generation uses `std::thread::spawn`
- **chrono** for timestamp formatting
- **dirs** for home directory resolution
- **Polling intervals** (staggered to avoid freezes):
Expand Down
51 changes: 0 additions & 51 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ authors = ["Tae Hwan Jung <nlkey2022@gmail.com>"]
[dependencies]
ratatui = "0.29"
crossterm = "0.28"
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
dirs = "6"
Expand Down
8 changes: 3 additions & 5 deletions src/collector/codex.rs
Original file line number Diff line number Diff line change
Expand Up @@ -450,11 +450,9 @@ fn parse_codex_jsonl(path: &Path) -> Option<CodexJSONLResult> {
result.context_window = cw;
}
}
Some("user_message") => {
if result.initial_prompt.is_empty() {
if let Some(msg) = payload["message"].as_str() {
result.initial_prompt = msg.chars().take(120).collect();
}
Some("user_message") if result.initial_prompt.is_empty() => {
if let Some(msg) = payload["message"].as_str() {
result.initial_prompt = msg.chars().take(120).collect();
}
}
Some("token_count") => {
Expand Down
Loading