feat(cli): add optional message timestamps between exchanges - #2258
Closed
dieutx wants to merge 1 commit into
Closed
feat(cli): add optional message timestamps between exchanges#2258dieutx wants to merge 1 commit into
dieutx wants to merge 1 commit into
Conversation
Add a display.show_timestamps config option that prepends HH:MM:SS to
the separator line between user/assistant exchanges. Useful for tracking
how long tasks take during long sessions.
Enable in ~/.hermes/config.yaml:
display:
show_timestamps: true
Closes NousResearch#1569
dieutx
force-pushed
the
feat/cli-message-timestamps
branch
from
March 21, 2026 02:44
4794f19 to
4aeffe7
Compare
Contributor
|
Closing — we've reviewed the batch of 30 PRs submitted in ~36 hours and found multiple duplicates of other contributors' work, at least one no-op (identical bytes to main), and no tests or filled checklists. We appreciate the intent, but please focus on quality over quantity: check for existing PRs before submitting, verify your diff is real, add tests, and fill out the PR template. If you have a specific fix you've tested and verified, we're happy to review it. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
display.show_timestampsconfig option (default:false)HH:MM:SSto the separator line between user/assistant exchangesEnable in
~/.hermes/config.yaml:Example output:
Closes #1569
Test plan
show_timestamps: truein configdatetime.now().strftime("%H:%M:%S")for consistent formattingpytest tests/to confirm no regressions