fix: use agent-neutral wording in explain empty-state message#1086
Merged
computermode merged 1 commit intoentireio:mainfrom May 1, 2026
Merged
fix: use agent-neutral wording in explain empty-state message#1086computermode merged 1 commit intoentireio:mainfrom
computermode merged 1 commit intoentireio:mainfrom
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Updates entire explain’s empty-state output to avoid hardcoding a specific agent name (Claude) when no checkpoints exist, aligning messaging with Entire CLI’s agent-agnostic design.
Changes:
- Replaced “a Claude session” with “an agent session” in the
entire explainno-checkpoints message. - Updated the corresponding unit test assertion to match the new wording.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| cmd/entire/cli/explain.go | Makes the no-checkpoints help text agent-neutral (“an agent session”). |
| cmd/entire/cli/explain_test.go | Updates the test to assert the agent-neutral wording. |
Changed 'a Claude session' to 'an agent session' in explain.go and explain_test.go so the message is accurate regardless of which agent (Copilot CLI, Gemini CLI, etc.) is configured. Fixes entireio#1079
11bcd99 to
fc0a25c
Compare
computermode
approved these changes
May 1, 2026
Contributor
|
Thank you! Merging this in 🚀 |
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.
Problem
The
entire explaincommand's empty-state message (when no checkpoints exist) hardcodes"a Claude session"— so it always references Claude even when a different agent (Copilot CLI, Gemini CLI, etc.) is configured.Fix
Changed the message from
"a Claude session"to"an agent session"in:cmd/entire/cli/explain.go:2286— source messagecmd/entire/cli/explain_test.go:1082— test assertion2 files, 2 lines changed.
Fixes #1079